/* ===================================================
   MITCAMPER LANDING — PREMIUM DARK DESIGN
   =================================================== */

/* ─── AGRANDIR FONTS ─────────────────────────────── */
@font-face {
    font-family: "Agrandir";
    src: url("https://db.onlinewebfonts.com/t/1dc7840abb13fcda12aa8d1cb21fb832.eot");
    src: url("https://db.onlinewebfonts.com/t/1dc7840abb13fcda12aa8d1cb21fb832.eot?#iefix") format("embedded-opentype"),
         url("https://db.onlinewebfonts.com/t/1dc7840abb13fcda12aa8d1cb21fb832.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/1dc7840abb13fcda12aa8d1cb21fb832.woff") format("woff"),
         url("https://db.onlinewebfonts.com/t/1dc7840abb13fcda12aa8d1cb21fb832.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "Agrandir Grand Heavy";
    src: url("https://db.onlinewebfonts.com/t/eccf30d3af8a69bf0b97f01c6d46b8e2.eot");
    src: url("https://db.onlinewebfonts.com/t/eccf30d3af8a69bf0b97f01c6d46b8e2.eot?#iefix") format("embedded-opentype"),
         url("https://db.onlinewebfonts.com/t/eccf30d3af8a69bf0b97f01c6d46b8e2.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/eccf30d3af8a69bf0b97f01c6d46b8e2.woff") format("woff"),
         url("https://db.onlinewebfonts.com/t/eccf30d3af8a69bf0b97f01c6d46b8e2.ttf") format("truetype");
    font-weight: 900;
    font-display: swap;
}

:root {
    --primary:        #FF7601;
    --primary-light:  #FF9A3C;
    --primary-dark:   #CC5E00;
    --bg:             #0a0a0a;
    --bg-card:        #141414;
    --bg-card-hover:  #1c1c1c;
    --bg-subtle:      #111111;
    --border:         rgba(255, 255, 255, 0.07);
    --border-hover:   rgba(255, 118, 1, 0.35);
    --text:           #f0f0f0;
    --text-muted:     #888888;
    --text-faint:     #444444;
    --radius-sm:      8px;
    --radius-md:      16px;
    --radius-lg:      24px;
    --radius-xl:      32px;
    --shadow-card:    0 1px 2px rgba(0,0,0,.4), 0 8px 40px rgba(0,0,0,.3);
    --shadow-glow:    0 0 60px rgba(255, 118, 1, 0.12);
    --transition:     0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font:           'Agrandir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display:   'Agrandir Grand Heavy', 'Arial Black', sans-serif;
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── LAYOUT ─────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── TYPOGRAPHY ────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
}
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    font-family: var(--font);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
}
.section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
    font-family: var(--font);
}

/* ─── NAVBAR ─────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background var(--transition), border-color var(--transition), padding var(--transition);
}
.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav__logo img {
    width: 100%;
    max-width: 200px;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav__link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav__link:hover {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}
.nav__right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav__lang {
    position: relative;
}
.nav__lang select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 7px 26px 7px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 7px center;
    background-size: 10px;
}
.nav__lang select:hover { background-color: rgba(255,255,255,0.12); }
.nav__lang select:focus { outline: none; }
.nav__lang select option { background: #1a1a1a; color: var(--text); }

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 12px 22px;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
}
.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 118, 1, 0.25);
}
.btn--primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(255, 118, 1, 0.35);
}
.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
}
.btn--ghost {
    background: transparent;
    color: var(--text-muted);
}
.btn--ghost:hover {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}
.btn--lg {
    font-size: 16px;
    padding: 15px 28px;
    border-radius: var(--radius-md);
}
.btn i { font-size: 17px; }

/* ─── HERO CTA MICROCOPY ─────────────────────────── */
.hero__cta-micro {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-faint);
    letter-spacing: 0.03em;
}
.hero__cta-micro + .hero__cta-micro {
    margin-top: 6px;
}

/* ─── PRIVACY TRUST BANNER ───────────────────────── */
.privacy-trust {
    margin-top: 48px;
    padding: 20px 28px;
    background: rgba(255, 118, 1, 0.04);
    border: 1px solid rgba(255, 118, 1, 0.18);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
}
.privacy-trust__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 118, 1, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}
.privacy-trust__text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}
.privacy-trust__text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}
.privacy-trust__link {
    color: var(--primary);
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.8;
    transition: opacity var(--transition);
    margin-left: 6px;
}
.privacy-trust__link:hover { opacity: 1; }
@media (max-width: 600px) {
    .privacy-trust { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 20px; }
}

