/* =============================================
   ALARMI.FI — Living Alarm Network
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #FAF9F6;
    --bg-alt: #F2F0EB;
    --bg-card: #FFFFFF;
    --bg-dark: #0C0C0E;
    --bg-dark-2: #161618;
    --text: #0C0C0E;
    --text-2: #4a4a52;
    --text-3: #8a8a94;
    --text-inv: #FAF9F6;
    --teal: #00BFA5;
    --teal-2: #00D4B8;
    --teal-bg: rgba(0,191,165,0.07);
    --teal-glow: rgba(0,191,165,0.25);
    --fire: #FF6B35;
    --fire-bg: rgba(255,107,53,0.07);
    --fire-glow: rgba(255,107,53,0.20);
    --amber: #F5A623;
    --green: #22c55e;
    --green-bg: rgba(34,197,94,0.08);
    --border: rgba(0,0,0,0.06);
    --border-2: rgba(0,0,0,0.10);
    --sh-sm: 0 1px 2px rgba(0,0,0,0.04);
    --sh-md: 0 4px 16px rgba(0,0,0,0.06);
    --sh-lg: 0 12px 48px rgba(0,0,0,0.10);
    --r: 20px;
    --r-sm: 12px;
    --r-xs: 8px;
    --r-full: 100px;
    --font: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html.lenis, html.lenis body { height: auto; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: var(--teal); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }

/* Scroll Progress */
.scroll-progress {
    position: fixed; top: 0; left: 0; width: 0%; height: 2px; z-index: 9998;
    background: linear-gradient(90deg, var(--teal), var(--teal-2));
    pointer-events: none;
}

/* =============================================
   NAV
   ============================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1002; padding: 1rem 0; transition: all 0.4s var(--ease); }
.nav--scrolled { padding: 0.625rem 0; background: rgba(250,249,246,0.88); backdrop-filter: blur(24px) saturate(1.8); -webkit-backdrop-filter: blur(24px) saturate(1.8); border-bottom: 1px solid var(--border); }
.nav__container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 0.5rem; z-index: 10; }
.nav__logo-img { width: 28px; height: 28px; border-radius: 7px; }
.nav__logo-text { font-family: var(--font); font-size: 1.125rem; font-weight: 800; letter-spacing: -0.03em; }
.nav__links { display: flex; gap: 2rem; }
.nav__link { font-size: 0.8125rem; font-weight: 500; color: var(--text-2); transition: color 0.2s; position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--teal); border-radius: 1px; transition: width 0.3s var(--ease); }
.nav__link:hover, .nav__link--active { color: var(--text); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 0.625rem; }
.nav__lang { display: flex; }
.nav__lang-btn { background: none; border: 1.5px solid var(--border); color: var(--text-3); padding: 0.3rem 0.625rem; border-radius: var(--r-full); font-size: 0.625rem; font-weight: 700; font-family: var(--font-body); letter-spacing: 0.08em; transition: all 0.25s; cursor: pointer; }
.nav__lang-btn:hover { border-color: var(--border-2); color: var(--text); }
.nav__btn { font-size: 0.8125rem; font-weight: 600; padding: 0.5rem 1.125rem; border-radius: var(--r-full); transition: all 0.3s var(--ease); display: inline-flex; align-items: center; white-space: nowrap; }
.nav__btn--ghost { color: var(--text-2); }
.nav__btn--ghost:hover { color: var(--text); }
.nav__btn--primary { background: var(--teal); color: #fff; font-weight: 700; }
.nav__btn--primary:hover { background: var(--teal-2); box-shadow: 0 4px 16px var(--teal-glow); transform: translateY(-1px); }

.nav__burger {
    display: none; flex-direction: column; gap: 5px; background: none; border: none;
    padding: 8px; z-index: 10; cursor: pointer; position: relative;
    width: 44px; height: 44px; align-items: center; justify-content: center;
    -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
    display: block; width: 22px; height: 2px; background: var(--text);
    border-radius: 2px; transition: all 0.4s var(--ease); transform-origin: center;
    position: absolute;
}
/* White burger on dark hero (home page before scroll) */
.nav--hero .nav__burger span { background: var(--text-inv); }
.nav--hero.nav--scrolled .nav__burger span { background: var(--text); }
/* When menu is open, always dark X lines (over light menu bg) */
.nav__burger--active span { background: var(--text) !important; }
.nav__burger span:nth-child(1) { transform: translateY(-7px); }
.nav__burger span:nth-child(2) { transform: translateY(0); }
.nav__burger span:nth-child(3) { transform: translateY(7px); }
.nav__burger--active span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav__burger--active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger--active span:nth-child(3) { transform: translateY(0) rotate(-45deg); }
.nav__mobile {
    position: fixed; inset: 0; background: var(--bg);
    padding: 6rem 2rem 2rem; flex-direction: column; z-index: 1001;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    display: flex;
    overflow-y: auto;
}
.nav__mobile--active { opacity: 1; visibility: visible; pointer-events: auto; }
.nav__mobile-link {
    font-family: var(--font); font-size: 1.5rem; font-weight: 700;
    padding: 1.125rem 0; border-bottom: 1px solid var(--border);
    transform: translateX(-20px); opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), color 0.2s;
}
.nav__mobile--active .nav__mobile-link {
    transform: translateX(0); opacity: 1;
}
.nav__mobile--active .nav__mobile-link:nth-child(1) { transition-delay: 0.05s; }
.nav__mobile--active .nav__mobile-link:nth-child(2) { transition-delay: 0.1s; }
.nav__mobile--active .nav__mobile-link:nth-child(3) { transition-delay: 0.15s; }
.nav__mobile-link:hover, .nav__mobile-link:active { color: var(--teal); }
.nav__mobile-actions {
    margin-top: auto; display: flex; flex-direction: column; gap: 0.75rem;
    padding-top: 2rem;
    transform: translateY(20px); opacity: 0;
    transition: transform 0.4s var(--ease) 0.2s, opacity 0.4s var(--ease) 0.2s;
}
.nav__mobile--active .nav__mobile-actions { transform: translateY(0); opacity: 1; }
/* Language switch in mobile */
.nav__mobile-lang {
    display: none; padding: 0.5rem 0;
}
@media (max-width: 900px) {
    .nav__links, .nav__actions { display: none; }
    .nav__burger { display: flex; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
    padding: 0.875rem 2rem; border-radius: var(--r-full); border: none;
    cursor: pointer; transition: all 0.35s var(--ease); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--teal); color: #fff; font-weight: 700; }
.btn--primary:hover { background: var(--teal-2); box-shadow: 0 8px 32px var(--teal-glow); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-2); }
.btn--ghost:hover { border-color: var(--text-3); background: rgba(0,0,0,0.02); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: 0.625rem 1.5rem; font-size: 0.8125rem; }
.btn--inv-ghost { background: transparent; color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.12); }
.btn--inv-ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

