/* ══════════════════════════════════════════
   IMPACT MATCH — Website Styles
   Brand: #f6f4f1 (bg) | #e4ded2 (secondary) | #f95c4b (tint) | #000 (text)
══════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f6f4f1;
    --bg2: #e4ded2;
    --tint: #f95c4b;
    --tint-dark: #e04535;
    --text: #000000;
    --text-sec: rgba(0, 0, 0, 0.55);
    --border: rgba(0, 0, 0, 0.1);
    --card: #ffffff;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
    --font: 'Inter', system-ui, sans-serif;
    --nav-h: 72px;
}

html {
    scroll-behavior: smooth;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--tint);
    border-radius: 99px;
}

/* ── SELECTION ── */
::selection {
    background: var(--tint);
    color: #fff;
}

/* ══════════════ TYPOGRAPHY ══════════════ */
h1,
h2,
h3,
h4 {
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.text-accent {
    color: var(--tint);
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--tint);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 56px;
    max-width: 680px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

/* ══════════════ BUTTONS ══════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
    font-weight: 700;
    cursor: pointer;
    transition: all .22s cubic-bezier(.4, 0, .2, 1);
    text-decoration: none;
    border: none;
    font-family: var(--font);
}

.btn-primary {
    background: var(--tint);
    color: #fff;
    padding: 14px 28px;
}

.btn-primary:hover {
    background: var(--tint-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 92, 75, 0.35);
}

.btn-secondary {
    background: var(--text);
    color: #fff;
    padding: 14px 28px;
}

.btn-secondary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--text);
    color: #fff;
    padding: 14px 28px;
}

.btn-dark:hover {
    background: #222;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    padding: 14px 28px;
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--tint);
    color: var(--tint);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-primary-sm {
    background: var(--tint);
    color: #fff;
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all .2s;
}

.btn-primary-sm:hover {
    background: var(--tint-dark);
}

.btn-outline-sm {
    background: transparent;
    color: var(--text);
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    border: 1.5px solid var(--border);
    transition: all .2s;
}

.btn-outline-sm:hover {
    border-color: var(--tint);
    color: var(--tint);
}

/* ══════════════ NAV ══════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background .3s, box-shadow .3s;
}

.nav.scrolled {
    background: rgba(246, 244, 241, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    /* logo has white bg — multiply blends it transparently on light backgrounds */
    mix-blend-mode: multiply;
    display: block;
}

.logo-img-footer {
    height: 28px;
    /* footer is dark — darken the white bg into the dark background */
    mix-blend-mode: screen;
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tint);
    display: inline-block;
}

.logo-accent {
    color: var(--tint);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    display: flex;
    gap: 10px;
    margin-left: 24px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 99px;
    transition: all .25s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--bg);
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border);
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-cta {
    margin-top: 12px;
    text-align: center;
    border: none !important;
}

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

/* ══════════════ HERO ══════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #f95c4b 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e4ded2 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--bg2);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-sec);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 13px;
    color: var(--text-sec);
}

/* Phone mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 270px;
    height: 520px;
    background: #111;
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28), 0 0 0 1.5px rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #222;
    border-radius: 0 0 12px 12px;
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg);
    border-radius: 32px;
    overflow: hidden;
    padding: 28px 16px 16px;
}

.app-preview {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 8px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f95c4b, #e4ded2);
    flex-shrink: 0;
}

.app-name-line {
    width: 90px;
    height: 11px;
    background: var(--text);
    border-radius: 6px;
    margin-bottom: 5px;
}

.app-sub-line {
    width: 60px;
    height: 9px;
    background: var(--bg2);
    border-radius: 6px;
}

.app-badge-red {
    margin-left: auto;
    background: var(--tint);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 99px;
}

.app-stat-row {
    display: flex;
    justify-content: space-between;
    background: var(--bg2);
    border-radius: 12px;
    padding: 10px;
}

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

.app-stat-val {
    font-size: 13px;
    font-weight: 800;
}

.app-stat-lbl {
    font-size: 9px;
    color: var(--text-sec);
}

.app-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.app-tag {
    background: var(--bg2);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
}

.app-card-mini {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--bg2);
    border-radius: 12px;
    padding: 12px;
}

.app-card-mini-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 99px;
}

.app-card-mini-bar.short {
    width: 60%;
}

.app-btns {
    display: flex;
    gap: 8px;
}

.app-btn-primary {
    flex: 1;
    background: var(--tint);
    color: #fff;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    padding: 10px;
}

.app-btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg2);
    border-radius: 50%;
    font-size: 15px;
}

/* Floating cards */
.float-card {
    position: absolute;
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    border: 1px solid var(--border);
    z-index: 3;
    animation: float 3.5s ease-in-out infinite;
}

.float-card .fc-icon {
    font-size: 22px;
}

.fc-title {
    font-weight: 700;
    font-size: 12px;
}

.fc-sub {
    color: var(--text-sec);
    font-size: 11px;
}

.fc1 {
    top: 30px;
    left: -20px;
    animation-delay: 0s;
}

.fc2 {
    bottom: 80px;
    left: -40px;
    animation-delay: .8s;
}

.fc3 {
    top: 60px;
    right: -20px;
    animation-delay: 1.4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-sec);
    font-size: 12px;
    z-index: 1;
}

.scroll-line {
    width: 1.5px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--tint));
    animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {

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

    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}

/* ══════════════ LOGOS BAR ══════════════ */
.logos-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    overflow: hidden;
    padding: 20px 0;
}

.logos-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logos-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-sec);
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.logos-track {
    display: flex;
    gap: 48px;
    overflow: hidden;
    animation: logoScroll 20s linear infinite;
    width: max-content;
}

