/* ================================================
   YOUNIQ LANDING PAGE — LIGHT, PEACEFUL THEME
   Colors: #048089 (deep teal), #B4D9DC (soft mint), #FCFBF7 (warm cream)
   ================================================ */

:root {
    /* Brand Palette */
    --teal-deep: #048089;
    --teal-mid: #0a9aa3;
    --teal-soft: #B4D9DC;
    --teal-light: #d4ecee;
    --teal-pale: #e8f4f5;
    --cream: #FCFBF7;
    --cream-warm: #f7f3ed;
    --white: #ffffff;

    /* Text colors */
    --text-primary: #1a3a3c;
    --text-secondary: #4a6d70;
    --text-muted: #7a9ea1;
    --text-on-teal: #ffffff;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Particle Canvas --- */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

/* --- Accent Text --- */
.text-accent {
    color: var(--teal-deep);
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(252, 251, 247, 0.88);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(4, 128, 137, 0.08);
    padding: 0.6rem 0;
    box-shadow: 0 1px 20px rgba(4, 128, 137, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
}

.nav-logo-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
}

.nav-logo-text-img {
    height: 24px;
    width: auto;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-deep);
    border-radius: 1px;
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--teal-deep);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    background: var(--teal-deep);
    color: var(--text-on-teal);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.35s var(--ease-out-expo);
}

.nav-btn:hover {
    background: var(--teal-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(4, 128, 137, 0.2);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

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

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--teal-deep);
}

.mobile-link.cta {
    color: var(--teal-deep);
    font-weight: 500;
}

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

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        background: rgba(252, 251, 247, 0.96);
        backdrop-filter: blur(20px);
    }
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(252, 251, 247, 0.35) 0%,
            rgba(252, 251, 247, 0.15) 30%,
            rgba(252, 251, 247, 0.05) 50%,
            rgba(252, 251, 247, 0.30) 80%,
            rgba(252, 251, 247, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(4, 128, 137, 0.2);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal-deep);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-deep);
    animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.4;
        transform: scale(1.6);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 30px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-primary);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.8), 0 0 40px rgba(252, 251, 247, 0.6);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.btn-primary {
    background: var(--teal-deep);
    color: var(--text-on-teal);
    box-shadow: 0 4px 16px rgba(4, 128, 137, 0.2);
}

.btn-primary:hover {
    background: var(--teal-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(4, 128, 137, 0.28);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.6);
    color: var(--teal-deep);
    border: 1px solid rgba(4, 128, 137, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(4, 128, 137, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(4, 128, 137, 0.1);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border-radius: 11px;
    border: 2px solid rgba(4, 128, 137, 0.25);
    position: relative;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--teal-deep);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

/* ================================================
   SECTIONS
   ================================================ */
.section {
    position: relative;
    padding: 7rem 2rem;
    z-index: 1;
}

.section-seekers {
    background: var(--cream);
}

.section-organizers {
    background: linear-gradient(180deg, var(--teal-pale) 0%, var(--cream) 100%);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--teal-deep);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(4, 128, 137, 0.15);
    background: rgba(180, 217, 220, 0.25);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Divider --- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 2rem;
    position: relative;
    z-index: 1;
}

.divider-line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(4, 128, 137, 0.15), transparent);
}

.divider-logo {
    opacity: 0.35;
    border-radius: 50%;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.section-about {
    background: var(--cream);
}

.about-block {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.about-prose {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about-prose p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-prose strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-highlight {
    margin: 1.5rem auto 1rem;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--teal-deep);
    background: rgba(180, 217, 220, 0.12);
    border-radius: 0 12px 12px 0;
    max-width: 480px;
    text-align: left;
}

.about-highlight p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.about-highlight p:last-child {
    margin-bottom: 0;
}

.about-highlight em {
    color: var(--teal-deep);
    font-style: italic;
}

.about-intro {
    font-size: 1.02rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal-soft), transparent);
    margin: 0 auto 2.5rem;
}

/* Pillar Cards */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto 3rem;
    }
}

.pillar-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(4, 128, 137, 0.08);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
}

