/* ==========================================================================
   enhancements.css — Real-people photography upgrade (meutudo-inspired)
   Layers on top of style.css. Reuses the same design tokens.
   ========================================================================== */

/* --------------------------------------------------------------------------
   image-slot empty-state theming (matches the brand instead of a stark box)
   -------------------------------------------------------------------------- */
image-slot {
    background:
        linear-gradient(135deg, hsl(var(--accent), 0.06) 0%, hsl(var(--secondary), 0.06) 100%),
        repeating-linear-gradient(45deg, rgba(15, 23, 42, 0.025) 0 10px, transparent 10px 20px);
    border: 1.5px dashed rgba(249, 115, 22, 0.38);
    color: hsl(var(--text-muted));
    font-family: var(--font-primary);
}

/* --------------------------------------------------------------------------
   HERO — happy customer portrait + floating proof cards
   -------------------------------------------------------------------------- */
.hero-visual {
    height: auto;
    min-height: 540px;
}

.hero-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-photo-slot {
    display: block;
    width: 100%;
    height: 472px;
    border-radius: 28px;
    box-shadow: 0 34px 80px -26px rgba(15, 23, 42, 0.45);
    position: relative;
    z-index: 1;
    animation: floatMain 7s ease-in-out infinite;
}
.hero-photo-slot:hover { animation-play-state: paused; }

/* soft gradient ring glowing behind the portrait */
.hero-photo-ring {
    position: absolute;
    inset: -18px -18px -18px -18px;
    border-radius: 40px;
    background: linear-gradient(150deg, hsl(var(--accent), 0.35), hsl(var(--secondary), 0.3));
    filter: blur(34px);
    opacity: 0.6;
    z-index: 0;
    animation: glowDrift 16s ease-in-out infinite;
}

/* rating chip — sits at the top-left, overlapping the portrait */
.hero-rating-chip {
    position: absolute;
    top: 26px;
    left: -44px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    width: max-content;
    max-width: 200px;
    animation: floatCard2 6.5s ease-in-out infinite 0.4s;
}
.hero-rating-chip:hover { animation-play-state: paused; }

.rating-stars {
    display: flex;
    gap: 2px;
    color: hsl(var(--secondary));
}
.rating-stars i {
    width: 15px;
    height: 15px;
    fill: currentColor;
}
.rating-chip-text {
    font-size: 0.78rem;
    color: hsl(var(--text-muted));
    font-weight: 500;
}
.rating-chip-text strong {
    color: hsl(var(--primary));
    font-weight: 800;
    font-family: var(--font-headings);
}

/* pull the lower floating card up so it overlaps the taller photo nicely */
.hero-photo-wrapper .floating-card-2 {
    bottom: 28px;
    left: -36px;
}
.hero-photo-wrapper .floating-card-1 {
    top: -28px;
    right: -32px;
}

/* hero trust-row faces become real photos */
.trust-face {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    background-size: cover;
    font-size: 0.6rem;
}
.trust-face:first-child { margin-left: 0; }

/* --------------------------------------------------------------------------
   HISTÓRIAS REAIS — lifestyle photo cards
   -------------------------------------------------------------------------- */
.stories-section {
    background:
        radial-gradient(circle at 85% 0%, hsl(var(--accent-light)) 0%, transparent 45%),
        hsl(var(--bg-light));
}

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

.story-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px -22px rgba(15, 23, 42, 0.28);
    transition: var(--transition-smooth);
}
.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 64px -22px rgba(15, 23, 42, 0.38);
}

.story-photo {
    display: block;
    width: 100%;
    height: 372px;
    border-radius: 24px;
}
.story-card-tall .story-photo {
    height: 416px;
}

.story-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 28px;
    background: linear-gradient(to top,
        rgba(11, 18, 32, 0.92) 0%,
        rgba(11, 18, 32, 0.55) 38%,
        rgba(11, 18, 32, 0.05) 66%,
        transparent 100%);
    color: #ffffff;
    pointer-events: none;
    border-radius: 24px;
}

