/* ===== Landing page styles ===== */
/* z-index layers:
   0   – body::before ambient glow
   1   – main content
   5   – hero pseudo-elements (parallax orbs)
   10  – hero-inner content
   100 – section cards (feature, step, price)
   1100 – mobile overlay
   1200 – header / navbar
   1201 – hamburger button
   1300 – language dropdown
   9999 – skip-link
   10000 – toast notifications
*/

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--vh-font-body);
    color: var(--vh-text);
    background: var(--vh-bg);
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(var(--vh-primary-rgb),.008) 0%, rgba(var(--vh-primary-rgb),.004) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: float 24s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, 40px); }
    66% { transform: translate(20px, -30px); }
}
main { position: relative; z-index: 1; }
main:focus { outline: none; }

/* ===== Page loading transition ===== */
/* Safety: auto-reveal after 3s if JS fails */
body.is-loading { opacity: 0.01; animation: safetyReveal 0.5s 3s forwards; }
@keyframes safetyReveal { to { opacity: 1; } }
body.is-loaded {
    opacity: 1;
    transition: opacity .5s ease;
}

/* ===== Hero loading skeleton ===== */
@keyframes skeletonPulse {
    0%, 100% { opacity: .4; }
    50%      { opacity: .8; }
}
@keyframes skeletonShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.hero-skeleton {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: calc(72px + 6rem) 2rem 4rem;
    min-height: 95vh;
    justify-content: center;
}
.hero-skeleton .skel-line {
    background: linear-gradient(
        90deg,
        rgba(var(--vh-primary-rgb),.06) 0%,
        rgba(var(--vh-primary-rgb),.15) 25%,
        rgba(var(--vh-primary-rgb),.06) 50%,
        rgba(var(--vh-primary-rgb),.15) 75%,
        rgba(var(--vh-primary-rgb),.06) 100%
    );
    background-size: 200% 100%;
    border-radius: var(--radius-xs);
    animation: skeletonShimmer 1.8s ease-in-out infinite, skeletonPulse 1.5s ease-in-out infinite;
}
.hero-skeleton .skel-badge {
    width: 220px;
    height: 38px;
    border-radius: var(--radius-pill);
}
.hero-skeleton .skel-title {
    width: min(520px, 80%);
    height: 56px;
}
.hero-skeleton .skel-subtitle {
    width: min(480px, 70%);
    height: 24px;
}
.hero-skeleton .skel-input {
    width: min(720px, 90%);
    height: 56px;
    border-radius: var(--radius-lg);
}
body.is-loaded .hero-skeleton {
    display: none;
}

/* ===== Section skeleton loading states ===== */
.section-skeleton {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
}
.section-skeleton .skel-line {
    background: linear-gradient(
        90deg,
        rgba(var(--vh-primary-rgb),.06) 0%,
        rgba(var(--vh-primary-rgb),.15) 25%,
        rgba(var(--vh-primary-rgb),.06) 50%,
        rgba(var(--vh-primary-rgb),.15) 75%,
        rgba(var(--vh-primary-rgb),.06) 100%
    );
    background-size: 200% 100%;
    border-radius: var(--radius-xs);
    animation: skeletonShimmer 1.8s ease-in-out infinite, skeletonPulse 1.5s ease-in-out infinite;
}
.section-skeleton .skel-card {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
}
.section-skeleton .skel-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
}
body.is-loaded .section-skeleton {
    display: none;
}