.pillar-card:hover {
    border-color: rgba(4, 128, 137, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(4, 128, 137, 0.08), 0 4px 12px rgba(4, 128, 137, 0.04);
    background: rgba(255, 255, 255, 0.85);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    color: var(--teal-deep);
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.pillar-desc {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* About Closing */
.about-closing {
    text-align: center;
    padding-top: 1rem;
}

.about-closing-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-tagline span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
}

.about-tagline span:last-child {
    color: var(--teal-deep);
    font-size: 1.4rem;
}

.about-tagline span strong {
    font-weight: 700;
}

/* ================================================
   FEATURE CARDS
   ================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
}

.feature-card {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(4, 128, 137, 0.08);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(180, 217, 220, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover {
    border-color: rgba(4, 128, 137, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(4, 128, 137, 0.08), 0 4px 12px rgba(4, 128, 137, 0.04);
    background: rgba(255, 255, 255, 0.85);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 1.5rem;
    color: var(--teal-deep);
}

.feature-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal-soft);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.5s;
}

.feature-card:hover .feature-number {
    color: var(--teal-deep);
    opacity: 0.3;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.feature-desc {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================
   CTA SECTION
   ================================================ */
.section-cta {
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 217, 220, 0.35), transparent 65%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-logo {
    margin: 0 auto 2rem;
    border-radius: 50%;
    opacity: 0.8;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    margin-left: -6px;
    border: 2px solid var(--cream);
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.83rem;
    color: var(--text-muted);
}

/* --- Subscribe Form --- */
.subscribe-form {
    max-width: 460px;
    margin: 0 auto 0.5rem;
}

.subscribe-input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(4, 128, 137, 0.15);
    border-radius: 100px;
    padding: 5px 5px 5px 1.25rem;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.subscribe-input-wrap:focus-within {
    border-color: var(--teal-deep);
    box-shadow: 0 0 0 3px rgba(4, 128, 137, 0.1);
}

.subscribe-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.subscribe-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    min-width: 0;
    padding: 0.5rem 0;
}

.subscribe-input-wrap input::placeholder {
    color: var(--text-muted);
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    background: var(--teal-deep);
    color: var(--text-on-teal);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.35s var(--ease-out-expo);
}

.subscribe-btn:hover {
    background: var(--teal-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(4, 128, 137, 0.2);
}

.subscribe-success {
    display: none;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--teal-deep);
    font-weight: 500;
}

.subscribe-success.show {
    display: block;
    animation: fadeUp 0.5s var(--ease-out-expo) forwards;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

@media (max-width: 480px) {
    .subscribe-input-wrap {
        padding: 4px 4px 4px 1rem;
    }

    .subscribe-btn span {
        display: none;
    }

    .subscribe-btn {
        padding: 0.65rem 0.9rem;
    }

    .subscribe-icon {
        display: none;
    }
}

/* ================================================
   DOWNLOAD SECTION
   ================================================ */
.section-download {
    background: linear-gradient(180deg, var(--cream) 0%, var(--teal-pale) 50%, var(--cream) 100%);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .download-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
}

.download-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(4, 128, 137, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.5s var(--ease-out-expo);
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(4, 128, 137, 0.1), 0 4px 12px rgba(4, 128, 137, 0.05);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(4, 128, 137, 0.18);
}

.download-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    color: var(--teal-deep);
}

.download-platform h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.qr-code-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
}

.qr-code-img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    border: 1px solid rgba(4, 128, 137, 0.08);
    padding: 8px;
    background: white;
    transition: transform 0.3s var(--ease-out-expo);
}

.download-card:hover .qr-code-img {
    transform: scale(1.03);
}

.qr-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.store-badge-link {
    display: inline-block;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.store-badge-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.store-badge {
    height: 44px;
    width: auto;
    margin: 0 auto;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: 2rem;
    border-top: 1px solid rgba(4, 128, 137, 0.08);
    position: relative;
    z-index: 1;
    background: var(--cream);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand img:first-child {
    border-radius: 50%;
}

.footer-logo-text {
    opacity: 0.6;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social {
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
}

.footer-social:hover {
    color: var(--teal-deep);
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

/* ================================================
   ANIMATIONS
   ================================================ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.9s var(--ease-out-expo) forwards;
}

.anim-delay-1 {
    animation-delay: 0.15s;
}

.anim-delay-2 {
    animation-delay: 0.3s;
}

.anim-delay-3 {
    animation-delay: 0.45s;
}

.anim-delay-4 {
    animation-delay: 0.75s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.anim-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.anim-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-reveal[data-delay="1"] {
    transition-delay: 0.15s;
}

.anim-reveal[data-delay="2"] {
    transition-delay: 0.3s;
}

/* ================================================
   CURSOR GLOW (desktop only)
   ================================================ */
.cursor-glow {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 217, 220, 0.12), transparent 60%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .section-cta {
        padding: 6rem 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.78rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}