.story-tag {
    align-self: flex-start;
    background: hsl(var(--secondary));
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.story-name {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.story-result {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    margin: 0;
}

.story-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: hsl(var(--secondary-light));
}
.story-meta i {
    width: 14px;
    height: 14px;
}

.stories-disclaimer {
    text-align: center;
    margin-top: 36px;
    font-size: 0.78rem;
    color: hsl(var(--text-muted));
}

/* --------------------------------------------------------------------------
   TESTIMONIALS — initials avatars become real photos
   -------------------------------------------------------------------------- */
.user-avatar-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    font-size: 0.6rem;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Professional human polish
   -------------------------------------------------------------------------- */
.glow-bg {
    opacity: 0.07;
    max-width: 86vw;
}

.bg-1 {
    left: -6%;
}

.bg-2 {
    right: 0;
}

.hero-section {
    padding-top: 226px;
    background:
        linear-gradient(115deg, rgba(248, 250, 252, 0.86) 0%, rgba(248, 250, 252, 0.78) 48%, rgba(255, 247, 237, 0.72) 100%),
        radial-gradient(circle at 78% 24%, rgba(249, 115, 22, 0.10), transparent 38%);
}

.hero-content {
    max-width: 660px;
}

.hero-title {
    max-width: 680px;
    letter-spacing: 0;
}

.hero-description {
    max-width: 620px;
    font-size: 1.08rem;
    line-height: 1.78;
}

.hero-tag {
    background: #ffffff;
    color: hsl(var(--primary));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.hero-tag i {
    color: hsl(var(--accent));
}

.hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -22px 0 34px;
    max-width: 640px;
}

.hero-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: hsl(var(--text-dark));
    font-size: 0.84rem;
    font-weight: 650;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.hero-assurance i {
    width: 16px;
    height: 16px;
    color: hsl(var(--accent));
    flex-shrink: 0;
}

.hero-stats {
    padding: 18px 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
    width: fit-content;
}

.stat-number {
    font-size: 1.65rem;
}

.stat-label {
    text-transform: none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(15, 23, 42, 0.08);
}

.service-card {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--accent)), hsl(var(--secondary)));
    opacity: 0;
    transition: var(--transition-fast);
}

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

.service-description,
.step-description,
.diff-description,
.faq-answer-content p,
.footer-about,
.compliance-text {
    line-height: 1.72;
}

.steps-grid::before,
.step-number-wrapper::after,
.pulse-button {
    animation: none;
}

.step-card {
    align-items: flex-start;
    text-align: left;
    padding: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.step-description {
    max-width: none;
}

.step-number-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.simulator-wrapper,
.cta-box {
    border-radius: 16px;
}

.cta-box {
    padding: 56px 42px;
}

.cta-title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #cbd5e1;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.partners-marquee-wrapper,
.testimonials-slider {
    max-width: 100%;
    overflow: hidden;
}

.partners-track,
.testimonials-container {
    will-change: transform;
}

@media (max-width: 1024px) {
    .stories-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .hero-rating-chip { left: -16px; }
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 440px;
        margin: 0 auto;
    }
    .story-card-tall .story-photo { height: 372px; }

    .hero-visual { min-height: 0; }
    .hero-photo-wrapper { max-width: 340px; margin-top: 30px; }
    .hero-photo-slot { height: 420px; }
    .hero-rating-chip { left: 4px; top: 14px; }
    .hero-photo-wrapper .floating-card-1 { right: -6px; }
    .hero-photo-wrapper .floating-card-2 { left: -6px; }
    .hero-assurance {
        justify-content: center;
        margin-top: -16px;
    }
    .hero-stats {
        width: 100%;
        max-width: 520px;
    }
    .step-card {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-photo-wrapper { max-width: 290px; }
    .hero-section { padding-top: 132px; }
    .hero-title { font-size: 2.05rem; }
    .hero-description { font-size: 1rem; }
    .hero-assurance {
        width: 100%;
    }
    .hero-assurance span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-photo-slot { height: 360px; }
    .hero-photo-wrapper .floating-card-1,
    .hero-photo-wrapper .floating-card-2 {
        position: static;
        width: 100%;
        margin-top: 12px;
        transform: none;
        animation: none;
    }
    .hero-rating-chip {
        max-width: 180px;
    }
}

/* ==========================================================================
   PRODUCT DEEP-DIVE SECTIONS (FGTS / INSS / Portabilidade) — added
   ========================================================================== */

/* Featured + CTA service cards */
.service-card { position: relative; }
.service-card-featured {
    border: 1.5px solid hsl(var(--accent), 0.45);
    box-shadow: 0 24px 60px -28px hsl(var(--accent), 0.55);
}
.service-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--secondary)) 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 16px hsl(var(--accent), 0.4);
}
.service-card-cta {
    justify-content: center;
    background: linear-gradient(160deg, hsl(var(--accent-light)) 0%, rgba(255,255,255,0.7) 100%);
    border: 1.5px dashed hsl(var(--accent), 0.4);
}
.service-card-cta .btn { margin-top: 8px; }