/* ─── BADGE ──────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 118, 1, 0.12);
    border: 1px solid rgba(255, 118, 1, 0.25);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: badgePulse 2.5s ease-in-out infinite;
}
.badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,118,1,0.2); }
    50%       { box-shadow: 0 0 0 6px rgba(255,118,1,0); }
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(255, 118, 1, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(255, 118, 1, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__text { position: relative; }
.hero__headline {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 24px;
}
.hero__headline .accent {
    background: linear-gradient(
        90deg,
        var(--primary-light) 0%,
        #ffe8c8 20%,
        #ffffff 38%,
        var(--primary) 55%,
        var(--primary-light) 75%,
        #ffe8c8 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: shimmerAccent 5s linear infinite;
}
@keyframes shimmerAccent {
    from { background-position: 0% center; }
    to   { background-position: 220% center; }
}
.hero__desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 440px;
}
.hero__ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 118, 1, 0.15),
        0 32px 80px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(255, 118, 1, 0.08);
    background: #1a1209;
}
.hero__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 118, 1, 0.04) 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
}
.hero__image-wrap img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero__image-badge-icon {
    width: 36px; height: 36px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 18px; color: #fff;
}
.hero__image-badge-text { font-size: 13px; font-weight: 600; color: var(--text); }
.hero__image-badge-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

/* Floating dots decoration */
.hero__dots {
    position: absolute;
    top: -40px; right: -40px;
    width: 220px; height: 220px;
    background-image: radial-gradient(circle, rgba(255,118,1,0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
}

/* ─── STATS BAR ──────────────────────────────────── */
.stats {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-subtle);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.stat {
    text-align: center;
    padding: 16px;
}
.stat__value {
    font-size: 2.4rem;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}
.stat__value span { color: var(--primary); }
.stat__label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.stats__divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    margin: auto 0;
}

/* ─── HOW IT WORKS ───────────────────────────────── */
.section {
    padding: 120px 0;
}
.section--alt {
    background: var(--bg-subtle);
}
.section__header {
    margin-bottom: 72px;
}
.section__header--center {
    text-align: center;
}
.section__header--center .section-desc {
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.step {
    position: relative;
    padding: 48px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: border-color var(--transition), background var(--transition);
}
.step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.step:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.step:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}
.step::before {
    content: attr(data-num);
    display: block;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 118, 1, 0.08);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}
.step__icon {
    width: 52px; height: 52px;
    background: rgba(255, 118, 1, 0.1);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}
.step__title {
    font-size: 20px;
    font-family: var(--font-display);
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text);
}
.step__desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
}
.step__connector {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 2px; height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255,118,1,0.4), transparent);
    transform: translateY(-50%);
}

/* ─── BENEFITS ───────────────────────────────────── */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transform-style: preserve-3d;
    transition: border-color var(--transition), background var(--transition),
                transform 0.15s ease, box-shadow var(--transition);
}
.benefit-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.benefit-card__icon {
    width: 56px; height: 56px;
    background: rgba(255, 118, 1, 0.1);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: background var(--transition);
}
.benefit-card:hover .benefit-card__icon {
    background: rgba(255, 118, 1, 0.18);
}
.benefit-card__title {
    font-size: 19px;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
}
.benefit-card__desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
}
.benefit-card--highlight {
    background: rgba(255, 118, 1, 0.06);
    border-color: rgba(255, 118, 1, 0.2);
}

/* ─── MATCHING SECTION ───────────────────────────── */
.matching {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.matching__visual {
    position: relative;
}
.matching__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.matching__image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.matching__card {
    position: absolute;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}
.matching__card--top {
    top: -20px; right: -20px;
    min-width: 180px;
}
.matching__card--bottom {
    bottom: -20px; left: -20px;
}
.match-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: matchGlowPulse 3s ease-in-out infinite alternate;
}
@keyframes matchGlowPulse {
    from { box-shadow: 0 4px 20px rgba(255,118,1,0.12); }
    to   { box-shadow: 0 4px 48px rgba(255,118,1,0.45); }
}
.match-badge__percent {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
}
.match-badge__text { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.match-avatars { display: flex; gap: -4px; }
.match-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-right: -8px;
    background: var(--bg-card);
    overflow: hidden;
}
.match-avatar:last-child { margin-right: 0; }
.match-avatar-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: #fff;
}

