/* =========================================================================
   NURSEVIO - CSS Custom Properties & Base Setup
   ========================================================================= */

:root {
    --bg-color: #111418;
    /* Deep ebony/slate */
    --surface-color: rgba(255, 255, 255, 0.02);
    --surface-border: rgba(255, 255, 255, 0.05);
    --surface-blur: blur(20px);

    --text-primary: #f2f0ef;
    /* Alabaster white */
    --text-secondary: #a8a3a0;
    /* Warm sophisticated grey */
    --text-accent: #d2a99c;
    /* Dusty rose / champagne blush */

    --accent-glow: rgba(210, 169, 156, 0.7);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xl: 120px;
    --spacing-lg: 80px;
    --spacing-md: 40px;
    --spacing-sm: 20px;
}

html {
    scroll-behavior: initial;
    /* Managed by Lenis */
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin: 0 0 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* =========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================= */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.massive-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-accent);
    margin-bottom: 1rem;
}

.highlight {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 25px var(--accent-glow);
}

.lead-text {
    font-size: 1.25rem;
    color: #e2e4e4;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-4 {
    margin-top: var(--spacing-md);
}

.mt-5 {
    margin-top: var(--spacing-lg);
}

.emphasis {
    font-style: italic;
    color: var(--text-accent);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.full-height-center {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.grid {
    display: display;
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   BACKGROUND ANIMATIONS
   ========================================================================= */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #15181c 0%, #0d1014 100%);
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.9;
    animation: drift 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #a84b65 0%, transparent 80%);
    /* very vibrant blush/plum glow */
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #3b7f96 0%, transparent 80%);
    /* very vibrant slate/teal glow */
    bottom: -10%;
    right: -10%;
    animation-duration: 22s;
    animation-delay: -5s;
}

.shape-3 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #9c614b 0%, transparent 80%);
    /* very vibrant warm copper/champagne glow */
    top: 40%;
    left: 40%;
    animation-duration: 18s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10vw, -10vh) scale(1.1);
    }

    100% {
        transform: translate(-10vw, 5vh) scale(0.9);
    }
}

/* =========================================================================
   GLASSMORPHISM & COMPONENTS
   ========================================================================= */
.glass-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    backdrop-filter: var(--surface-blur);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dark-glass {
    background: rgba(0, 0, 0, 0.2);
}

.panel-lg {
    padding: 4rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: #ffffff;
    color: var(--bg-color);
}

.btn-primary:hover {
    background: var(--text-accent);
    color: #ffffff;
}