/* Flash */
.flash { position: fixed; top: 5rem; left: 50%; transform: translateX(-50%); z-index: 2000; animation: flashIn 0.5s var(--ease); }
.flash__container { display: flex; align-items: center; gap: 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-full); padding: 0.75rem 1.5rem; font-size: 0.875rem; box-shadow: var(--sh-lg); }
.flash--success .flash__container { border-color: rgba(0,191,165,0.3); }
.flash--error .flash__container { border-color: rgba(255,107,53,0.3); }
.flash__close { background: none; border: none; color: var(--text-3); font-size: 1.25rem; cursor: pointer; }
@keyframes flashIn { from { opacity: 0; transform: translateX(-50%) translateY(-20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* =============================================
   HERO — Living Alarm Network
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
    color: var(--text-inv);
}

.hero__grid {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
    cursor: crosshair;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero__badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.625rem;
    border-radius: var(--r-full);
    background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.15);
    font-size: 0.75rem; font-weight: 600; color: var(--fire);
    margin-bottom: 2rem;
    opacity: 0; transform: translateY(16px);
}
.hero__badge-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--fire);
    animation: firePulse 2s ease infinite;
}
@keyframes firePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
    50% { box-shadow: 0 0 0 8px transparent; }
}

.hero__title {
    font-family: var(--font);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
}
.hero__title-line { display: block; overflow: hidden; padding-bottom: 0.1em; }
.hero__title-word { display: inline-block; transform: translateY(120%); opacity: 0; }
.hero__title-accent {
    color: var(--teal);
    text-shadow: 0 0 60px rgba(0,191,165,0.3);
}

.hero__sub {
    font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    opacity: 0; transform: translateY(20px);
}

.hero__actions {
    display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap;
    margin-bottom: 2.5rem;
    opacity: 0; transform: translateY(20px);
}
.hero__actions .btn--ghost {
    color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.18);
}
.hero__actions .btn--ghost:hover {
    color: #fff; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08);
}

.hero__trust {
    display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
}
.hero__trust-item {
    display: flex; align-items: center; gap: 0.375rem;
    font-size: 0.8125rem; color: rgba(255,255,255,0.35); font-weight: 500;
}
.hero__trust-item svg { width: 15px; height: 15px; color: var(--teal); opacity: 0.6; }

/* Legend — bottom left */
.hero__legend {
    position: absolute; bottom: 2rem; left: 2.5rem;
    display: flex; gap: 1.25rem;
    z-index: 3;
    opacity: 0; transition: opacity 1s 2s;
}
.hero__legend.is-visible { opacity: 1; }
.hero__legend-item {
    display: flex; align-items: center; gap: 0.375rem;
    font-size: 0.625rem; font-weight: 500; color: rgba(255,255,255,0.3);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.hero__legend-dot { width: 6px; height: 6px; border-radius: 50%; }
.hero__legend-dot--active { background: var(--teal); box-shadow: 0 0 6px var(--teal-glow); }
.hero__legend-dot--testing { background: var(--amber); animation: legendBlink 1.5s ease infinite; }
.hero__legend-dot--pending { background: rgba(255,255,255,0.15); }
@keyframes legendBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Live counter — bottom right */
.hero__live-counter {
    position: absolute; bottom: 2rem; right: 2.5rem;
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font); font-size: 0.6875rem; font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.03em;
    z-index: 3;
    opacity: 0; transition: opacity 1s 2.5s;
}
.hero__live-counter.is-visible { opacity: 1; }
.hero__live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal);
    animation: livePulse 2s ease infinite;
}
@keyframes livePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(0,191,165,0.4); }
    50% { box-shadow: 0 0 0 6px transparent; }
}
.hero__live-counter span { font-variant-numeric: tabular-nums; }