.matching__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.matching__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}
.matching__feature:hover { border-color: var(--border-hover); }
.matching__feature-icon {
    width: 40px; height: 40px;
    background: rgba(255, 118, 1, 0.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}
.matching__feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.matching__feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── FAQ ────────────────────────────────────────── */
.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq__item.open {
    border-color: rgba(255, 118, 1, 0.25);
}
.faq__question {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: color var(--transition);
}
.faq__question:hover { color: var(--primary); }
.faq__item.open .faq__question { color: var(--primary); }
.faq__chevron {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: transform var(--transition), background var(--transition);
}
.faq__item.open .faq__chevron {
    transform: rotate(180deg);
    background: rgba(255, 118, 1, 0.15);
    color: var(--primary);
}
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer-inner {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ─── FINAL CTA ──────────────────────────────────── */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/03.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}
.cta-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(20,10,0,0.85) 100%);
}
.cta-section__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-section__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}
.cta-section__desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.65;
}
.cta-section__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
    background: #060606;
    border-top: 1px solid var(--border);
    padding: 56px 0 40px;
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer__logo { height: 28px; width: auto; opacity: 0.8; }
.footer__copy {
    font-size: 13px;
    color: var(--text-faint);
}
.footer__social {
    display: flex;
    gap: 8px;
}
.footer__social-link {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    color: var(--text-muted);
    transition: all var(--transition);
}
.footer__social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ─── STICKY CTA ─────────────────────────────────── */
.sticky-cta {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 16px 16px 32px;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255, 118, 1, 0.65);
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.65),
        0 0 0 1px rgba(255,118,1,0.12),
        0 0 48px rgba(255,118,1,0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    opacity: 0;
    white-space: nowrap;
}
.sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    animation: stickyCTAPulse 3s ease-in-out infinite;
}
@keyframes stickyCTAPulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,118,1,0.12), 0 0 40px rgba(255,118,1,0.18);
        border-color: rgba(255, 118, 1, 0.55);
    }
    50% {
        box-shadow: 0 20px 60px rgba(0,0,0,0.65), 0 0 0 4px rgba(255,118,1,0.18), 0 0 80px rgba(255,118,1,0.45);
        border-color: rgba(255, 118, 1, 0.9);
    }
}
.sticky-cta__text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

/* ─── SCROLL ANIMATIONS ──────────────────────────── */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
[data-aos][data-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-delay="400"] { transition-delay: 0.4s; }
[data-aos][data-delay="500"] { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 60px; }
    .hero__image-wrap { max-width: 100%; }
    .hero__image-wrap img { height: 360px; }
    .hero__dots { display: none; }
    .matching { grid-template-columns: 1fr; }
    .matching__image { display: none; }
    .matching__visual {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 8px;
    }
    .matching__card {
        position: static;
        flex: 1;
        min-width: 200px;
    }
    .matching__card--top,
    .matching__card--bottom {
        top: auto; right: auto;
        bottom: auto; left: auto;
    }
    .steps { grid-template-columns: 1fr; }
    .step:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .step:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav__links { display: none; }
    .section { padding: 80px 0; }
    .hero { padding: 90px 0 60px; }
    .hero__headline { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero__desc { font-size: 16px; }
    .benefits__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .sticky-cta { bottom: 16px; padding: 15px; gap: 14px; }
    .sticky-cta__text { display: none; }
}
@media (max-width: 480px) {
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .hero__ctas .btn { justify-content: center; }
}

/* ─── WOW EFFECTS ─────────────────────────────────── */

/* Scroll progress bar */
#scrollProgress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 9999;
    pointer-events: none;
    border-radius: 0 2px 2px 0;
}

/* Hero ambient cursor orb */
#heroOrb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,118,1,0.09) 0%, transparent 65%);
    pointer-events: none;
    will-change: transform;
    transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    top: 0; left: 0;
    transform: translate(-500px, -500px);
}

/* Hero canvas particelle */
#heroParticles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Stat value — glow al completamento del counter */
@keyframes statGlow {
    0%   { text-shadow: 0 0 24px rgba(255,118,1,0.6); }
    100% { text-shadow: none; }
}
.stat__value.counted { animation: statGlow 1.2s ease-out forwards; }