/* ===== Global keyframe animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scaleBouncePop {
    0%   { opacity: 0; transform: scale(.6); }
    60%  { opacity: 1; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
@keyframes shimmerGlow {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes subtlePulseGlow {
    0%, 100% { box-shadow: 0 4px 14px rgba(var(--vh-primary-rgb),.15); }
    50%      { box-shadow: 0 4px 24px rgba(var(--vh-primary-rgb),.35); }
}
@keyframes rippleEffect {
    0%   { transform: translate(-50%, -50%) scale(0); opacity: .5; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}
@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ===== Global focus-visible states ===== */
:focus-visible {
    outline: 2px solid var(--vh-primary, #F2C94C);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}
.btn:focus-visible,
.plan-btn:focus-visible,
.chatbar-send:focus-visible {
    outline: 2px solid var(--vh-primary, #F2C94C);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(var(--vh-primary-rgb),.25);
}
.nav-link:focus-visible,
.footer-link:focus-visible,
.pricing-link:focus-visible {
    outline: 2px solid var(--vh-primary, #F2C94C);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}
.faq-question:focus-visible {
    outline: 2px solid var(--vh-primary, #F2C94C);
    outline-offset: -2px;
    border-radius: var(--radius-lg, 18px);
}
.lang-option:focus-visible,
.lang-btn:focus-visible {
    outline: 2px solid var(--vh-primary, #F2C94C);
    outline-offset: 2px;
}
.testimonials-dots .dot:focus-visible {
    outline: 2px solid var(--vh-primary, #F2C94C);
    outline-offset: 3px;
}
.hamburger:focus-visible {
    outline: 2px solid var(--vh-primary, #F2C94C);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}
.chatbar-input:focus-visible {
    outline: none; /* parent chatbar handles focus ring */
}

/* --- Button ripple effect --- */
.btn .ripple,
.plan-btn .ripple,
.chatbar-send .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    width: 20px;
    height: 20px;
    pointer-events: none;
    animation: rippleEffect .6s ease-out forwards;
}

/* --- Header / Navbar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid transparent;
    z-index: 1200;
    transition: background .4s cubic-bezier(.4,0,.2,1),
                border-color .4s cubic-bezier(.4,0,.2,1),
                box-shadow .4s cubic-bezier(.4,0,.2,1);
    will-change: background, border-color, box-shadow;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.header.scrolled {
    background: rgba(255,255,255,.95);
    border-bottom-color: var(--vh-border);
    box-shadow: 0 1px 12px rgba(31,31,31,.06), 0 4px 24px rgba(var(--vh-primary-rgb),.04);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo --- */
.logo {
    font-family: var(--vh-font-display);
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    color: var(--vh-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .55rem;
    transition: opacity .3s ease;
    flex-shrink: 0;
}
.logo:hover { opacity: .85; }
.logo-v {
    flex-shrink: 0;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), filter .4s ease;
}
.logo:hover .logo-v {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(var(--vh-primary-rgb),.4));
}

/* --- Navigation --- */
.nav {
    display: flex;
    align-items: center;
    gap: .35rem;
}
.nav-link {
    color: var(--vh-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    padding: .55rem .95rem;
    border-radius: var(--radius-sm);
    transition: color .3s cubic-bezier(.4,0,.2,1), background .3s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: .35rem;
    left: .95rem;
    right: .95rem;
    height: 2px;
    background: var(--vh-primary);
    border-radius: var(--radius-xs);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover {
    color: var(--vh-text);
    background: var(--vh-bg-highlight);
}
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- Button --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.25rem;
    background: var(--vh-primary);
    color: var(--vh-on-primary, #554000);
    font-weight: 600;
    font-size: .875rem;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md, 12px);
    cursor: pointer;
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .3s cubic-bezier(.4,0,.2,1),
                background .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 12px rgba(var(--vh-primary-rgb),.2);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 24px rgba(var(--vh-primary-rgb),.3);
    background: var(--vh-primary-hover);
}
.btn:active {
    transform: translateY(0) scale(.98);
    transition-duration: .1s;
}
.btn span { position: relative; z-index: 1; }
/* Shimmer glow on hover for CTA buttons */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}
.btn:hover::after {
    opacity: 1;
    animation: shimmerGlow .8s ease forwards;
}

/* --- Language switcher --- */
.lang-switch { position: relative; }
.lang-btn {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .85rem;
    background: rgba(var(--vh-primary-rgb),.06);
    border: 1px solid var(--vh-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--vh-text-secondary);
    transition: background .3s cubic-bezier(.4,0,.2,1),
                color .3s cubic-bezier(.4,0,.2,1),
                border-color .3s cubic-bezier(.4,0,.2,1);
}
.lang-btn:hover {
    background: rgba(var(--vh-primary-rgb),.1);
    color: var(--vh-text);
    border-color: rgba(var(--vh-primary-rgb),.3);
}
.lang-btn.open {
    background: rgba(var(--vh-primary-rgb),.1);
    color: var(--vh-text);
    border-color: rgba(var(--vh-primary-rgb),.3);
}
.lang-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.lang-btn .lang-chevron {
    width: 12px;
    height: 12px;
}
.lang-btn.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--vh-border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(31,31,31,.08), 0 2px 8px rgba(31,31,31,.03);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.96);
    transition: opacity .3s cubic-bezier(.4,0,.2,1),
                transform .3s cubic-bezier(.4,0,.2,1),
                visibility .3s;
    z-index: 1300;
}
.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.lang-dropdown.open .lang-option:nth-child(1) { animation: dropdownItemIn .3s cubic-bezier(.22,1,.36,1) .02s both; }
.lang-dropdown.open .lang-option:nth-child(2) { animation: dropdownItemIn .3s cubic-bezier(.22,1,.36,1) .06s both; }
.lang-dropdown.open .lang-option:nth-child(3) { animation: dropdownItemIn .3s cubic-bezier(.22,1,.36,1) .1s both; }
.lang-dropdown.open .lang-option:nth-child(4) { animation: dropdownItemIn .3s cubic-bezier(.22,1,.36,1) .14s both; }
@keyframes dropdownItemIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lang-option {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    padding: .65rem .9rem;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 500;
    color: var(--vh-text-secondary);
    text-align: left;
    transition: background .3s cubic-bezier(.4,0,.2,1), color .3s cubic-bezier(.4,0,.2,1);
}
.lang-option:hover {
    background: var(--vh-bg-highlight);
    color: var(--vh-text);
}
.lang-option.active {
    background: rgba(var(--vh-primary-rgb),.1);
    color: var(--vh-text);
    font-weight: 600;
}
.lang-option-native { font-weight: 600; min-width: 28px; }
.lang-option-label { color: var(--vh-text-muted); font-size: .8rem; }
.lang-option.active .lang-option-label { color: var(--vh-text-secondary); }
.lang-option-check {
    margin-left: auto;
    opacity: 0;
    color: var(--vh-primary-hover);
    transition: opacity .25s ease;
}
.lang-option.active .lang-option-check { opacity: 1; }

/* --- Hero --- */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding: calc(72px + 4rem) 2rem 4rem;
    background: var(--vh-surface);
    position: relative;
    overflow: hidden;
    contain: layout style;
}
/* Parallax background layers */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(var(--vh-primary-rgb),.05) 0%, transparent 70%);
    pointer-events: none;
    animation: heroFloat 8s ease-in-out infinite;
    z-index: 5;
    will-change: transform;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(var(--vh-primary-rgb),.03) 0%, transparent 70%);
    pointer-events: none;
    animation: heroFloat 10s ease-in-out infinite reverse;
    z-index: 5;
    will-change: transform;
}
/* Third parallax orb for depth */
.hero .hero-inner::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 35%;
    height: 35%;
    background: radial-gradient(circle, rgba(var(--vh-primary-rgb),.025) 0%, transparent 60%);
    pointer-events: none;
    animation: heroFloat 12s ease-in-out infinite 2s;
    z-index: 0;
}
.hero-inner {
    text-align: center;
    position: relative;
    z-index: 10;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem 1.5rem;
    background: rgba(var(--vh-primary-rgb),.08);
    border: 1.5px solid rgba(var(--vh-primary-rgb),.25);
    border-radius: var(--radius-pill);
    font-size: .875rem;
    font-weight: 600;
    color: var(--vh-text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp .7s cubic-bezier(.22,1,.36,1) .1s both;
    transition: border-color .3s ease, background .3s ease;
}
.hero-badge:hover {
    border-color: rgba(var(--vh-primary-rgb),.45);
    background: rgba(var(--vh-primary-rgb),.12);
}
/* Hero content staggered entrance */
.hero h1 { animation: fadeInUp .7s cubic-bezier(.22,1,.36,1) .2s both; }
.hero .hero-subtitle { animation: fadeInUp .7s cubic-bezier(.22,1,.36,1) .35s both; }
.hero .search-box { animation: fadeInUp .7s cubic-bezier(.22,1,.36,1) .5s both; }
.hero .hero-note-wrap { animation: fadeInUp .7s cubic-bezier(.22,1,.36,1) .6s both; }

/* Floating animation for hero badge icon */
.hero-badge .pulse-dot {
    animation: pulse 2.5s ease-out infinite, heroFloat 3s ease-in-out infinite;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vh-primary);
    animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--vh-primary-rgb),.6); }
    70% { box-shadow: 0 0 0 10px rgba(var(--vh-primary-rgb),0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--vh-primary-rgb),0); }
}
h1 {
    font-family: var(--vh-font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.hero-title-highlight {
    position: relative;
    display: inline-block;
    color: var(--vh-primary-hover);
}
.hero-title-highlight .hw-text {
    display: inline-block;
    font-family: var(--vh-font-display);
    font-weight: 700;
    font-size: 1.15em;
    font-style: normal;
    letter-spacing: -0.02em;
}
.hero-title-highlight .hw-text.hw-ready { visibility: visible; }
.hw-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(4px) scale(.92);
    filter: blur(2px);
    transition: opacity .18s ease, transform .22s cubic-bezier(.18,.89,.32,1.15), filter .18s ease;
}
.hw-char.hw-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
.hw-pen {
    position: absolute;
    top: .15em;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity .2s;
}
.hw-pen.active { opacity: 1; }
.hw-pen-nib {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vh-primary-hover);
    box-shadow: 0 0 8px 3px rgba(var(--vh-primary-rgb),.5), 0 0 20px 6px rgba(var(--vh-primary-rgb),.2);
    transform: translate(-50%, -50%);
    transition: left .06s linear, top .06s linear;
}
.hw-pen-trail {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(var(--vh-primary-rgb),.35);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: penTrailFade .4s ease-out forwards;
}
@keyframes penTrailFade {
    from { opacity: .5; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 0; transform: translate(-50%, -50%) scale(.2); }
}
.handwritten-underline {
    position: absolute;
    bottom: -.15em;
    left: -.05em;
    right: -.05em;
    height: .35em;
    background: linear-gradient(90deg, rgba(var(--vh-primary-rgb),.25), rgba(var(--vh-primary-rgb),.4) 50%, rgba(var(--vh-primary-rgb),.25));
    z-index: -1;
    transform-origin: left;
    transform: scaleX(0);
}
.handwritten-underline.hw-underline-animate {
    animation: writeUnderline .8s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes writeUnderline {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.65;
    color: var(--vh-text-secondary);
    max-width: 680px;
    margin: 0 auto 3.5rem;
}
.hero-note-wrap { text-align: center; }

/* --- Search box / chatbar --- */
.search-box {
    max-width: 720px;
    margin: 0 auto 2.5rem;
}
.chatbar {
    position: relative;
    background: var(--vh-surface, #fff);
    border: 2px solid var(--vh-border);
    border-radius: var(--radius-lg);
    transition: border-color .45s cubic-bezier(.4,0,.2,1),
                box-shadow .45s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 12px rgba(31,31,31,.03);
}
.chatbar:focus-within {
    border-color: var(--vh-primary);
    box-shadow: 0 0 0 4px rgba(var(--vh-primary-rgb),.08), 0 8px 32px rgba(var(--vh-primary-rgb),.06);
}
.chatbar:hover:not(:focus-within) {
    border-color: rgba(var(--vh-primary-rgb),.3);
    box-shadow: 0 4px 16px rgba(var(--vh-primary-rgb),.06);
}
.chatbar-input {
    width: 100%;
    padding: 1.15rem 3.5rem 1.15rem 1.5rem;
    font-size: 1.05rem;
    font-family: inherit;
    border: none;
    background: transparent;
    color: var(--vh-text);
    outline: none;
    line-height: 1.5;
}
.chatbar-input::placeholder {
    color: var(--vh-text-tertiary, #a8a29e);
    transition: opacity .4s ease;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.chatbar-input.placeholder-fade::placeholder {
    opacity: 0;
}
.chatbar-input:focus::placeholder {
    opacity: .6;
}
.chatbar-send {
    position: absolute;
    right: .6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vh-primary);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background .3s cubic-bezier(.4,0,.2,1),
                transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .3s cubic-bezier(.4,0,.2,1),
                opacity .3s cubic-bezier(.4,0,.2,1);
    opacity: .35;
    pointer-events: none;
    overflow: hidden;
}
.chatbar-send.ready {
    opacity: 1;
    pointer-events: auto;
    animation: subtlePulseGlow 2.5s ease-in-out infinite;
}
.chatbar-send.ready:hover,
.chatbar-send.ready:focus-visible {
    animation: none;
}
.chatbar-send.ready:hover {
    background: var(--vh-primary-hover);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 4px 16px rgba(var(--vh-primary-rgb),.35);
}
.chatbar-send.ready:hover svg {
    transform: translateX(2px);
}
.chatbar-send.ready:active {
    transform: translateY(-50%) scale(.92);
    transition-duration: .1s;
    box-shadow: 0 2px 8px rgba(var(--vh-primary-rgb),.2);
}
.chatbar-send svg { width: 18px; height: 18px; color: var(--vh-text); position: relative; z-index: 1; transition: transform .2s cubic-bezier(.4,0,.2,1); }
.chatbar-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .75rem;
    font-size: .8rem;
    color: var(--vh-text-muted);
    font-weight: 500;
}
.chatbar-hint svg { width: 14px; height: 14px; opacity: .5; flex-shrink: 0; }
.chatbar-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    font-size: .8125rem;
    color: var(--vh-text-muted);
    margin-top: .35rem;
    opacity: .75;
}
.chatbar-privacy svg { width: 12px; height: 12px; opacity: .6; flex-shrink: 0; }
.note {
    font-size: .9375rem;
    color: var(--vh-text-muted);
    font-weight: 500;
}

/* --- Sections --- */
.section {
    padding: 8rem 2.5rem;
    transition: opacity .6s ease;
}
.section-alt {
    background: var(--vh-bg-alt, #fafafa);
    border-top: 1px solid rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.03);
}
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}
/* Scroll animation: section headers */
.section-header[data-vh-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.section-header[data-vh-reveal].will-animate {
    opacity: 0;
    transform: translateY(28px);
}
.section-header[data-vh-reveal].animate-in {
    opacity: 1;
    transform: translateY(0);
}
.eyebrow {
    display: inline-block;
    padding: .6rem 1.2rem;
    font-size: .8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--vh-primary-hover, #D4A017);
    background: rgba(var(--vh-primary-rgb),.12);
    border: 1px solid rgba(var(--vh-primary-rgb),.3);
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
    transition: background .3s ease, border-color .3s ease;
}
.section-title {
    font-family: var(--vh-font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.section-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--vh-text-secondary);
}

/* --- Steps (How it works) --- */
.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
/* Connector lines between step cards (desktop only) */
.step-grid::before,
.step-grid::after {
    content: '';
    position: absolute;
    top: 82px;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--vh-primary-rgb),.12), rgba(var(--vh-primary-rgb),.35), rgba(var(--vh-primary-rgb),.12));
    z-index: 99;
    pointer-events: none;
}
.step-grid::before {
    left: calc(33.333% - 1rem);
    width: calc(2rem + 2px);
}
.step-grid::after {
    left: calc(66.666% - 1rem);
    width: calc(2rem + 2px);
}
.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--vh-surface, #fff);
    border: 1.5px solid var(--vh-border);
    border-radius: var(--radius-lg, 18px);
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .3s cubic-bezier(.4,0,.2,1),
                border-color .3s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(15, 23, 42, .06));
    position: relative;
    z-index: 100;
}
.step-card:hover {
    box-shadow: 0 16px 40px rgba(var(--vh-primary-rgb),.12), 0 6px 12px rgba(0,0,0,.03);
    border-color: rgba(var(--vh-primary-rgb),.35);
    transform: translateY(-6px);
}
.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--vh-primary-rgb),.1);
    border-radius: var(--radius-lg);
    color: var(--vh-primary-hover, #D4A017);
    transition: background .4s cubic-bezier(.4,0,.2,1),
                color .4s cubic-bezier(.4,0,.2,1),
                transform .5s cubic-bezier(.34,1.56,.64,1),
                box-shadow .4s ease;
}
.step-icon svg {
    width: 32px;
    height: 32px;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.step-card:hover .step-icon {
    background: var(--vh-primary);
    color: var(--vh-text);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(var(--vh-primary-rgb),.25);
}
.step-card:hover .step-icon svg {
    transform: scale(1.05);
}
.step-num {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.25rem;
    background: var(--vh-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vh-text);
    box-shadow: 0 4px 14px rgba(var(--vh-primary-rgb),.3);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
}
.step-card:hover .step-num {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(var(--vh-primary-rgb),.45);
}
.step-title {
    font-family: var(--vh-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: .75rem;
}
.step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--vh-text-secondary);
}