/* Hero floating overlays */
.hero__overlay-dash {
    position: absolute;
    bottom: 5rem; left: 2.5rem;
    z-index: 4;
    background: rgba(16,16,20,0.75);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--r-sm);
    padding: 0.875rem 1rem;
    min-width: 180px;
    opacity: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero__overlay-dash-header {
    display: flex; align-items: center; gap: 0.4rem;
    font-family: var(--font); font-size: 0.625rem; font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 0.625rem; padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero__overlay-dash-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal);
    animation: livePulse 2s ease infinite;
}
.hero__overlay-dash-row {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.6875rem; color: rgba(255,255,255,0.4);
    margin-bottom: 0.375rem;
}
.hero__overlay-dash-row svg { width: 13px; height: 13px; color: var(--teal); opacity: 0.7; }
.hero__overlay-dash-row strong { color: rgba(255,255,255,0.8); font-variant-numeric: tabular-nums; }
.hero__overlay-dash-bar {
    height: 3px; border-radius: 2px;
    background: rgba(255,255,255,0.06);
    margin-top: 0.5rem; overflow: hidden;
}
.hero__overlay-dash-bar-fill {
    height: 100%; width: 0%; border-radius: 2px;
    background: linear-gradient(90deg, var(--teal), var(--teal-2));
    animation: heroBarFill 4s ease-in-out infinite;
}
@keyframes heroBarFill {
    0% { width: 0%; }
    50% { width: 100%; }
    55% { width: 100%; opacity: 1; }
    70% { width: 100%; opacity: 0.5; }
    75% { width: 0%; opacity: 0; }
    80% { opacity: 0; }
    100% { width: 0%; opacity: 1; }
}

.hero__overlay-notifs {
    position: absolute;
    bottom: 5rem; right: 2.5rem;
    z-index: 4;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.hero__overlay-notif {
    display: flex; align-items: center; gap: 0.625rem;
    background: rgba(16,16,20,0.75);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--r-sm);
    padding: 0.625rem 0.875rem;
    opacity: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: notifFloat 6s ease-in-out infinite;
}
.hero__overlay-notif--1 { animation-delay: 0s; }
.hero__overlay-notif--2 { animation-delay: 3s; }
@keyframes notifFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.hero__overlay-notif-icon {
    width: 28px; height: 28px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hero__overlay-notif-icon svg { width: 14px; height: 14px; }
.hero__overlay-notif-icon--teal { background: var(--teal-bg); color: var(--teal); }
.hero__overlay-notif-icon--amber { background: var(--fire-bg); color: var(--amber); }
.hero__overlay-notif-text { display: flex; flex-direction: column; }
.hero__overlay-notif-text strong { font-size: 0.6875rem; font-weight: 700; color: rgba(255,255,255,0.8); }
.hero__overlay-notif-text span { font-size: 0.5625rem; color: rgba(255,255,255,0.35); }

/* =============================================
   HOME PRICING
   ============================================= */
.home-pricing {
    padding: 6rem 2rem;
    background: var(--bg-alt);
}
.home-pricing__container { max-width: 860px; margin: 0 auto; }
.home-pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.home-pricing__card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.home-pricing__card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.home-pricing__card--featured {
    border-color: rgba(0,191,165,0.2);
    box-shadow: 0 4px 20px var(--teal-bg);
}
.home-pricing__popular {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    padding: 0.3rem 1rem; background: var(--teal); color: #fff;
    font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; border-radius: var(--r-full);
}
.home-pricing__name { font-family: var(--font); font-size: 1.125rem; font-weight: 800; margin-bottom: 0.25rem; }
.home-pricing__desc { font-size: 0.8125rem; color: var(--text-2); line-height: 1.6; margin-bottom: 1rem; }
.home-pricing__price {
    display: flex; align-items: baseline; gap: 0.25rem;
    margin-bottom: 1.5rem; padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.home-pricing__amount { font-family: var(--font); font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; }
.home-pricing__currency { font-size: 1rem; font-weight: 600; color: var(--text-2); }
.home-pricing__period { font-size: 0.75rem; color: var(--text-3); margin-left: 0.25rem; }
.home-pricing__features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; flex: 1; }
.home-pricing__features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--text-2); }
.home-pricing__features svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.home-pricing__vat { text-align: center; margin-top: 1.25rem; font-size: 0.75rem; color: var(--text-3); }
.home-pricing__cta-link {
    text-align: center; margin-top: 1.5rem;
}
.home-pricing__cta-link a {
    font-size: 0.875rem; font-weight: 600; color: var(--teal);
    transition: color 0.2s;
}
.home-pricing__cta-link a:hover { color: var(--teal-2); }

/* =============================================
   SHOWCASE MOCKUP — below hero
   ============================================= */
.showcase-mockup { padding: 6rem 2rem; background: var(--bg); }
.showcase-mockup__container { max-width: 1100px; margin: 0 auto; }
.showcase-mockup__header { max-width: 480px; margin-bottom: 3rem; }