.logo-item {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-sec);
    letter-spacing: -0.03em;
    white-space: nowrap;
    transition: color .2s;
    flex-shrink: 0;
}

.logo-item:hover {
    color: var(--tint);
}

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

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

/* ══════════════ HOW IT WORKS ══════════════ */
.how {
    background: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform .25s, box-shadow .25s;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 64px;
    font-weight: 900;
    color: var(--bg2);
    line-height: 1;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--tint);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-sec);
    line-height: 1.7;
}

/* ══════════════ FEATURES ══════════════ */
.features {
    background: var(--bg2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}

.feature-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card.large {
    grid-column: span 2;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--bg2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--tint);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-sec);
    line-height: 1.7;
    font-size: 15px;
}

.feature-demo-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.feature-demo-tags span {
    background: var(--bg2);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-top: 24px;
}

.mini-chart .bar {
    flex: 1;
    background: var(--bg2);
    border-radius: 4px 4px 0 0;
    transition: background .2s;
}

.mini-chart .bar.active {
    background: var(--tint);
}

/* ══════════════ ROLES ══════════════ */
.roles {
    background: var(--bg);
}

.roles-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.role-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow .25s;
}

.role-card:hover {
    box-shadow: var(--shadow-lg);
}

.role-emoji {
    font-size: 40px;
}

.role-card h3 {
    font-size: 28px;
}

.role-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.role-list li {
    font-size: 15px;
    color: var(--text-sec);
    padding-left: 4px;
}

.role-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-divider span {
    width: 48px;
    height: 48px;
    background: var(--bg2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: var(--text-sec);
}

/* ══════════════ STATS ══════════════ */
.stats {
    background: var(--text);
    color: #fff;
}

.stats .section-inner {
    padding: 80px 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.stat-num {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    display: inline;
}

.stat-suffix {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--tint);
    display: inline;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

/* ══════════════ TESTIMONIALS ══════════════ */
.testimonials {
    background: var(--bg2);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.testi-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testi-card.featured {
    background: var(--text);
    color: #fff;
    border-color: transparent;
    transform: scale(1.04);
}

.testi-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.testi-stars {
    color: var(--tint);
    font-size: 18px;
    letter-spacing: 2px;
}

.testi-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-sec);
    flex: 1;
}

.testi-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 14px;
}

.testi-author span {
    font-size: 12px;
    color: var(--text-sec);
}

.testi-card.featured .testi-author strong {
    color: #fff;
}

.testi-card.featured .testi-author span {
    color: rgba(255, 255, 255, 0.5);
}

/* ══════════════ PRICING ══════════════ */
.pricing {
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow .25s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--text);
    color: #fff;
    border-color: transparent;
    transform: scale(1.04);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tint);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 99px;
    white-space: nowrap;
}

.plan-name {
    font-size: 20px;
    font-weight: 800;
}

.plan-price {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-top: 8px;
}

.plan-period {
    font-size: 14px;
    color: var(--text-sec);
    margin-bottom: 24px;
}

.pricing-card.featured .plan-period {
    color: rgba(255, 255, 255, 0.5);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}

.plan-features li {
    font-size: 15px;
    color: var(--text-sec);
}

.plan-features li.inactive {
    opacity: 0.35;
}

.pricing-card.featured .plan-features li {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured .btn-primary {
    background: var(--tint);
    color: #fff;
    text-align: center;
}

/* ══════════════ DOWNLOAD ══════════════ */
.download {
    background: var(--tint);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.download-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.download-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.download h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: #fff;
}

.download h2 .text-accent {
    color: rgba(255, 255, 255, 0.7);
}

.download p {
    font-size: 17px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.download-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    transition: all .22s;
    backdrop-filter: blur(8px);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.store-btn small {
    display: block;
    font-size: 11px;
    opacity: 0.7;
}

.store-btn strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
}

/* ══════════════ FOOTER ══════════════ */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 24px 48px;
    display: flex;
    gap: 64px;
}

.footer-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo {
    color: #fff;
    font-size: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--tint);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 16px;
    transition: color .2s;
}

.social-links a:hover {
    color: var(--tint);
}

/* ══════════════ ANIMATIONS ══════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

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

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-scroll-hint {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card.large {
        grid-column: span 2;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .role-divider {
        transform: rotate(90deg);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section-inner {
        padding: 72px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.large {
        grid-column: span 1;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-card.featured {
        transform: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: calc(var(--nav-h) + 20px);
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .btn-lg {
        padding: 16px 24px;
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .download-btns {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .role-card {
        padding: 36px 24px;
    }
}

/* ══════════════ AUTH MODALS ══════════════ */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.auth-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.auth-modal {
    background: #fff;
    width: 100%;
    max-width: 440px;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
}

.auth-modal-overlay.active .auth-modal {
    transform: translateY(0);
}

.auth-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: background 0.2s, color 0.2s;
}

.auth-close:hover {
    background: #e5e7eb;
    color: #111;
}

.auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo img {
    height: 36px;
}

.auth-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 8px 0;
    color: #111;
}

.auth-subtitle {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin: 0 0 32px 0;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
}

.form-group input {
    width: 100%;
    height: 48px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--tint);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.role-switch {
    display: flex;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.role-option {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.role-option.selected {
    background: #fff;
    color: #111;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.auth-btn {
    width: 100%;
    height: 50px;
    background: var(--tint);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-btn:hover {
    background: var(--tint-dark);
}

.auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.auth-footer {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-top: 24px;
}

.auth-footer a {
    color: var(--tint);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.error-msg {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
}