/* --- Feature cards --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.feature-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--vh-surface, #fff);
    border: 1.5px solid var(--vh-border);
    border-radius: var(--radius-lg, 18px);
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .3s cubic-bezier(.4,0,.2,1),
                border-color .3s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(15, 23, 42, .06));
    z-index: 100;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vh-primary);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(var(--vh-primary-rgb),.12), 0 6px 12px rgba(0,0,0,.03);
    border-color: rgba(var(--vh-primary-rgb),.35);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--vh-primary-rgb),.1);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    color: var(--vh-primary-hover, #D4A017);
    transition: background .3s cubic-bezier(.4,0,.2,1),
                color .3s cubic-bezier(.4,0,.2,1),
                transform .3s cubic-bezier(.4,0,.2,1);
}
.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
    background: var(--vh-primary);
    color: var(--vh-text);
}
.feature-card:hover .feature-icon svg {
    animation: iconBounce .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes iconBounce {
    0%   { transform: scale(1); }
    40%  { transform: scale(.85); }
    70%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.feature-icon svg { width: 28px; height: 28px; transition: transform .3s ease; }
.feature-title {
    font-family: var(--vh-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: .65rem;
}
.feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--vh-text-secondary);
    flex-grow: 1;
}

/* --- Stats row --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    text-align: center;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    min-width: 160px;
    position: relative;
}
/* Vertical dividers between stat items (desktop) */
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(var(--vh-primary-rgb),.25), transparent);
}
.stat-number {
    font-family: var(--vh-font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--vh-text);
    line-height: 1;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), color .3s ease;
}
.stat-item:hover .stat-number {
    transform: scale(1.05);
    color: var(--vh-primary-hover, #d4a843);
}
.stat-number-wrap {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}
.stat-text-wrap { align-items: center; }
.stat-text {
    font-family: var(--vh-font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--vh-text);
    line-height: 1;
    letter-spacing: -.02em;
}
.stat-item:hover .stat-text { color: var(--vh-primary-hover, #d4a843); }
.stat-plus {
    font-family: var(--vh-font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--vh-primary);
    line-height: 1;
    margin-left: .1em;
}
.stat-label {
    font-size: .9rem;
    font-weight: 600;
    color: var(--vh-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}
/* Stat counter entrance animation */
.stat-number.counting {
    animation: statBounce .6s cubic-bezier(.34,1.56,.64,1);
}
@keyframes statBounce {
    0%   { transform: scale(.85); opacity: .6; }
    60%  { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Testimonials --- */
.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background: var(--vh-surface, #fff);
    border: 1.5px solid var(--vh-border);
    border-radius: var(--radius-xl, 22px);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(15, 23, 42, .06));
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .3s cubic-bezier(.4,0,.2,1),
                border-color .3s cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(var(--vh-primary-rgb),.1), 0 6px 12px rgba(0,0,0,.03);
    border-color: rgba(var(--vh-primary-rgb),.35);
}
.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(var(--vh-primary-rgb),.3);
}
.testimonial-stars {
    display: flex;
    gap: .15rem;
    color: var(--vh-primary);
    margin-bottom: 1.5rem;
}
.testimonial-card:hover .testimonial-stars svg {
    animation: starPop .3s cubic-bezier(.34,1.56,.64,1) both;
}
.testimonial-card:hover .testimonial-stars svg:nth-child(1) { animation-delay: 0s; }
.testimonial-card:hover .testimonial-stars svg:nth-child(2) { animation-delay: .04s; }
.testimonial-card:hover .testimonial-stars svg:nth-child(3) { animation-delay: .08s; }
.testimonial-card:hover .testimonial-stars svg:nth-child(4) { animation-delay: .12s; }
.testimonial-card:hover .testimonial-stars svg:nth-child(5) { animation-delay: .16s; }
@keyframes starPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--vh-text-secondary);
    margin-bottom: 2rem;
    font-style: normal;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .875rem;
    color: var(--vh-text);
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
}
.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: .9375rem;
    color: var(--vh-text);
}
.testimonial-role {
    display: block;
    font-size: .8125rem;
    color: var(--vh-text-muted);
}
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.testimonials-dots {
    display: flex;
    justify-content: center;
    margin-top: 0;
    gap: .5rem;
    margin-top: 2rem;
}
.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--vh-border);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
}
.testimonials-dots .dot.active {
    background: var(--vh-primary);
    border-color: var(--vh-primary);
    transform: scale(1.15);
}
.testimonials-dots .dot:hover {
    border-color: var(--vh-primary);
    transform: scale(1.1);
}
.carousel-pause {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--vh-border, #e7e5e4);
    color: var(--vh-text-muted);
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    flex-shrink: 0;
}
.carousel-pause:hover {
    background: rgba(var(--vh-primary-rgb),.08);
    border-color: var(--vh-primary);
    color: var(--vh-primary-hover, #d4a843);
}
.carousel-pause:focus-visible {
    outline: 2px solid var(--vh-primary);
    outline-offset: 2px;
}
.carousel-pause[aria-pressed="true"] {
    background: rgba(var(--vh-primary-rgb),.12);
    border-color: var(--vh-primary);
    color: var(--vh-primary-hover, #d4a843);
}
/* Pause indicator when carousel is hovered */
.testimonials-carousel.is-paused .testimonials-dots .dot.active {
    animation: dotPausePulse 1.2s ease-in-out infinite;
}
@keyframes dotPausePulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .5; }
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}
.price-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: var(--vh-surface, #fff);
    border: 1.5px solid var(--vh-border);
    border-radius: var(--radius-lg, 18px);
    transition: transform .4s cubic-bezier(.4,0,.2,1),
                box-shadow .4s cubic-bezier(.4,0,.2,1),
                border-color .4s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(15, 23, 42, .06));
    z-index: 100;
    display: flex;
    flex-direction: column;
}
.price-card .features { flex: 1; }
.price-card .plan-btn { margin-top: auto; }
.price-card.popular {
    border-color: rgba(var(--vh-primary-rgb),.4);
    box-shadow: 0 8px 28px rgba(var(--vh-primary-rgb),.1);
    animation: subtlePulseGlow 3s ease-in-out infinite;
}
/* Enhanced glow ring on popular card */
.price-card.popular::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg, 18px) + 2px);
    background: linear-gradient(135deg, rgba(var(--vh-primary-rgb),.18), rgba(var(--vh-primary-rgb),.04), rgba(var(--vh-primary-rgb),.18));
    z-index: -1;
    opacity: .6;
    transition: opacity .4s ease;
}
.price-card.popular:hover::after {
    opacity: 1;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(var(--vh-primary-rgb),.12), 0 6px 12px rgba(0,0,0,.03);
    border-color: rgba(var(--vh-primary-rgb),.5);
}
.price-card.popular:hover {
    box-shadow: 0 16px 40px rgba(var(--vh-primary-rgb),.12), 0 6px 12px rgba(0,0,0,.03);
}
.badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: .4rem .85rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--vh-text);
    background: var(--vh-primary);
    border-radius: var(--radius-xs);
    box-shadow: 0 4px 12px rgba(var(--vh-primary-rgb),.25);
    transition: box-shadow .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.price-card:hover .badge {
    box-shadow: 0 6px 20px rgba(var(--vh-primary-rgb),.35);
    transform: scale(1.04);
}
.plan-name {
    font-family: var(--vh-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: .5rem;
}
.plan-type {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--vh-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1rem;
}
.price-wrap {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    margin-bottom: .5rem;
}
.currency { font-size: 1.5rem; font-weight: 700; color: var(--vh-text-secondary); }
.amount { font-size: 3.5rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.period { font-size: 1rem; font-weight: 600; color: var(--vh-text-muted); }
.plan-desc {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--vh-text-secondary);
    margin-bottom: 2rem;
}
.features { display: grid; gap: .9rem; margin-bottom: 2.25rem; }
.feature {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .9375rem;
    font-weight: 500;
    color: var(--vh-text-secondary);
}
.check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--vh-primary-rgb),.12);
    border-radius: 50%;
    transition: background .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
}
.check-icon svg { width: 12px; height: 12px; color: var(--vh-primary-hover, #D4A017); }
.price-card:hover .check-icon {
    background: rgba(var(--vh-primary-rgb),.22);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(var(--vh-primary-rgb),.15);
}
.plan-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--vh-text);
    background: var(--vh-primary);
    border: none;
    border-radius: var(--radius-md, 12px);
    cursor: pointer;
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                box-shadow .3s cubic-bezier(.4,0,.2,1),
                background .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 14px rgba(var(--vh-primary-rgb),.15);
    position: relative;
    overflow: hidden;
}
.plan-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}
.plan-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(var(--vh-primary-rgb),.35), 0 0 0 1px rgba(var(--vh-primary-rgb),.15);
    background: var(--vh-primary-hover);
}
.plan-btn:hover::after {
    opacity: 1;
    animation: shimmerGlow .8s ease forwards;
}
.plan-btn:active {
    transform: translateY(0) scale(.98);
    transition-duration: .1s;
}
.plan-btn span { position: relative; z-index: 1; }
.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}
.pricing-link {
    color: var(--vh-primary-hover, #D4A017);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    position: relative;
    transition: color .3s ease;
}
.pricing-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--vh-primary);
    border-radius: var(--radius-xs);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.pricing-link:hover {
    color: var(--vh-primary-hover);
}
.pricing-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- FAQ --- */
.faq-grid { display: grid; gap: .75rem; contain: layout style; }
.faq-item {
    background: var(--vh-surface, #fff);
    border: 1.5px solid var(--vh-border);
    border-radius: var(--radius-lg, 18px);
    overflow: hidden;
    transition: border-color .4s cubic-bezier(.4,0,.2,1),
                box-shadow .4s cubic-bezier(.4,0,.2,1),
                transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(15, 23, 42, .06));
}
.faq-item:hover {
    border-color: rgba(var(--vh-primary-rgb),.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
/* FAQ stagger animation on scroll */
.faq-item[data-animate="fade-up"] {
    opacity: 1;
    transform: translateY(0);
}
.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--vh-font-display);
    letter-spacing: -0.02em;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--vh-text);
    transition: background .3s cubic-bezier(.4,0,.2,1),
                color .3s cubic-bezier(.4,0,.2,1);
}
.faq-question:hover { background: rgba(var(--vh-primary-rgb),.04); }
.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    transition: transform .4s cubic-bezier(.4,0,.2,1),
                color .4s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
    color: var(--vh-text-muted);
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--vh-primary);
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s cubic-bezier(.4,0,.2,1),
                opacity .35s cubic-bezier(.4,0,.2,1);
    opacity: 0;
}
.faq-answer > * {
    overflow: hidden;
}
.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}
.faq-text {
    padding: 0 2rem 1.75rem;
    color: var(--vh-text-secondary);
    line-height: 1.7;
}
.faq-item.open .faq-question {
    color: var(--vh-primary-hover, #d4a843);
    background: rgba(var(--vh-primary-rgb),.03);
}
.faq-item.open {
    border-color: rgba(var(--vh-primary-rgb),.35);
    box-shadow: 0 6px 20px rgba(var(--vh-primary-rgb),.08);
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Subtle radial glow behind CTA */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(var(--vh-primary-rgb),.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.cta-block {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta-title {
    font-family: var(--vh-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.cta-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--vh-text-secondary);
    margin-bottom: 2.5rem;
}
/* CTA chatbar enhanced glow */
.cta-section .chatbar {
    box-shadow: 0 4px 20px rgba(var(--vh-primary-rgb),.08);
}
.cta-section .chatbar:focus-within {
    box-shadow: 0 0 0 4px rgba(var(--vh-primary-rgb),.12), 0 8px 40px rgba(var(--vh-primary-rgb),.1);
}

/* --- Footer --- */
.footer {
    padding: 4rem 2rem 2rem;
    background: var(--vh-text);
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    line-height: 1.6;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { max-width: 320px; }
.footer-logo {
    font-family: var(--vh-font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--vh-surface);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .85rem;
    transition: opacity .3s ease;
}
.footer-logo:hover { opacity: .85; }
.footer-logo-v {
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.footer-logo:hover .footer-logo-v {
    transform: scale(1.1);
}
.footer-tagline {
    font-size: .85rem;
    line-height: 1.65;
    color: rgba(255,255,255,.6);
}
.footer-columns { display: flex; gap: 4.5rem; }
.footer-col { display: flex; flex-direction: column; gap: .65rem; }
.footer-col-title {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.55);
    margin-bottom: .35rem;
}
.footer-link {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    position: relative;
    transition: color .3s ease, transform .3s ease;
    display: inline-block;
}
.footer-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--vh-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.footer-link:hover {
    color: var(--vh-surface);
    transform: translateX(2px);
}
.footer-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.footer-social {
    display: flex;
    gap: .75rem;
    margin-top: 1.25rem;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.6);
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover {
    background: rgba(var(--vh-primary-rgb),.15);
    color: var(--vh-primary);
    transform: translateY(-2px);
}
.footer-social-link:active {
    transform: translateY(0) scale(.95);
    transition-duration: .1s;
}
.footer-social-link:focus-visible {
    outline: 2px solid var(--vh-primary);
    outline-offset: 2px;
}
.footer-bottom { padding-top: 2rem; text-align: center; }
.copyright { font-size: .8rem; color: rgba(255,255,255,.45); }

/* --- Toast --- */
.toast {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    min-width: 380px;
    padding: 1.6rem 2.25rem;
    background: var(--vh-text);
    color: var(--vh-surface);
    font-size: .9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 50px rgba(31,31,31,.15);
    opacity: 0;
    z-index: 10000;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* --- Hamburger / Mobile overlay --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1201;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--vh-text);
    border-radius: var(--radius-xs);
    transition: transform .35s cubic-bezier(.4,0,.2,1),
                opacity .25s ease,
                background .3s ease;
    transform-origin: center;
}
.hamburger:hover span {
    background: var(--vh-primary-hover);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .4s cubic-bezier(.4,0,.2,1),
                visibility .4s;
    pointer-events: none;
    box-shadow: -8px 0 32px rgba(0,0,0,.08);
    padding: 72px 1.5rem 2rem;
}
.mobile-overlay.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}
/* Backdrop behind slide-in menu */
.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s cubic-bezier(.4,0,.2,1),
                visibility .35s;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
}
.mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-overlay .nav-link {
    display: block;
    width: 100%;
    font-size: 1.15rem;
    padding: 1rem 2rem;
    min-height: 48px;
    border-radius: var(--radius-sm);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .3s ease, transform .3s ease, color .3s ease, background .3s ease;
}
.mobile-overlay .nav-link::after { display: none; }
/* Mobile nav link hover/active with bg highlight */
.mobile-overlay .nav-link:hover,
.mobile-overlay .nav-link:focus-visible {
    background: rgba(var(--vh-primary-rgb),.1);
    color: var(--vh-primary-hover);
}
.mobile-overlay.open .nav-link {
    opacity: 1;
    transform: translateX(0);
}
.mobile-overlay.open .nav-link:nth-child(1) { transition-delay: .1s; }
.mobile-overlay.open .nav-link:nth-child(2) { transition-delay: .15s; }
.mobile-overlay.open .nav-link:nth-child(3) { transition-delay: .2s; }
.mobile-overlay .btn {
    font-size: 1rem;
    width: 100%;
    max-width: 240px;
    justify-content: center;
    margin-top: .5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .3s ease, transform .3s ease,
                background .3s ease, box-shadow .3s ease;
}
.mobile-overlay.open .btn {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .25s;
}

/* --- Scroll reveal animation (content visible by default) --- */
[data-animate="fade-up"] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate="fade-up"].will-animate {
    opacity: 0;
    transform: translateY(32px);
}
[data-animate="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger delays for cards inside grids */
[data-animate="fade-up"][data-stagger="1"] { transition-delay: .1s; }
[data-animate="fade-up"][data-stagger="2"] { transition-delay: .2s; }
[data-animate="fade-up"][data-stagger="3"] { transition-delay: .3s; }
[data-animate="fade-up"][data-stagger="4"] { transition-delay: .4s; }
[data-animate="fade-up"][data-stagger="5"] { transition-delay: .5s; }
[data-animate="fade-up"][data-stagger="6"] { transition-delay: .6s; }

/* Stats / amounts - bounce scale on appear */
.price-wrap .amount {
    transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .5s ease;
}
.price-card.will-animate .amount {
    opacity: 0;
    transform: scale(.6);
}
.price-card.animated .amount {
    opacity: 1;
    transform: scale(1);
}

/* --- Skip navigation link --- */
.vh-skip-link {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    padding: .85rem 1.5rem;
    background: var(--vh-primary);
    color: var(--vh-on-primary, #1a1a1a);
    font-weight: 700;
    font-size: .95rem;
    border-radius: 0 0 12px 12px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    transition: top .3s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
}
.vh-skip-link:focus,
.vh-skip-link:focus-visible {
    top: 0;
    outline: 2px solid var(--vh-on-primary, #1a1a1a);
    outline-offset: -2px;
}

/* ===== Responsive: 968px ===== */
@media (max-width: 968px) {
    .hamburger { display: flex; }
    .nav-link { display: none; }
    .nav .btn { display: none; }
    .lang-switch { order: 1; }
    .header-inner { padding: 0 1.5rem; }
    .section { padding: 5rem 1.5rem; }
    .step-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 480px; margin: 0 auto; }
    .step-grid::before,
    .step-grid::after { display: none; }
    .feature-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 520px; margin: 0 auto; }
    .pricing-grid { grid-template-columns: 1fr; gap: 1.25rem; max-width: 480px; margin: 0 auto; }
    .footer-top { flex-direction: column; gap: 2.5rem; }
    .footer-columns { gap: 3rem; }
    .stats-row { gap: 2.5rem; }
    .stat-number { font-size: clamp(2rem, 5vw, 3rem); }
    .section-skeleton .skel-row { grid-template-columns: 1fr; }
    /* Disable hover transforms on touch devices for cards */
    .step-card:hover,
    .feature-card:hover,
    .price-card:hover {
        transform: none;
    }
    /* Mobile overlay sizing */
    .mobile-overlay { max-width: 320px; }
}

/* ===== Responsive: 768px ===== */
@media (max-width: 768px) {
    .section { padding: 4.5rem 1.25rem; }
    .section-header { margin-bottom: 3.5rem; }
    .section-title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
    .section-desc { font-size: 1.05rem; }
    h1 { font-size: clamp(2.2rem, 6vw, 3.5rem); margin-bottom: 1.5rem; }
    .hero-subtitle { margin-bottom: 2.5rem; font-size: clamp(1rem, 2.5vw, 1.2rem); }
    .hero-badge { margin-bottom: 2rem; padding: .55rem 1.2rem; font-size: .8rem; }
    .step-card { padding: 2rem 1.5rem; }
    .feature-card { padding: 2rem 1.5rem; }
    .price-card { padding: 2rem 1.5rem; }
    .faq-question { padding: 1.5rem 1.5rem; font-size: 1.05rem; }
    .faq-text { padding: 0 1.5rem 1.5rem; }
    .faq-grid { max-width: 100%; }
    .testimonial-card { padding: 2.5rem 2rem; }
    .testimonial-text { font-size: 1.05rem; }
    .stats-row { gap: 2rem; }
    .cta-title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
    .cta-subtitle { font-size: 1.05rem; margin-bottom: 2rem; }
    .footer { padding: 3rem 1.5rem 1.5rem; }
    .footer-brand { max-width: 100%; }
    .footer-columns { flex-direction: column; gap: 2rem; }
    .footer-col { gap: .75rem; }
    .hero { padding-top: calc(72px + 4rem); padding-bottom: 4rem; }
    .section-skeleton .skel-row { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Responsive: 640px ===== */
@media (max-width: 640px) {
    .mobile-overlay { max-width: 100%; }
    .header-inner { padding: 0 1.25rem; }
    .logo { font-size: 1.3rem; }
    .lang-btn { padding: .4rem .65rem; font-size: .75rem; }
    .lang-dropdown { right: 0; left: auto; max-width: calc(100vw - 2rem); }
    .hero { min-height: 85vh; padding: calc(72px + 3rem) 1.25rem 3rem; }
    .hero-skeleton { padding: calc(72px + 3rem) 1.25rem 3rem; min-height: 85vh; }
    .chatbar-input { padding: 1rem 3.25rem 1rem 1.25rem; font-size: .95rem; }
    .section { padding: 4rem 1.25rem; }
    .feature-card,
    .price-card { padding: 2rem 1.5rem; }
    .amount { font-size: 3.25rem; }
    .testimonial-card { padding: 2rem 1.5rem; }
    .stats-row { gap: 1.5rem; flex-direction: column; }
    .stat-item + .stat-item::before { display: none; }
    .faq-question { padding: 1.25rem 1.25rem; font-size: 1rem; }
    .faq-text { padding: 0 1.25rem 1.25rem; }
    .toast {
        min-width: auto;
        left: 1.25rem;
        right: 1.25rem;
        transform: translateX(0) translateY(150px);
    }
    .toast.show { transform: translateX(0) translateY(0); }
    .footer { padding: 3rem 1.25rem 1.5rem; }
}

/* ===== Responsive: 540px ===== */
@media (max-width: 540px) {
    .hero-title { font-size: clamp(2rem, 8vw, 2.5rem); }
    .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
    .faq-question { padding: 1.25rem; font-size: 1rem; }
    .mobile-overlay { max-width: 100%; border-radius: 0; }
}

/* ===== Responsive: 480px ===== */
@media (max-width: 480px) {
    .header { height: 64px; }
    .header-inner { padding: 0 1rem; }
    .logo { font-size: 1.2rem; gap: .4rem; }
    .logo-v { width: 22px; height: 22px; }
    .hero {
        min-height: auto;
        padding: calc(64px + 2.5rem) 1rem 2.5rem;
    }
    .hero-skeleton {
        padding: calc(64px + 2.5rem) 1rem 2.5rem;
        min-height: auto;
        gap: 1rem;
    }
    h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 1.25rem; }
    .hero-badge { padding: .5rem 1rem; font-size: .75rem; margin-bottom: 1.5rem; }
    .hero-subtitle {
        font-size: .95rem;
        margin-bottom: 2rem;
    }
    .chatbar-input { padding: .9rem 3rem .9rem 1rem; font-size: .9rem; }
    .chatbar-send { width: 36px; height: 36px; right: .5rem; }
    .chatbar-send svg { width: 16px; height: 16px; }
    .chatbar-hint { font-size: .75rem; }
    .search-box { margin-bottom: 1.5rem; }
    .note { font-size: .85rem; }
    .section { padding: 3rem 1rem; }
    .section-header { margin-bottom: 2.5rem; }
    .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
    .section-desc { font-size: .95rem; }
    .eyebrow { padding: .5rem 1rem; font-size: .75rem; }
    .step-card { padding: 1.75rem 1.25rem; }
    .step-icon { width: 52px; height: 52px; }
    .step-icon svg { width: 26px; height: 26px; }
    .step-num { width: 34px; height: 34px; font-size: 1.1rem; }
    .step-title { font-size: 1.1rem; }
    .feature-card { padding: 1.75rem 1.25rem; }
    .feature-icon { width: 48px; height: 48px; }
    .feature-icon svg { width: 24px; height: 24px; }
    .feature-title { font-size: 1.2rem; }
    .price-card { padding: 2rem 1.25rem; }
    .plan-name { font-size: 1.3rem; }
    .amount { font-size: 2.75rem; }
    .currency { font-size: 1.25rem; }
    .plan-btn { padding: 1rem 1.5rem; font-size: .9375rem; }
    .stat-number { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .stat-label { font-size: .8rem; }
    .testimonial-card { padding: 1.75rem 1.25rem; }
    .testimonial-text { font-size: 1rem; margin-bottom: 1.5rem; }
    .testimonial-avatar { width: 38px; height: 38px; font-size: .8rem; }
    .faq-question { padding: 1.1rem 1rem; font-size: .95rem; min-height: 52px; }
    .faq-text { padding: 0 1rem 1.1rem; font-size: .9rem; }
    .faq-grid { gap: .5rem; }
    .cta-title { font-size: clamp(1.5rem, 6vw, 2rem); }
    .cta-subtitle { font-size: .95rem; margin-bottom: 1.5rem; }
    .toast {
        left: 1rem;
        right: 1rem;
        padding: 1.2rem 1.5rem;
        font-size: .875rem;
        bottom: 2rem;
    }
    .footer { padding: 2.5rem 1rem 1.25rem; }
    .footer-logo { font-size: 1.1rem; }
    .footer-tagline { font-size: .8rem; }
    .footer-col-title { font-size: .68rem; }
    .footer-link { font-size: .875rem; padding: .25rem 0; }
    .footer-col { gap: .5rem; }
    .footer-columns { gap: 1.75rem; }
    .copyright { font-size: .75rem; }
    .section-skeleton .skel-row { grid-template-columns: 1fr; }
}

/* ===== Responsive: 360px ===== */
@media (max-width: 360px) {
    .header-inner { padding: 0 .75rem; }
    .hero {
        padding: calc(64px + 2rem) .75rem 2rem;
    }
    .hero-skeleton { padding: calc(64px + 2rem) .75rem 2rem; }
    h1 { font-size: 1.65rem; }
    .hero-badge { font-size: .7rem; padding: .45rem .85rem; }
    .hero-subtitle { font-size: .875rem; }
    .chatbar { border-radius: var(--radius-md); }
    .chatbar-input { padding: .8rem 2.75rem .8rem .85rem; font-size: .85rem; }
    .chatbar-send { width: 32px; height: 32px; border-radius: var(--radius-xs); right: .4rem; }
    .chatbar-send svg { width: 14px; height: 14px; }
    .chatbar-hint { font-size: .7rem; gap: .35rem; }
    .section { padding: 2.5rem .75rem; }
    .section-title { font-size: 1.35rem; }
    .section-desc { font-size: .875rem; }
    .eyebrow { padding: .4rem .85rem; font-size: .7rem; }
    .step-card,
    .feature-card { padding: 1.5rem 1rem; }
    .price-card { padding: 1.5rem 1rem; }
    .plan-name { font-size: 1.2rem; }
    .amount { font-size: 2.5rem; }
    .plan-btn { padding: .9rem 1.25rem; font-size: .875rem; border-radius: var(--radius-md); }
    .faq-question { padding: 1rem .85rem; font-size: .9rem; }
    .faq-text { padding: 0 .85rem 1rem; font-size: .85rem; }
    .testimonial-card { padding: 1.5rem 1rem; }
    .testimonial-text { font-size: .9rem; }
    .footer { padding: 2rem .75rem 1rem; }
}

/* --- Touch targets --- */
@media (pointer: coarse) {
    .nav-link { min-height: 44px; display: inline-flex; align-items: center; }
    .faq-question { min-height: 56px; }
    .plan-btn { min-height: 52px; }
    .chatbar-send { min-width: 44px; min-height: 44px; }
    .lang-option { min-height: 44px; }
    .hamburger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
    .testimonials-dots .dot { min-width: 36px; min-height: 36px; }
    .footer-link { min-height: 44px; display: inline-flex; align-items: center; }
    .footer-social-link { min-width: 44px; min-height: 44px; }
    .mobile-overlay .nav-link { min-height: 48px; padding: 1rem 2rem; font-size: 1.2rem; }
    .mobile-overlay .btn { min-height: 48px; padding: .85rem 2rem; font-size: 1.05rem; }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
    body::before { animation: none; }
    .hero::before, .hero::after { animation: none; }
    .pulse-dot { animation: none; }
    .hero-badge .pulse-dot { animation: none; }
    .price-card.popular { animation: none; }
    .testimonials-track { transition: none; }
    [data-animate="fade-up"].will-animate { opacity: 1; transform: none; }
    .section-header[data-vh-reveal].will-animate { opacity: 1; transform: none; }
    .hero-badge,
    .hero h1,
    .hero .hero-subtitle,
    .hero .search-box,
    .hero .hero-note-wrap {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .handwritten-underline { transform: scaleX(1); }
    .hw-char { opacity: 1; transform: none; filter: none; }
    .mobile-overlay { transition: none; }
    .mobile-backdrop { transition: none; }
    .mobile-overlay .nav-link,
    .mobile-overlay .btn { transition: none; opacity: 1; transform: none; }
    .mobile-overlay.open .nav-link,
    .mobile-overlay.open .btn { transition-delay: 0s; }
    /* Ensure stat counters show final value immediately */
    .stat-number.counting { animation: none; }
    /* Disable parallax */
    .hero-inner [style*="transform"] { transform: none !important; }
}

/* --- Forced colors (Windows High Contrast mode) --- */
@media (forced-colors: active) {
    .btn,
    .plan-btn,
    .chatbar-send {
        border: 2px solid ButtonText;
        forced-color-adjust: none;
    }
    .btn:hover,
    .plan-btn:hover,
    .chatbar-send.ready:hover {
        border-color: Highlight;
        background: Highlight;
        color: HighlightText;
    }
    .btn:focus-visible,
    .plan-btn:focus-visible,
    .chatbar-send:focus-visible {
        outline: 3px solid Highlight;
        outline-offset: 2px;
    }
    .hero-badge,
    .eyebrow {
        border: 1px solid ButtonText;
    }
    .nav-link::after,
    .footer-link::after,
    .pricing-link::after,
    .feature-card::before {
        background: Highlight;
    }
    .faq-item {
        border: 1px solid ButtonText;
    }
    .faq-item.open {
        border-color: Highlight;
    }
    .step-card,
    .feature-card,
    .price-card,
    .testimonial-card {
        border: 1px solid ButtonText;
    }
    .logo-v rect,
    .footer-logo-v rect {
        fill: Highlight;
    }
    .pulse-dot,
    .step-num {
        background: Highlight;
    }
    .stat-number {
        color: CanvasText;
    }
    .stat-plus {
        color: Highlight;
    }
    .check-icon {
        border: 1px solid ButtonText;
        background: transparent;
    }
    .badge {
        border: 1px solid ButtonText;
        background: Highlight;
        color: HighlightText;
    }
    .testimonials-dots .dot {
        border-color: ButtonText;
    }
    .testimonials-dots .dot.active {
        background: Highlight;
        border-color: Highlight;
    }
    .footer-social-link {
        border: 1px solid ButtonText;
        color: LinkText;
    }
    .footer-social-link:hover {
        border-color: Highlight;
        color: Highlight;
    }
    .hamburger span {
        background: ButtonText;
    }
    .mobile-overlay {
        background: Canvas;
        border-left: 2px solid ButtonText;
    }
    .mobile-backdrop {
        background: Canvas;
        opacity: .5;
    }
    .header {
        background: Canvas;
        border-bottom-color: ButtonText;
    }
    .toast {
        border: 2px solid ButtonText;
        background: Canvas;
        color: CanvasText;
    }
    /* Ensure ripple is invisible in forced colors */
    .btn .ripple,
    .plan-btn .ripple,
    .chatbar-send .ripple {
        display: none;
    }
    /* Links */
    .nav-link,
    .footer-link,
    .pricing-link {
        color: LinkText;
    }
    .nav-link:hover,
    .footer-link:hover,
    .pricing-link:hover {
        color: Highlight;
    }
}

/* --- Safe area --- */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer-bottom { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
    .toast { bottom: calc(3rem + env(safe-area-inset-bottom)); }
    .mobile-overlay { padding-bottom: env(safe-area-inset-bottom); }
}