.showcase-mockup__frame {
    border-radius: 16px;
    border: 1px solid var(--border-2);
    background: var(--bg-card);
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.10), 0 40px 100px -20px rgba(0,0,0,0.06);
    overflow: hidden;
}
.showcase-mockup__bar {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 20px;
    background: #FAFAF7;
    border-bottom: 1px solid var(--border);
}
.showcase-mockup__dot { width: 10px; height: 10px; border-radius: 50%; }
.showcase-mockup__dot--r { background: #FF5F57; }
.showcase-mockup__dot--y { background: #FFBD2E; }
.showcase-mockup__dot--g { background: #28C840; }
.showcase-mockup__url {
    flex: 1; text-align: center;
    font-size: 0.6875rem; color: var(--text-3); font-weight: 500;
    background: var(--bg-alt); border-radius: var(--r-xs); padding: 5px 16px;
    margin: 0 48px;
}

.showcase-mockup__body { display: grid; grid-template-columns: 200px 1fr; min-height: 350px; }

/* Sidebar */
.showcase-mockup__sidebar {
    background: var(--bg-dark); padding: 1.25rem 0;
    display: flex; flex-direction: column;
}
.showcase-mockup__sidebar-logo {
    padding: 0 1rem 1rem;
    display: flex; align-items: center; gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 0.75rem;
    font-family: var(--font); font-size: 0.875rem; font-weight: 700; color: var(--text-inv);
}
.showcase-mockup__sidebar-logo-dot {
    width: 24px; height: 24px; border-radius: 6px;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.625rem; font-weight: 800; color: #fff;
}
.showcase-mockup__sidebar-nav { padding: 0 0.625rem; display: flex; flex-direction: column; gap: 2px; }
.showcase-mockup__sidebar-item {
    display: flex; align-items: center; gap: 0.625rem;
    padding: 0.5rem 0.75rem; border-radius: var(--r-xs);
    font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.35);
}
.showcase-mockup__sidebar-item svg { width: 15px; height: 15px; opacity: 0.4; }
.showcase-mockup__sidebar-item--active { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.9); }
.showcase-mockup__sidebar-item--active svg { opacity: 1; color: var(--teal); }
.showcase-mockup__sidebar-badge {
    margin-left: auto; font-size: 0.5625rem; font-weight: 700;
    padding: 1px 6px; border-radius: var(--r-full);
    background: var(--fire); color: #fff;
}

/* Main */
.showcase-mockup__main { padding: 1.5rem; background: var(--bg); }
.showcase-mockup__main-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.showcase-mockup__main-title { font-family: var(--font); font-size: 1.125rem; font-weight: 700; }
.showcase-mockup__main-live {
    display: flex; align-items: center; gap: 0.375rem;
    font-size: 0.5625rem; font-weight: 600; color: var(--green);
    text-transform: uppercase; letter-spacing: 0.08em; margin-left: auto;
}
.showcase-mockup__main-live span {
    width: 6px; height: 6px; border-radius: 50%; background: var(--green);
    animation: livePulse 2s ease infinite;
}

/* Stats */
.showcase-mockup__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.875rem; margin-bottom: 1.25rem; }
.showcase-mockup__stat {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-sm); padding: 0.875rem;
}
.showcase-mockup__stat-label { font-size: 0.625rem; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.showcase-mockup__stat-value { font-family: var(--font); font-size: 1.375rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.showcase-mockup__stat-value--teal { color: var(--teal); }
.showcase-mockup__stat-value--green { color: var(--green); }

/* Table */
.showcase-mockup__table {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r-sm); overflow: hidden;
}
.showcase-mockup__table-head {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    padding: 0.625rem 1rem; font-size: 0.625rem; font-weight: 600; color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
}
.showcase-mockup__table-row {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    padding: 0.75rem 1rem; font-size: 0.75rem; align-items: center;
    border-bottom: 1px solid var(--border);
}
.showcase-mockup__table-row:last-child { border-bottom: none; }
.showcase-mockup__table-name { font-weight: 600; }
.showcase-mockup__badge { font-size: 0.625rem; font-weight: 700; padding: 3px 8px; border-radius: var(--r-full); width: fit-content; }
.showcase-mockup__badge--ok { background: var(--green-bg); color: var(--green); }
.showcase-mockup__badge--warn { background: rgba(245,166,35,0.1); color: var(--amber); }

/* =============================================
   LAW BANNER
   ============================================= */
.law-banner { padding: 2.5rem 2rem; }
.law-banner__inner {
    max-width: 960px; margin: 0 auto; border-radius: var(--r);
    background: linear-gradient(135deg, rgba(255,107,53,0.04), rgba(255,181,71,0.05));
    border: 1.5px solid rgba(255,107,53,0.10);
    padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1.25rem;
}
.law-banner__icon { width: 48px; height: 48px; border-radius: 13px; background: var(--fire-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.law-banner__icon svg { width: 22px; height: 22px; color: var(--fire); }
.law-banner__content h3 { font-family: var(--font); font-size: 1rem; font-weight: 700; margin-bottom: 0.125rem; }
.law-banner__content p { font-size: 0.8125rem; color: var(--text-2); line-height: 1.6; }
.law-banner__date { margin-left: auto; text-align: center; flex-shrink: 0; padding: 0.625rem 1.25rem; border-radius: var(--r-sm); background: var(--fire-bg); border: 1px solid rgba(255,107,53,0.08); }
.law-banner__date-day { font-family: var(--font); font-size: 1.25rem; font-weight: 800; color: var(--fire); line-height: 1.1; }
.law-banner__date-text { font-size: 0.625rem; font-weight: 600; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.04em; }

/* =============================================
   SECTION SHARED
   ============================================= */
.section { padding: 6rem 2rem; }
.section__container { max-width: 1100px; margin: 0 auto; }
.section__label { font-family: var(--font); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.625rem; }
.section__heading { font-family: var(--font); font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 0.875rem; }
.section__desc { font-size: 1rem; color: var(--text-2); line-height: 1.7; max-width: 480px; }
.section__header { margin-bottom: 3.5rem; }
.section__header--center { text-align: center; }
.section__header--center .section__desc { margin: 0 auto; }

/* =============================================
   FEATURE FLOW — Scroll-driven connected timeline
   ============================================= */
.flow { padding: 6rem 2rem; }
.flow__container { max-width: 800px; margin: 0 auto; }
.flow__header { margin-bottom: 4rem; }

.flow__track { position: relative; padding-left: 48px; }

/* Vertical connector line */
.flow__line {
    position: absolute;
    left: 19px; top: 0; bottom: 0;
    width: 2px;
    background: var(--border);
    border-radius: 1px;
}
.flow__line-fill {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--teal), var(--teal-2));
    border-radius: 1px;
    transform-origin: top;
    transform: scaleY(0);
}

/* Node (feature block) */
.flow__node {
    position: relative;
    padding: 0 0 4rem 0;
    opacity: 0;
}
.flow__node:last-child { padding-bottom: 0; }

/* Dot on the timeline */
.flow__dot {
    position: absolute;
    left: -48px;
    top: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--teal);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal);
    box-shadow: 0 0 0 4px var(--teal-bg), var(--sh-sm);
    z-index: 2;
    transform: scale(0);
}
.flow__dot svg { width: 18px; height: 18px; }
.flow__dot--fire { border-color: var(--fire); color: var(--fire); box-shadow: 0 0 0 4px var(--fire-bg), var(--sh-sm); }