/* Product section base */
.product-section { padding: 96px 0; }
.product-intro {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}
.product-intro-reverse .product-intro-text { order: 2; }
.product-intro-reverse .port-steps { order: 1; }

.product-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: hsl(var(--accent-light));
    color: hsl(var(--secondary));
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.product-eyebrow i { width: 16px; height: 16px; }
.product-section .section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.product-intro-text .btn { margin-top: 28px; }

/* Highlights grid (FGTS) */
.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}
.ph-item { display: flex; align-items: flex-start; gap: 12px; }
.ph-item i {
    flex-shrink: 0;
    width: 38px; height: 38px;
    padding: 9px;
    border-radius: 12px;
    background: hsl(var(--accent-light));
    color: hsl(var(--accent));
}
.ph-item strong { display: block; color: hsl(var(--primary)); font-size: 0.96rem; }
.ph-item span { font-size: 0.85rem; color: hsl(var(--text-muted)); }

/* Checklist card */
.product-checklist, .port-steps { padding: 36px; }
.checklist-title { font-size: 1.25rem; margin-bottom: 22px; color: hsl(var(--primary)); }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.checklist li { display: flex; align-items: center; gap: 14px; font-weight: 500; color: hsl(var(--text-dark)); }
.check-dot {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--secondary)) 100%);
    color: #fff;
}
.check-dot i { width: 16px; height: 16px; }
.checklist-note {
    margin-top: 22px;
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 0.86rem; color: hsl(var(--text-muted));
    background: hsl(var(--accent-light));
    padding: 14px 16px; border-radius: 12px;
}
.checklist-note i { flex-shrink: 0; width: 18px; height: 18px; color: hsl(var(--accent)); }

/* Rules 2026 */
.rules-block { margin-top: 72px; }
.rules-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.rules-title { font-size: 1.7rem; margin-bottom: 12px; }
.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.rule-card { padding: 28px 24px; text-align: left; }
.rule-icon {
    width: 50px; height: 50px;
    display: grid; place-items: center;
    border-radius: 14px;
    color: #fff;
    margin-bottom: 18px;
}
.rule-icon i { width: 24px; height: 24px; }
.rule-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: hsl(var(--primary)); }
.rule-card p { font-size: 0.9rem; color: hsl(var(--text-muted)); }

/* INSS benefits row */
.benefits-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 14px; margin: 8px auto 56px; max-width: 920px;
}
.benefit-chip {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--glass-bg);
    border: 1px solid rgba(15,23,42,0.06);
    padding: 12px 20px; border-radius: 999px;
    font-size: 0.92rem; color: hsl(var(--text-dark));
    box-shadow: 0 8px 22px rgba(15,23,42,0.04);
}
.benefit-chip i { width: 18px; height: 18px; color: hsl(var(--accent)); }
.benefit-chip strong { color: hsl(var(--primary)); }