.btn-primary.glowing {
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary.glowing:hover {
    box-shadow: 0 0 30px rgba(210, 169, 156, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--surface-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: rgba(17, 20, 24, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: white;
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 50px;
}

.btn-nav:hover {
    background: white;
    color: var(--bg-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 100px;
}

.hero-grid {
    width: 100%;
    z-index: 10;
}

.hero-content {
    max-width: 100%;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/3;
    background-image: url('assets/images/kimberly_hero.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-left {
    text-align: left !important;
}

.justify-start {
    justify-content: flex-start !important;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 1px solid white;
    border-radius: 12px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: white;
    border-radius: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* =========================================================================
   AUTHORITY STRIP
   ========================================================================= */
.authority-strip {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.strip-label {
    padding-left: 5%;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    white-space: nowrap;
    margin-right: 2rem;
}

.strip-track {
    flex: 1;
    overflow: hidden;
}

.strip-items {
    display: inline-flex;
    gap: 3rem;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.strip-items span {
    display: inline-block;
}

.separator {
    color: var(--surface-border);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* =========================================================================
   ABOUT 
   ========================================================================= */
.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-image: url('assets/images/kimberly_collab_whiteboard.png');
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.image-inner-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}

.placeholder-text span {
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

/* =========================================================================
   THE PROBLEM & SOLUTION
   ========================================================================= */
.problem-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.four-p-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.p-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.p-item:hover,
.p-item.active,
.p-item:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(244, 219, 216, 0.8);
    box-shadow: 0 0 20px rgba(244, 219, 216, 0.15);
    transform: translateY(-5px) scale(1.03);
    outline: none;
    z-index: 2;
}

.p-item-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin: 0;
    transition: transform 0.4s ease, color 0.3s;
}

.p-item:hover .p-item-title,
.p-item.active .p-item-title,
.p-item:focus .p-item-title {
    transform: translateY(-12px);
    color: var(--text-accent);
}

.p-item-popup {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.p-item-popup p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.p-item:hover .p-item-popup,
.p-item.active .p-item-popup,
.p-item:focus .p-item-popup {
    opacity: 1;
    transform: translateY(0);
}

.brand-positioning {
    margin-top: 2rem;
    border-left: 2px solid var(--text-accent);
    padding: 1.5rem;
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.service-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-accent);
}

.workshop-banner {
    margin-top: 2rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(210, 169, 156, 0.35) 100%);
    display: flex;
    justify-content: center;
    text-align: center;
}

.workshop-banner h3 {
    margin-bottom: 0.5rem;
}

.workshop-banner p {
    color: var(--text-secondary);
    margin: 0;
}

/* =========================================================================
   EXPERTISE & OUTCOMES
   ========================================================================= */
.custom-list li {
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--surface-border);
    color: #e2e4e4;
}

.custom-list li:last-child {
    border-bottom: none;
}

.impact-list li {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
}

.impact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: var(--text-accent);
    border-radius: 50%;
}

.outcomes-footer {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================================================================
   AUDIENCE & FRAMEWORK
   ========================================================================= */
.audience-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.tag {
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.framework-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.framework-steps.active .step {
    animation: popInStep 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.framework-steps.active .step:nth-child(1) {
    animation-delay: 0.1s;
}

.framework-steps.active .step-connector:nth-child(2) {
    animation-delay: 0.5s;
}

.framework-steps.active .step:nth-child(3) {
    animation-delay: 0.8s;
}

.framework-steps.active .step-connector:nth-child(4) {
    animation-delay: 1.2s;
}

.framework-steps.active .step:nth-child(5) {
    animation-delay: 1.5s;
}

.framework-steps.active .step-connector:nth-child(6) {
    animation-delay: 1.9s;
}

.framework-steps.active .step:nth-child(7) {
    animation-delay: 2.2s;
}

.framework-steps.active .step-connector:nth-child(8) {
    animation-delay: 2.6s;
}

.framework-steps.active .step:nth-child(9) {
    animation-delay: 2.9s;
}

.framework-steps.active .step.highlight-step {
    animation-name: popInHighlightStep;
}

@keyframes popInStep {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes popInHighlightStep {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
}

.step-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-accent);
    margin-bottom: 0.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin: 0;
}

.step-connector {
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, rgba(210, 169, 156, 0.1), var(--text-accent));
    margin: 0 -10px;
    z-index: 1;
    position: relative;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.step-connector::after {
    content: '▶';
    position: absolute;
    right: -8px;
    top: -8.5px;
    color: var(--text-accent);
    font-size: 14px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.framework-steps.active .step-connector {
    animation: drawConnector 0.4s ease-out forwards;
}

@keyframes drawConnector {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.highlight-step {
    background: rgba(210, 169, 156, 0.2);
    border-color: rgba(210, 169, 156, 0.45);
    box-shadow: 0 0 30px rgba(220, 155, 137, 0.15);
}

@media (max-width: 900px) {
    .framework-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        flex: none;
        background: linear-gradient(180deg, rgba(210, 169, 156, 0.1), var(--text-accent));
        transform: scaleY(0);
        transform-origin: top;
        margin: -5px 0;
    }

    .step-connector::after {
        content: '▼';
        right: -6px;
        top: auto;
        bottom: -10px;
    }

    .framework-steps.active .step-connector {
        animation-name: drawConnectorMobile;
    }

    .step {
        width: 100%;
    }
}

@keyframes drawConnectorMobile {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonial-card {
    text-align: center;
}

.quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #e2e4e4;
    margin-bottom: 1.5rem;
}

.author {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================================================
   BOOKING
   ========================================================================= */
.urgency-text {
    color: var(--text-secondary);
    margin-top: 2rem;
    font-size: 0.9rem;
}

.calendar-ui {
    padding: 1rem;
}

.cal-header {
    text-align: center;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--surface-border);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cal-grid span {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cal-grid span:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.cal-times {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.time-slot {
    padding: 0.8rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================================================
   BLOG
   ========================================================================= */
.blog-card {
    display: block;
    padding: 0;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 160px;
    background-color: rgba(255, 255, 255, 0.02);
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 20, 24, 0.85) 100%);
}

.img-1 {
    background-image: url('assets/images/blog_magnet_distinction.png');
}

.img-2 {
    background-image: url('assets/images/blog_nurse_leadership.png');
}

.img-3 {
    background-image: url('assets/images/blog_patient_outcomes.png');
}

.img-4 {
    background-image: url('assets/images/blog_systems_innovation.png');
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.glass-footer {
    background: rgba(17, 20, 24, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.inner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
    .inner-flex {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}