/* Content */
.flow__num {
    display: inline-block;
    font-family: var(--font); font-size: 0.5625rem; font-weight: 800;
    color: var(--teal); letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.375rem; opacity: 0.5;
}
.flow__title {
    font-family: var(--font); font-size: 1.25rem; font-weight: 800;
    letter-spacing: -0.02em; margin-bottom: 0.5rem; line-height: 1.2;
}
.flow__desc {
    font-size: 0.875rem; color: var(--text-2); line-height: 1.7;
    margin-bottom: 1rem; max-width: 520px;
}
.flow__tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.flow__tag {
    display: inline-flex; align-items: center;
    font-size: 0.6875rem; font-weight: 500; color: var(--text-2);
    background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: var(--r-full); padding: 0.3rem 0.75rem;
}

/* =============================================
   STATS
   ============================================= */
.stats { padding: 4rem 2rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats__grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stats__item { position: relative; }
.stats__item::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--border); }
.stats__item:last-child::after { display: none; }
.stats__value { font-family: var(--font); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.03em; }
.stats__value span { color: var(--teal); }
.stats__label { font-size: 0.75rem; color: var(--text-3); margin-top: 0.25rem; }

/* =============================================
   STEPS
   ============================================= */
.steps { padding: 6rem 2rem; background: var(--bg-alt); }
.steps__container { max-width: 1100px; margin: 0 auto; }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps__grid::before { content: ''; position: absolute; top: 36px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem); height: 2px; background: linear-gradient(90deg, var(--teal), var(--teal-2), var(--teal)); opacity: 0.15; }
.step { text-align: center; }
.step__number {
    width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--border);
    background: var(--bg-card); display: flex; align-items: center; justify-content: center;
    font-family: var(--font); font-size: 1.375rem; font-weight: 800; color: var(--teal);
    margin: 0 auto 1.25rem; position: relative; z-index: 1;
    box-shadow: var(--sh-sm); transition: all 0.4s var(--ease-spring);
}
.step:hover .step__number { border-color: var(--teal); color: #fff; background: var(--teal); box-shadow: 0 0 0 6px var(--teal-bg), var(--sh-md); transform: scale(1.08); }
.step__title { font-family: var(--font); font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.375rem; }
.step__desc { font-size: 0.8125rem; color: var(--text-2); line-height: 1.7; max-width: 260px; margin: 0 auto; }

/* =============================================
   CTA
   ============================================= */
.cta { padding: 7rem 2rem; background: var(--bg-dark); text-align: center; position: relative; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 30% 50%, rgba(0,191,165,0.05), transparent 60%), radial-gradient(ellipse 40% 50% at 70% 50%, rgba(255,107,53,0.03), transparent 60%); pointer-events: none; }
.cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--teal-glow), transparent); }
.cta__container { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.cta__title { font-family: var(--font); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 1rem; color: var(--text-inv); }
.cta__desc { font-size: 1rem; color: rgba(250,249,246,0.4); line-height: 1.7; margin-bottom: 2.5rem; }
.cta__actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   PAGE HERO (sub-pages)
   ============================================= */
.page-hero { padding: 9rem 2rem 3.5rem; text-align: center; position: relative; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 55% at 50% 0%, var(--teal-bg), transparent 60%); pointer-events: none; }
.page-hero__container { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero__title { font-family: var(--font); font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 0.875rem; }
.page-hero__desc { font-size: 1rem; color: var(--text-2); line-height: 1.7; max-width: 460px; margin: 0 auto; }

/* =============================================
   FEATURES SHOWCASE (features.php)
   ============================================= */
.showcase { padding: 2.5rem 2rem; }
.showcase__container { max-width: 1100px; margin: 0 auto; }
.showcase__item { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.showcase__item:last-child { border-bottom: none; }
.showcase__item--reverse .showcase__content { order: 2; }
.showcase__item--reverse .showcase__visual { order: 1; }
.showcase__num { font-family: var(--font); font-size: 0.625rem; font-weight: 700; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.625rem; }
.showcase__title { font-family: var(--font); font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; line-height: 1.15; }
.showcase__desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.25rem; }
.showcase__list { display: flex; flex-direction: column; gap: 0.625rem; }
.showcase__list li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.8125rem; color: var(--text-2); }
.showcase__list svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.showcase__visual-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; overflow: hidden; box-shadow: var(--sh-sm); }