/* Who can contract */
.who-title { text-align: center; font-size: 1.6rem; margin-bottom: 36px; }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.who-card { padding: 36px 30px; }
.who-icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 16px; color: #fff; margin-bottom: 20px;
}
.who-icon i { width: 26px; height: 26px; }
.who-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: hsl(var(--primary)); }
.who-card p { color: hsl(var(--text-muted)); font-size: 0.95rem; }

/* Portabilidade */
.port-benefits { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.pb-item { display: flex; align-items: center; gap: 12px; font-weight: 500; color: hsl(var(--text-dark)); }
.pb-item i { width: 22px; height: 22px; color: hsl(var(--accent)); flex-shrink: 0; }
.port-steps-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.port-steps-list li { display: flex; gap: 16px; align-items: flex-start; }
.port-step-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--secondary)) 100%);
    color: #fff; font-weight: 700; font-family: var(--font-headings);
}
.port-steps-list strong { display: block; color: hsl(var(--primary)); margin-bottom: 2px; }
.port-steps-list span { font-size: 0.88rem; color: hsl(var(--text-muted)); }

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .rules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .product-intro { grid-template-columns: 1fr; gap: 32px; }
    .product-intro-reverse .product-intro-text { order: 1; }
    .product-intro-reverse .port-steps { order: 2; }
    .who-grid { grid-template-columns: 1fr; }
    .product-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .rules-grid { grid-template-columns: 1fr; }
    .service-badge { position: static; display: inline-block; margin-bottom: 14px; }
}

/* ==========================================================================
   ANIMATED STOCK-MARKET BACKGROUND
   ========================================================================== */
.market-bg {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.9;          /* per-stroke alpha is already low; this is a master dimmer */
}
@media (prefers-reduced-motion: reduce) {
    .market-bg { opacity: 0.55; }
}
/* ==========================================================================
   HEADER LOGO IMAGE
   ========================================================================== */
.logo-img-link { display: inline-flex; align-items: center; }
.logo-img {
    height: 202px;
    width: auto;
    display: block;
    transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 8px 18px rgba(249, 115, 22, 0.22));
}
.logo-img-link:hover .logo-img {
    transform: scale(1.03);
}

.header {
    padding: 18px 0;
}

.header .navbar {
    min-height: 126px;
}

.header.scrolled .navbar {
    min-height: 94px;
}

.header.scrolled .logo-img {
    height: 142px;
    filter: drop-shadow(0 5px 14px rgba(249, 115, 22, 0.18));
}

.nav-menu {
    gap: 22px;
}

.nav-link {
    font-size: 0.9rem;
}

.header-cta {
    border-radius: 8px;
    background: #25d366;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
}

.header-cta:hover {
    background: #128c7e;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.34);
}

.hero-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 196px;
    padding-bottom: 52px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 64px;
}

.hero-tag {
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2.7rem, 4.65vw, 4.15rem);
    line-height: 1.02;
    max-width: 760px;
    margin-bottom: 18px;
}

.hero-description {
    max-width: 650px;
    margin-bottom: 26px;
}

.hero-ctas {
    margin-bottom: 28px;
}

.btn,
.nav-btn-mobile {
    border-radius: 8px;
}

.btn-primary {
    background: hsl(var(--primary));
}

.btn-primary:hover {
    background: hsl(var(--primary-light));
}

.btn-secondary {
    border-color: rgba(15, 23, 42, 0.12);
}

.hero-trust {
    margin-bottom: 28px;
}

.hero-offer-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 680px;
    margin: -10px 0 20px;
}

.offer-pill {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.offer-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, 0.34);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.offer-pill i {
    width: 34px;
    height: 34px;
    padding: 8px;
    flex-shrink: 0;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--secondary)) 100%);
}

.offer-pill span {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    color: hsl(var(--text-muted));
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 600;
}

.offer-pill strong {
    color: hsl(var(--primary));
    font-family: var(--font-headings);
    font-size: 0.92rem;
    line-height: 1.2;
}

.hero-stats {
    margin-top: 0;
}

.hero-photo-wrapper {
    max-width: 430px;
}