/* ─── MARQUEE TICKER ────────────────────────────── */
.ticker-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,118,1,0.025);
    padding: 14px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.ticker {
    display: flex;
    width: max-content;
    animation: tickerScroll 36s linear infinite;
}
.ticker:hover { animation-play-state: paused; }
.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}
.ticker__item i {
    font-size: 15px;
    color: #ffffff;
    opacity: 0.75;
    flex-shrink: 0;
}
.ticker__dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.45;
    flex-shrink: 0;
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── BUTTON RIPPLE ──────────────────────────── */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transform: scale(0);
    animation: rippleAnim 0.65s ease-out forwards;
    pointer-events: none;
}
@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* ─── CTA SECTION ORBS ───────────────────────── */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(72px);
    will-change: transform;
}
.cta-orb--1 {
    width: 420px; height: 420px;
    background: rgba(255,118,1,0.15);
    top: -140px; left: -100px;
    animation: ctaOrb1 9s ease-in-out infinite alternate;
}
.cta-orb--2 {
    width: 300px; height: 300px;
    background: rgba(255,154,60,0.10);
    bottom: -90px; right: -60px;
    animation: ctaOrb2 11s ease-in-out infinite alternate;
}
@keyframes ctaOrb1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(110px, 80px) scale(1.3); }
}
@keyframes ctaOrb2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-80px, -60px) scale(1.25); }
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials {
    padding: 80px 0;
    background: var(--bg-subtle);
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.testimonial-card__stars {
    display: flex;
    gap: 3px;
    color: var(--primary);
    font-size: 14px;
}
.testimonial-card__quote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    flex: 1;
    position: relative;
    padding-top: 8px;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.testimonial-card__meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
@media (max-width: 1024px) {
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .testimonials__grid { grid-template-columns: 1fr; }
}

/* ─── COOKIE BANNER — PREMIUM REDESIGN ─────────────── */
@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

#silktide-banner {
    bottom: 24px !important;
    left: 24px !important;
    right: auto !important;
    top: auto !important;
    width: 300px !important;
    max-width: calc(100vw - 32px) !important;
    background: rgba(18, 18, 20, 0.92) !important;
    backdrop-filter: blur(18px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.38),
        0 2px 8px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.06) !important;
    padding: 20px !important;
    animation: cookieSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) both !important;
    font-family: inherit !important;
    z-index: 99999 !important;
}
#silktide-banner p,
#silktide-banner .silktide-banner__description p {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    color: rgba(255,255,255,0.72) !important;
    margin: 0 0 16px 0 !important;
    font-weight: 400 !important;
}
#silktide-banner .silktide-banner__buttons,
#silktide-banner [class*="button"] {
    gap: 8px !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}
#silktide-banner .accept-all,
#silktide-banner [class*="accept"] {
    flex: 1 !important;
    background: #ffffff !important;
    color: #0f0f11 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 9px 14px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    cursor: pointer !important;
    transition: background 0.18s ease, transform 0.15s ease !important;
    white-space: nowrap !important;
}
#silktide-banner .accept-all:hover,
#silktide-banner [class*="accept"]:hover {
    background: #e8e8e8 !important;
    transform: translateY(-1px) !important;
}
#silktide-banner .preferences,
#silktide-banner [class*="preferences"],
#silktide-banner [class*="manage"] {
    flex: 0 0 auto !important;
    background: transparent !important;
    color: rgba(255,255,255,0.52) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    border-radius: 10px !important;
    padding: 9px 12px !important;
    font-size: 11.5px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: color 0.18s ease, border-color 0.18s ease !important;
    white-space: nowrap !important;
}
#silktide-banner .preferences:hover,
#silktide-banner [class*="preferences"]:hover {
    color: rgba(255,255,255,0.85) !important;
    border-color: rgba(255,255,255,0.3) !important;
}
#silktide-banner .reject-all { display: none !important; }
#silktide-banner .silktide-logo { display: none !important; }
#silktide-cookie-icon { display: none !important; }
#silktide-banner [class*="logo"] { display: none !important; }
#silktide-banner h1,
#silktide-banner h2,
#silktide-banner [class*="title"] {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin: 0 0 6px 0 !important;
}
@media (max-width: 768px) {
    #silktide-banner {
        bottom: 16px !important;
        left: 16px !important;
        right: 16px !important;
        width: auto !important;
    }
}

/* ═══════════════════════════════════════════════════
   PHOTO STRIP
   ═══════════════════════════════════════════════════ */
.photo-strip {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 0;
    height: 340px;
    overflow: hidden;
}
.photo-strip__item {
    overflow: hidden;
    position: relative;
}
.photo-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.photo-strip__item:hover img {
    transform: scale(1.04);
}
.photo-strip__item--tall {
    height: 100%;
}
@media (max-width: 768px) {
    .photo-strip {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
        height: auto;
    }
    .photo-strip__item:last-child {
        grid-column: 1 / -1;
    }
}
@media (max-width: 480px) {
    .photo-strip {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 220px);
    }
    .photo-strip__item:last-child {
        grid-column: auto;
    }
}

/* ═══════════════════════════════════════════════════
   SEO CONTENT SECTION
   ═══════════════════════════════════════════════════ */
.seo-content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.seo-content__col {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.seo-content__subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.4;
}
.seo-content__col p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.seo-content__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.seo-content__list li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}
.seo-content__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
.seo-content__bottom {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255,118,1,0.06) 0%, rgba(255,118,1,0.02) 100%);
    border: 1px solid rgba(255,118,1,0.15);
    border-radius: var(--radius-lg);
}
.seo-content__bottom p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .seo-content__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .seo-content__col {
        padding: 24px;
    }
}