/* Mock elements */
.mock-metric { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-xs); padding: 0.875rem; }
.mock-metric__label { font-size: 0.625rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 0.25rem; }
.mock-metric__value { font-family: var(--font); font-size: 1.375rem; font-weight: 800; }
.mock-metric__value--green { color: var(--green); }
.mock-table { width: 100%; border: 1px solid var(--border); border-radius: var(--r-xs); overflow: hidden; background: var(--bg-card); }
.mock-table-row { display: flex; align-items: center; justify-content: space-between; padding: 0.625rem 0.875rem; border-bottom: 1px solid var(--border); font-size: 0.75rem; }
.mock-table-row:last-child { border-bottom: none; }
.mock-table-row__left { display: flex; align-items: center; gap: 0.625rem; }
.mock-table-row__icon { width: 28px; height: 28px; border-radius: 7px; background: var(--teal-bg); display: flex; align-items: center; justify-content: center; }
.mock-table-row__icon svg { width: 14px; height: 14px; color: var(--teal); }
.mock-table-row__name { font-weight: 600; }
.mock-badge { font-size: 0.625rem; font-weight: 700; padding: 2px 8px; border-radius: var(--r-full); }
.mock-badge--ok { background: var(--green-bg); color: var(--green); }
.mock-badge--warn { background: rgba(245,166,35,0.1); color: #b97a12; }

/* =============================================
   PRICING
   ============================================= */
.pricing { padding: 1.5rem 2rem 5rem; }
.pricing__container { max-width: 860px; margin: 0 auto; }
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.pricing__card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--r); padding: 2.25rem; position: relative; display: flex; flex-direction: column; transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease); }
.pricing__card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.pricing__card--featured { border-color: rgba(0,191,165,0.2); box-shadow: 0 4px 20px var(--teal-bg); }
.pricing__popular { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); padding: 0.3rem 1rem; background: var(--teal); color: #fff; font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--r-full); }
.pricing__name { font-family: var(--font); font-size: 1.125rem; font-weight: 800; margin-bottom: 0.375rem; }
.pricing__desc { font-size: 0.8125rem; color: var(--text-2); line-height: 1.6; margin-bottom: 1.25rem; }
.pricing__price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.125rem; }
.pricing__amount { font-family: var(--font); font-size: 2.75rem; font-weight: 800; letter-spacing: -0.04em; }
.pricing__currency { font-size: 1.125rem; font-weight: 600; color: var(--text-2); }
.pricing__period { font-size: 0.75rem; color: var(--text-3); margin-bottom: 1.75rem; }
.pricing__features { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.75rem; flex: 1; }
.pricing__features li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.8125rem; color: var(--text-2); }
.pricing__features svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.pricing__vat { text-align: center; margin-top: 1.5rem; font-size: 0.75rem; color: var(--text-3); }

/* Free Trial */
.free-trial { padding: 4rem 2rem; background: var(--bg); }
.free-trial__container {
    max-width: 720px; margin: 0 auto;
    background: linear-gradient(135deg, rgba(0,191,165,0.06) 0%, rgba(0,191,165,0.02) 100%);
    border: 1.5px solid rgba(0,191,165,0.2);
    border-radius: var(--r);
    padding: 3rem;
    text-align: center;
}
.free-trial__title { font-family: var(--font); font-size: 1.5rem; font-weight: 800; margin: 0.75rem 0 0.75rem; }
.free-trial__desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; max-width: 540px; margin: 0 auto 1.5rem; }
.free-trial__points {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem 1.5rem;
    max-width: 420px; margin: 0 auto 2rem; text-align: left;
}
.free-trial__points li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--text-2); font-weight: 500; }
.free-trial__points svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* FAQ */
.faq { padding: 5rem 2rem; background: var(--bg-alt); }
.faq__container { max-width: 640px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; color: var(--text); text-align: left; cursor: pointer; transition: color 0.2s; }
.faq__question:hover { color: var(--teal); }
.faq__icon { width: 18px; height: 18px; color: var(--text-3); transition: transform 0.4s var(--ease), color 0.3s; flex-shrink: 0; }
.faq__item--open .faq__icon { transform: rotate(45deg); color: var(--teal); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__item--open .faq__answer { max-height: 300px; }
.faq__answer p { padding-bottom: 1.25rem; font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }

/* Contact */
.contact { padding: 1.5rem 2rem 5rem; }
.contact__container { max-width: 1000px; margin: 0 auto; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-2); margin-bottom: 0.375rem; }
.form-group input, .form-group textarea { width: 100%; background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 0.75rem 1rem; font-family: var(--font-body); font-size: 0.9375rem; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-bg); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact__info-title { font-family: var(--font); font-size: 1.375rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact__info-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; margin-bottom: 2rem; }
.contact__info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__info-item { display: flex; gap: 0.875rem; align-items: flex-start; }
.contact__info-item-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--teal-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__info-item-icon svg { width: 18px; height: 18px; color: var(--teal); }
.contact__info-item h4 { font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.125rem; }
.contact__info-item p { font-size: 0.75rem; color: var(--text-2); }