.hero-photo-slot {
    height: 470px;
    border-radius: 18px;
}

.hero-photo-slot::part(image) {
    filter: saturate(1.08) contrast(1.08) brightness(0.98);
}

.hero-photo-ring {
    border-radius: 28px;
    opacity: 0.42;
}

.hero-photo-wrapper .floating-card-1,
.hero-photo-wrapper .floating-card-2,
.hero-rating-chip {
    border-radius: 10px;
}

.hero-photo-wrapper .floating-card-1 {
    right: -18px;
}

.hero-photo-wrapper .floating-card-2 {
    left: -18px;
    bottom: 34px;
}

.hero-rating-chip {
    left: -24px;
}

.impact-band {
    padding: 48px 0;
}

.impact-number {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
}

@media (max-width: 1120px) {
    .nav-menu {
        gap: 14px;
    }

    .nav-link {
        font-size: 0.84rem;
    }

    .header-cta span {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero-section {
        padding-top: 190px;
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .hero-offer-strip {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .header .navbar {
        min-height: 56px;
    }

    .logo-img {
        height: 154px;
    }

    .header.scrolled .logo-img {
        height: 122px;
    }

    .hamburger-menu {
        width: 42px;
        height: 42px;
        justify-content: center;
        gap: 5px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.84);
        border: 1px solid rgba(15, 23, 42, 0.08);
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    .hero-section {
        min-height: auto;
        padding-top: 180px;
        padding-bottom: 58px;
    }

    .hero-title {
        font-size: clamp(2.25rem, 9vw, 3.05rem);
    }

    .hero-offer-strip {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-top: -10px;
    }

    .offer-pill {
        min-height: 64px;
    }

    .hero-photo-wrapper {
        max-width: 360px;
    }

    .hero-photo-slot {
        height: 410px;
        border-radius: 16px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 18px;
    }

    .hero-content,
    .hero-ctas,
    .hero-trust,
    .hero-assurance,
    .hero-offer-strip,
    .hero-stats {
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
    }

    .logo-img {
        height: 139px;
    }

    .hero-section {
        padding-top: 170px;
    }

    .hero-tag {
        max-width: 100%;
        white-space: normal;
        border-radius: 8px;
        text-align: left;
    }

    .hero-title {
        max-width: 350px;
        margin-left: 0;
        margin-right: 0;
        font-size: clamp(1.95rem, 8.2vw, 2.25rem);
        overflow-wrap: normal;
    }

    .hero-description {
        max-width: 350px;
        line-height: 1.66;
        overflow-wrap: anywhere;
    }

    .hero-trust {
        justify-content: flex-start;
    }

    .hero-ctas {
        align-items: stretch;
    }

    .hero-ctas .btn {
        min-width: 0;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-stats {
        padding: 16px;
    }

    .offer-pill {
        min-width: 0;
    }

    .offer-pill strong,
    .offer-pill span {
        overflow-wrap: anywhere;
    }

    .hero-photo-wrapper {
        max-width: 310px;
    }

    .hero-photo-slot {
        height: 358px;
    }

    .hero-rating-chip {
        left: 8px;
        max-width: 178px;
    }
}
/* ==========================================================================
   GLOBAL FAINT MARKET ANIMATION — let the fixed canvas show through every
   light section (same translucent look as the hero), keeping text readable.
   ========================================================================== */
.steps-section {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.80) 0%, rgba(248, 250, 252, 0.72) 100%);
}
.testimonials-section {
    background-color: rgba(248, 250, 252, 0.74);
}
.bg-light-slate {
    background-color: rgba(241, 245, 249, 0.74);
}
.stories-section {
    background:
        radial-gradient(circle at 85% 0%, hsl(var(--accent-light), 0.5) 0%, transparent 45%),
        rgba(248, 250, 252, 0.74);
}
.services-section,
.simulator-section,
.cta-section,
.product-fgts,
.product-port {
    background-color: rgba(248, 250, 252, 0.74);
}
/* keep glass cards a touch more opaque so the animation never sits behind text */
.glass-card { backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