/* Footer */
.footer { background: var(--bg-dark); color: var(--text-inv); padding: 0 0 2rem; }
.footer__container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.footer__marquee { padding: 0.875rem 0; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 2.5rem; }
.footer__marquee-track { display: flex; gap: 1.25rem; animation: marquee 16s linear infinite; width: max-content; font-family: var(--font); font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,0.04); }
.footer__marquee-track span { white-space: nowrap; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer__logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer__logo-img { width: 24px; height: 24px; border-radius: 6px; }
.footer__logo-text { font-family: var(--font); font-size: 1rem; font-weight: 800; }
.footer__tagline { font-size: 0.8125rem; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 240px; }
.footer__col h4 { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; }
.footer__col a { display: block; font-size: 0.8125rem; color: rgba(255,255,255,0.3); padding: 0.3rem 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--text-inv); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* =============================================
   CURSOR GLOW
   ============================================= */
.cursor-glow {
    position: fixed;
    width: 400px; height: 400px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    background: radial-gradient(circle, rgba(0,191,165,0.06) 0%, rgba(0,191,165,0.02) 30%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
    will-change: transform;
    mix-blend-mode: screen;
}
.cursor-glow.is-active { opacity: 1; }
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* =============================================
   LAW BANNER COUNTDOWN
   ============================================= */
.law-banner__countdown {
    margin-left: auto;
    display: flex; align-items: center; gap: 0.375rem;
    flex-shrink: 0;
}
.law-banner__countdown-item {
    display: flex; flex-direction: column; align-items: center;
    background: var(--fire-bg); border: 1px solid rgba(255,107,53,0.08);
    border-radius: var(--r-xs); padding: 0.5rem 0.625rem; min-width: 48px;
}
.law-banner__countdown-num {
    font-family: var(--font); font-size: 1.25rem; font-weight: 800;
    color: var(--fire); line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.law-banner__countdown-label {
    font-size: 0.5rem; font-weight: 600; color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.125rem;
}
.law-banner__countdown-sep {
    font-family: var(--font); font-size: 1rem; font-weight: 800;
    color: rgba(255,107,53,0.3); line-height: 1;
    margin-top: -0.5rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 6rem 2rem; }
.testimonials__container { max-width: 1100px; margin: 0 auto; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.75rem;
    transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
    position: relative;
}
.testimonial:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.testimonial__stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial__stars svg { width: 14px; height: 14px; color: var(--amber); }
.testimonial__text {
    font-size: 0.875rem; color: var(--text-2); line-height: 1.7;
    margin-bottom: 1.25rem; font-style: italic;
}
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial__avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font); font-size: 0.6875rem; font-weight: 800;
    color: #fff; flex-shrink: 0;
}
.testimonial__name { font-size: 0.8125rem; font-weight: 700; }
.testimonial__role { font-size: 0.6875rem; color: var(--text-3); }

/* =============================================
   CTA CANVAS
   ============================================= */
.cta__canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal="scale"].is-visible { transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .showcase-mockup__body { grid-template-columns: 1fr; }
    .showcase-mockup__sidebar { display: none; }
    .flow__container { max-width: 100%; }
    .showcase__item { grid-template-columns: 1fr; gap: 2rem; }
    .showcase__item--reverse .showcase__content, .showcase__item--reverse .showcase__visual { order: unset; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .hero__overlay-dash { bottom: 4.5rem; left: 1.5rem; min-width: 160px; padding: 0.75rem 0.875rem; }
    .hero__overlay-notifs { bottom: 4.5rem; right: 1.5rem; }
}

@media (max-width: 768px) {
    /* Hero */
    .hero { min-height: 100svh; }
    .hero__content { padding: 0 1.25rem; }
    .hero__title { font-size: clamp(2.25rem, 10vw, 3.25rem); margin-bottom: 1rem; }
    .hero__badge { margin-bottom: 1.25rem; font-size: 0.6875rem; }
    .hero__sub { font-size: 0.9375rem; margin-bottom: 2rem; max-width: 100%; }
    .hero__trust { flex-direction: column; gap: 0.5rem; }
    .hero__trust-item { font-size: 0.75rem; }
    .hero__overlay-dash { display: none; }
    .hero__overlay-notifs { display: none; }
    .hero__legend { bottom: 1rem; left: 1rem; gap: 0.625rem; }
    .hero__legend-item { font-size: 0.5rem; }
    .hero__live-counter { bottom: 1rem; right: 1rem; font-size: 0.625rem; }

    /* Sections general */
    .section__heading { font-size: clamp(1.5rem, 6vw, 2rem); }
    .section__desc { font-size: 0.875rem; }
    .section__label { font-size: 0.5625rem; }

    /* Showcase mockup */
    .showcase-mockup { padding: 3rem 1rem; }
    .showcase-mockup__header { margin-bottom: 2rem; }
    .showcase-mockup__frame { border-radius: var(--r-sm); }
    .showcase-mockup__stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .showcase-mockup__stat { padding: 0.875rem; }
    .showcase-mockup__stat-value { font-size: 1.5rem; }
    .showcase-mockup__table-head, .showcase-mockup__table-row { font-size: 0.6875rem; }

    /* Law banner */
    .law-banner { padding: 1.25rem 1rem; }
    .law-banner__inner { flex-direction: column; text-align: center; padding: 1.25rem; gap: 1rem; }
    .law-banner__date { margin-left: 0; }
    .law-banner__countdown { margin-left: 0; flex-wrap: wrap; justify-content: center; }
    .law-banner__countdown-item { min-width: 42px; padding: 0.375rem 0.5rem; }
    .law-banner__countdown-num { font-size: 1rem; }

    /* Flow */
    .flow { padding: 3rem 1rem; }
    .flow__header { margin-bottom: 2rem; }
    .flow__track { padding-left: 40px; }
    .flow__dot { left: -40px; width: 34px; height: 34px; }
    .flow__dot svg { width: 15px; height: 15px; }
    .flow__line { left: 16px; }
    .flow__title { font-size: 1.0625rem; }
    .flow__tags { gap: 0.25rem; }
    .flow__tag { font-size: 0.625rem; padding: 0.25rem 0.625rem; }

    /* Stats */
    .stats { padding: 3rem 1rem; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .stats__item::after { display: none; }
    .stats__value { font-size: clamp(1.75rem, 8vw, 2.5rem); }

    /* Testimonials */
    .testimonials { padding: 3rem 1rem; }
    .testimonials__grid { grid-template-columns: 1fr; gap: 1rem; }

    /* Steps */
    .steps { padding: 3rem 1rem; }
    .steps__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .steps__grid::before { display: none; }

    /* Home pricing */
    .home-pricing { padding: 3rem 1rem; }
    .home-pricing__grid { grid-template-columns: 1fr; gap: 1rem; }
    .home-pricing__card { padding: 1.5rem; }

    /* Pricing page */
    .pricing__grid { grid-template-columns: 1fr; }

    /* Free trial */
    .free-trial { padding: 3rem 1rem; }
    .free-trial__container { padding: 2rem 1.5rem; }
    .free-trial__title { font-size: 1.25rem; }
    .free-trial__points { grid-template-columns: 1fr; }

    /* Contact */
    .contact__grid { grid-template-columns: 1fr; gap: 2rem; }

    /* Page hero (features, pricing, contact pages) */
    .page-hero { padding: 6rem 1rem 2rem; }
    .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }

    /* CTA */
    .cta { padding: 3.5rem 1rem; }
    .cta__title { font-size: clamp(1.5rem, 6vw, 2rem); }
    .cta__desc { font-size: 0.875rem; }
    .cta__actions { flex-direction: column; gap: 0.75rem; }
    .cta__actions .btn { width: 100%; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer__brand { grid-column: 1 / -1; }
    .footer__bottom { flex-direction: column; gap: 0.375rem; text-align: center; }
    .footer__marquee-track { font-size: 1.125rem; }
}

@media (max-width: 480px) {
    /* Hero */
    .hero__content { padding: 0 1rem; }
    .hero__title { font-size: clamp(1.875rem, 9vw, 2.5rem); line-height: 1; }
    .hero__sub { font-size: 0.875rem; line-height: 1.6; }
    .hero__actions { flex-direction: column; gap: 0.625rem; }
    .hero__actions .btn { width: 100%; }
    .hero__actions .btn--lg { padding: 0.875rem 1.5rem; font-size: 0.9375rem; }
    .hero__badge { padding: 0.3rem 0.75rem 0.3rem 0.5rem; font-size: 0.625rem; }
    .hero__legend { display: none; }
    .hero__live-counter { left: 50%; right: auto; transform: translateX(-50%); bottom: 0.75rem; }

    /* Nav */
    .nav__container { padding: 0 1rem; }
    .nav__logo-text { font-size: 1rem; }
    .nav__mobile { padding: 5rem 1.5rem 1.5rem; }
    .nav__mobile-link { font-size: 1.25rem; padding: 1rem 0; }

    /* General section padding */
    .section__heading { font-size: clamp(1.25rem, 5.5vw, 1.75rem); }

    /* Showcase mockup */
    .showcase-mockup { padding: 2.5rem 0.75rem; }
    .showcase-mockup__main-header { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
    .showcase-mockup__url { margin: 0 8px; font-size: 0.5625rem; }
    .showcase-mockup__bar { padding: 10px 12px; }
    .showcase-mockup__dot { width: 8px; height: 8px; }
    .showcase-mockup__main { padding: 1rem; }
    .showcase-mockup__main-title { font-size: 0.9375rem; }
    .showcase-mockup__stat-label { font-size: 0.5rem; }
    .showcase-mockup__stat-value { font-size: 1.125rem; }
    .showcase-mockup__stat { padding: 0.625rem; }
    .showcase-mockup__table-head { font-size: 0.5rem; padding: 0.5rem 0.625rem; }
    .showcase-mockup__table-row { font-size: 0.625rem; padding: 0.5rem 0.625rem; }
    .showcase-mockup__table-name { font-size: 0.625rem; }
    .showcase-mockup__badge { font-size: 0.5rem; padding: 2px 6px; }

    /* Law banner */
    .law-banner__inner { padding: 1rem; }
    .law-banner h3 { font-size: 0.9375rem; }
    .law-banner p { font-size: 0.75rem; }
    .law-banner__countdown-item { min-width: 38px; }
    .law-banner__countdown-num { font-size: 0.875rem; }
    .law-banner__countdown-sep { font-size: 0.75rem; }

    /* Flow */
    .flow { padding: 2.5rem 0.75rem; }
    .flow__desc { font-size: 0.8125rem; }

    /* Stats */
    .stats { padding: 2.5rem 0.75rem; }
    .stats__label { font-size: 0.6875rem; }

    /* Testimonials */
    .testimonials { padding: 2.5rem 0.75rem; }
    .testimonial { padding: 1.25rem; }
    .testimonial__text { font-size: 0.8125rem; }

    /* Steps */
    .steps { padding: 2.5rem 0.75rem; }
    .step { padding: 1.5rem; }
    .step__number { width: 36px; height: 36px; font-size: 0.875rem; }

    /* Home pricing */
    .home-pricing { padding: 2.5rem 0.75rem; }
    .home-pricing__amount { font-size: 2rem; }
    .home-pricing__features li { font-size: 0.75rem; }

    /* CTA */
    .cta { padding: 3rem 0.75rem; }
    .cta__title { font-size: clamp(1.25rem, 5.5vw, 1.75rem); }

    /* Footer */
    .footer__container { padding: 0 1rem; }
    .footer__grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .footer__col h4 { margin-bottom: 0.5rem; }
    .footer__col a { font-size: 0.75rem; }
    .footer__bottom { font-size: 0.625rem; }
    .footer__tagline { font-size: 0.75rem; }
}
