@font-face {
    font-family: 'TT Hoves';
    src: local('TT Hoves Pro Trial Variable'),
         local('TTHovesProTrialVariable'),
         local('TT Hoves Pro'),
         local('TT Hoves'),
         url('../fonts/tthoves/TT-Hoves-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


:root {
    --teal: #539091;
    --teal-dark: #3d6b6c;
    --teal-light: #eaf4f4;
    --teal-mid: #b8d8d9;
    --blue: #0a5d9b;
    --blue-dark: #07426e;
    --blue-light: #e6f1fb;
    --orange: #f3b176;
    --orange-dark: #d4874a;
    --orange-light: #fdf3e9;
    --bone: #f7f5f0;
    --bone-dark: #ede9e0;
    --ink: #1a1f2e;
    --ink-mid: #3d4558;
    --ink-soft: #6b7385;
    --white: #ffffff;
    --danger: #b42318;
    --success: #2e7d32;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 3px rgba(10, 25, 50, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 25, 50, 0.10);
    --shadow-lg: 0 12px 48px rgba(10, 25, 50, 0.13);
    --font-body: 'TT Hoves', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'TT Hoves', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-w: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
    position: fixed;
    z-index: 200;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius-md);
    transform: translateY(-150%);
    transition: transform .2s ease;
}
.skip-link:focus {
    transform: translateY(0);
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: var(--teal-light);
    border: 1px solid var(--teal-mid);
    border-radius: var(--radius-pill);
    padding: 5px 14px;
}
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}
h1, h2 { font-family: var(--font-display); font-weight: 700; line-height: 1.18; color: var(--ink); }
h1 { font-size: clamp(2.35rem, 5.5vw, 4.15rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.35; }
em { font-style: italic; color: var(--teal); }

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(83, 144, 145, 0.12);
    transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    gap: 1rem;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    white-space: nowrap;
    text-decoration: none;
}
.nav-logo img {
    width: 142px;
    height: auto;
    max-height: 38px;
    object-fit: contain;
    display: block;
}
.footer-logo img {
    width: 150px;
    height: auto;
    max-height: 42px;
    object-fit: contain;
    filter: brightness(1.08);
}
.logo-image-link {
    overflow: hidden;
    max-height: 42px;
}
.nav-panel {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 2vw, 2.2rem);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(.9rem, 1.6vw, 1.6rem);
    list-style: none;
    font-size: 14px;
    color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    color: var(--ink);
    border: 1px solid var(--bone-dark);
    border-radius: 12px;
    background: rgba(255, 255, 255, .76);
    cursor: pointer;
}
.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}
nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.nav-toggle:focus-visible,
.nav-links a:focus-visible,
.nav-cta a:focus-visible,
.profile-tab:focus-visible,
.faq-q:focus-visible {
    outline: 3px solid rgba(83, 144, 145, .26);
    outline-offset: 3px;
}

.btn-ghost,
.btn-primary,
.btn-primary-lg,
.btn-outline-lg,
.btn-cta-wh,
.btn-cta-ghost,
.btn-demo {
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.22s;
}
.btn-ghost {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-mid);
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: none;
}
.btn-ghost:hover { background: var(--bone); border-color: var(--bone-dark); }
.btn-primary {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--teal);
    padding: 9px 20px;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(83, 144, 145, 0.30);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(83, 144, 145, 0.38); }
.btn-primary-lg {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: var(--teal);
    padding: 15px 32px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(83, 144, 145, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-lg:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(83, 144, 145, 0.42); }
.btn-outline-lg {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink-mid);
    background: transparent;
    padding: 14px 28px;
    border: 1.5px solid var(--bone-dark);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-lg:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

#hero {
    padding: 140px 0 80px;
    background: var(--bone);
    position: relative;
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(83, 144, 145, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(83, 144, 145, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-blob-1 { width: 500px; height: 500px; background: rgba(83, 144, 145, 0.18); top: -80px; right: -100px; }
.hero-blob-2 { width: 320px; height: 320px; background: rgba(243, 177, 118, 0.14); bottom: -60px; left: 10%; }
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-text .pre-tag { margin-bottom: 1.5rem; }
.hero-text h1 { margin-bottom: 1.4rem; }
.hero-text p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust {
    margin-top: 2.4rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 13px;
    color: var(--ink-soft);
    flex-wrap: wrap;
}
.trust-dot { display: flex; align-items: center; gap: 5px; }
.trust-dot::before { content: ''; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; display: block; }

.plans-page #hero {
    padding: 132px 0 72px;
}
.plans-page .hero-content {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
    text-align: center;
    gap: 2rem;
}
.plans-page .hero-text p {
    margin-left: auto;
    margin-right: auto;
    max-width: 660px;
}
.plans-page .hero-actions,
.plans-page .hero-trust {
    justify-content: center;
}
.plans-hero-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-top: 2.2rem;
    background: rgba(83, 144, 145, 0.16);
    border: 1px solid rgba(83, 144, 145, 0.16);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}
.plans-hero-strip span {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    padding: 1rem 1.1rem;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.45;
}
.plans-hero-strip strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    margin-bottom: 2px;
}

.hero-visual { position: relative; }
.hero-card,
.form-card,
.price-card,
.content-card {
    background: var(--white);
    border: 1px solid rgba(83, 144, 145, 0.15);
    border-radius: var(--radius-xl);
    padding: 1.4rem;
    box-shadow: var(--shadow-lg);
}
.hc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bone-dark);
    gap: 1rem;
}
.hc-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.hc-sub { font-size: 11px; color: var(--ink-soft); }
.hc-badge,
.price-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-orange { background: var(--orange-light); color: var(--orange-dark); }
.badge-teal { background: var(--teal-light); color: var(--teal-dark); }
.metric-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; margin-bottom: 1.2rem; }
.metric-box { background: var(--bone); border-radius: var(--radius-md); padding: 0.9rem; text-align: center; }
.metric-val { font-size: 1.35rem; font-weight: 600; color: var(--ink); font-family: var(--font-display); line-height: 1.1; }
.metric-val.teal { color: var(--teal); }
.metric-val.blue { color: var(--blue); }
.metric-val.orange { color: var(--orange-dark); }
.metric-lbl { font-size: 11px; color: var(--ink-soft); margin-top: 2px; }
.hc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.hc-item { display: flex; align-items: center; justify-content: space-between; font-size: 13px; padding: 9px 12px; background: var(--bone); border-radius: var(--radius-md); gap: 1rem; }
.hc-item-left { display: flex; align-items: center; gap: 8px; }
.hc-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.hc-dot.teal { background: var(--teal); }
.hc-dot.blue { background: var(--blue); }
.hc-dot.orange { background: var(--orange); }
.hc-dot.gray { background: #c4c7ce; }
.hc-item-label { color: var(--ink-mid); font-weight: 600; }
.float-notification,
.float-notification-2 {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    animation: floatUp 3s ease-in-out infinite alternate;
}
.float-notification { bottom: -20px; left: -30px; border: 1px solid rgba(83, 144, 145, 0.2); padding: 12px 16px; }
.float-notification-2 { top: -18px; right: -24px; border: 1px solid rgba(243, 177, 118, 0.3); padding: 10px 14px; animation-duration: 3.5s; animation-direction: alternate-reverse; }
.fn-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.fn-icon.green { background: #e8f5e9; }
.fn-icon.orange { background: var(--orange-light); }
@keyframes floatUp { from { transform: translateY(0); } to { transform: translateY(-7px); } }

.trust-bar { padding: 2.4rem 0; border-top: 1px solid var(--bone-dark); border-bottom: 1px solid var(--bone-dark); background: var(--white); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-bar-label { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.trust-logo-item { font-size: 13px; font-weight: 700; color: var(--ink-soft); background: var(--bone); border: 1px solid var(--bone-dark); border-radius: var(--radius-pill); padding: 7px 14px; white-space: nowrap; }

.section { padding: 90px 0; }
.section.white { background: var(--white); }
.section.bone { background: var(--bone); }
.section.dark { background: var(--ink); color: rgba(255,255,255,0.78); }
.section.dark h2,
.section.dark h3 { color: var(--white); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--ink-soft); font-size: 17px; }
.section.dark .section-header p { color: rgba(255,255,255,0.62); }

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.problem-left p { color: var(--ink-soft); font-size: 16px; margin-top: 1rem; }
.highlight-text { font-size: 17px; font-weight: 500; color: var(--ink); border-left: 3px solid var(--orange); padding-left: 1rem; margin: 1.6rem 0; font-family: var(--font-display); font-style: italic; line-height: 1.5; }
.card-list { display: flex; flex-direction: column; gap: 12px; }
.problem-card,
.value-card,
.feature-card,
.demo-card,
.faq-item,
.compare-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--bone-dark);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.problem-card { padding: 1.1rem 1.3rem; display: flex; align-items: flex-start; gap: 14px; }
.problem-card:hover,
.value-card:hover,
.feature-card:hover,
.price-card:hover,
.demo-card:hover { border-color: rgba(83, 144, 145, 0.3); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pc-icon,
.icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    background: linear-gradient(145deg, rgba(234, 244, 244, 0.98), rgba(225, 239, 239, 0.82));
    border: 1px solid rgba(83, 144, 145, 0.08);
    color: var(--teal-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 8px 18px rgba(25, 31, 45, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pc-icon.orange,
.icon.orange {
    background: linear-gradient(145deg, rgba(253, 243, 233, 0.98), rgba(248, 235, 221, 0.82));
    border-color: rgba(212, 135, 74, 0.10);
    color: var(--teal-dark);
}
.pc-icon.blue,
.icon.blue {
    background: linear-gradient(145deg, rgba(234, 244, 244, 0.98), rgba(225, 239, 239, 0.82));
    border-color: rgba(83, 144, 145, 0.08);
    color: var(--teal-dark);
}
.problem-card:hover .pc-icon {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 12px 24px rgba(25, 31, 45, 0.08);
}
.pc-icon svg,
.pc-icon .pc-icon-svg {
    width: 34px;
    height: 34px;
    display: block;
    overflow: visible;
    color: currentColor;
}
.pc-icon svg *,
.pc-icon .pc-icon-svg * {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.9 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    vector-effect: non-scaling-stroke;
}

.fc-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    margin-bottom: 1rem;
    border: 1px solid rgba(83, 144, 145, 0.08);
    border-radius: 15px;
    color: var(--teal-dark);
    background: linear-gradient(145deg, rgba(234, 244, 244, 0.98), rgba(225, 239, 239, 0.82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 8px 18px rgba(25, 31, 45, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.fc-icon--warm {
    background: linear-gradient(145deg, rgba(253, 243, 233, 0.98), rgba(248, 235, 221, 0.82));
    border-color: rgba(212, 135, 74, 0.10);
}
.fc-icon svg,
.fc-icon .fc-icon-svg {
    width: 34px;
    height: 34px;
    display: block;
    overflow: visible;
    color: currentColor;
}
.fc-icon svg *,
.fc-icon .fc-icon-svg * {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.9 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    vector-effect: non-scaling-stroke;
}
.pc-title { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.pc-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value-card,
.feature-card,
.demo-card,
.compare-card { padding: 1.6rem; }
.feature-card {
    min-height: 224px;
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(25, 31, 45, 0.035);
}
.feature-card:hover .fc-icon {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 12px 24px rgba(25, 31, 45, 0.08);
}
.feature-card h3 {
    max-width: 13rem;
    letter-spacing: -0.01em;
}
.value-card p,
.feature-card p,
.demo-card p,
.compare-card p { font-size: 14px; color: var(--ink-soft); margin-top: 0.6rem; line-height: 1.65; }
.feature-card p {
    margin-top: 0.75rem;
    line-height: 1.72;
}
.value-card .num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--teal-mid); line-height: 1; margin-bottom: 0.6rem; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; position: relative; }
.step { text-align: center; padding: 0 0.5rem; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: var(--white); font-family: var(--font-display); font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; box-shadow: 0 4px 14px rgba(83, 144, 145, 0.38); }
.step p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-top: 0.5rem; }

.compare-table { display: grid; gap: 1px; background: var(--bone-dark); border: 1px solid var(--bone-dark); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.compare-cell { background: var(--white); padding: 1rem; font-size: 14px; color: var(--ink-soft); }
.compare-head .compare-cell { font-weight: 800; color: var(--ink); background: var(--bone); }
.compare-cell.good { color: var(--teal-dark); font-weight: 700; }

.profiles-tabs { display: flex; gap: 8px; margin-bottom: 2.5rem; flex-wrap: wrap; justify-content: center; }
.profile-tab { font-size: 14px; font-weight: 700; padding: 9px 20px; border: 1.5px solid var(--bone-dark); border-radius: var(--radius-pill); cursor: pointer; background: var(--white); color: var(--ink-soft); transition: all 0.2s; font-family: var(--font-body); }
.profile-tab.active { background: var(--teal); color: var(--white); border-color: var(--teal); box-shadow: 0 2px 10px rgba(83,144,145,.32); }
.profile-tab:hover:not(.active) { border-color: var(--teal); color: var(--teal); }
.profile-content { display: none; }
.profile-content.active { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.profile-text h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: .8rem; }
.profile-text p { color: var(--ink-soft); font-size: 15px; margin-bottom: 1.4rem; line-height: 1.7; }
.profile-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.profile-benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-mid); }
.profile-benefits li::before { content: '✓'; color: var(--teal); font-weight: 800; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.profile-visual { background: var(--bone); border-radius: var(--radius-xl); padding: 2rem; border: 1px solid var(--bone-dark); min-height: 260px; display: flex; flex-direction: column; justify-content: center; }
.pv-stat { display: flex; align-items: center; justify-content: space-between; padding: .9rem; background: var(--white); border-radius: var(--radius-md); margin-bottom: 10px; border: 1px solid rgba(83,144,145,.10); gap: 1rem; }
.pv-stat-label { font-size: 13px; color: var(--ink-soft); }
.pv-stat-val { font-size: 14px; font-weight: 800; color: var(--ink); }


.plan-selector-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--bone-dark);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}
.plan-selector-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: end;
    padding: .35rem .35rem 1.35rem;
}
.plan-selector-heading h3 {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    color: var(--ink);
    margin-top: .35rem;
}
.plan-selector-heading p {
    max-width: 650px;
    margin-top: .55rem;
    color: var(--ink-soft);
    line-height: 1.65;
}
.plan-selector-summary {
    min-width: 180px;
    padding: .85rem 1rem;
    border-radius: var(--radius-lg);
    background: var(--teal-light);
    border: 1px solid rgba(83, 144, 145, .16);
    text-align: right;
}
.plan-selector-summary span {
    display: block;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.plan-selector-summary strong {
    display: block;
    margin-top: .2rem;
    color: var(--teal-dark);
    font-family: var(--font-display);
    font-size: 1.15rem;
}
.plan-range-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .65rem;
    padding: .35rem;
    border-radius: var(--radius-lg);
    background: var(--bone);
    border: 1px solid var(--bone-dark);
}
.plan-range-tab {
    display: grid;
    place-items: center;
    min-height: 68px;
    padding: .7rem .65rem;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--ink-soft);
    background: transparent;
    text-align: center;
    transition: color .2s, background .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.plan-range-tab span {
    font-size: 14px;
    font-weight: 800;
    color: inherit;
}
.plan-range-tab small {
    margin-top: 2px;
    font-size: 11px;
    color: inherit;
    opacity: .78;
}
.plan-range-tab:hover {
    color: var(--teal-dark);
    border-color: rgba(83, 144, 145, .18);
    background: rgba(255, 255, 255, .72);
}
.plan-range-tab.is-active {
    color: var(--white);
    background: var(--teal);
    border-color: var(--teal);
    box-shadow: 0 7px 18px rgba(83, 144, 145, .25);
    transform: translateY(-1px);
}
.plan-range-tab:focus-visible {
    outline: 3px solid rgba(83, 144, 145, .24);
    outline-offset: 2px;
}
.plan-panels {
    margin-top: 1rem;
}
.plan-recommendation-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    overflow: hidden;
    border: 1px solid rgba(83, 144, 145, .22);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.plan-recommendation-card[hidden] {
    display: none !important;
}

.plan-recommendation-card.is-active {
    animation: planPanelIn .28s ease;
}
@keyframes planPanelIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.plan-recommendation-main {
    padding: 2rem;
}
.plan-recommendation-side {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(234, 244, 244, .92), rgba(247, 246, 241, .96));
    border-left: 1px solid rgba(83, 144, 145, .15);
}
.plan-recommendation-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .8rem;
}
.plan-capacity {
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}
.plan-recommendation-main h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
}
.plan-price-row {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    flex-wrap: wrap;
    margin: .7rem 0 1rem;
}
.plan-price-row .price-amount {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}
.plan-unit-cost {
    display: grid;
    gap: .15rem;
    padding-left: 1.35rem;
    border-left: 1px solid var(--bone-dark);
}
.plan-unit-cost span {
    color: var(--teal-dark);
    font-size: 1.05rem;
    font-weight: 800;
}
.plan-unit-cost small {
    max-width: 190px;
    color: var(--ink-soft);
    font-size: 11.5px;
    line-height: 1.45;
}
.plan-recommendation-desc {
    max-width: 620px;
    color: var(--ink-soft);
    line-height: 1.7;
}
.plan-recommendation-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}
.plan-side-label {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.plan-benefit-list {
    display: grid;
    gap: .8rem;
    margin-top: 1rem;
    list-style: none;
}
.plan-benefit-list li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--ink-mid);
    font-size: 13.5px;
    line-height: 1.55;
}
.plan-benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal-dark);
    font-weight: 900;
}
.plan-side-note {
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(83, 144, 145, .16);
    color: var(--ink-soft);
    font-size: 12.5px;
    line-height: 1.6;
}
.plan-comparison {
    margin-top: 1rem;
    border: 1px solid var(--bone-dark);
    border-radius: var(--radius-lg);
    background: var(--white);
    overflow: hidden;
}
.plan-comparison summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
    list-style: none;
}
.plan-comparison summary::-webkit-details-marker { display: none; }
.plan-comparison summary::after {
    content: '+';
    color: var(--teal-dark);
    font-size: 1.25rem;
    transition: transform .2s;
}
.plan-comparison[open] summary::after { transform: rotate(45deg); }
.plan-comparison summary small {
    margin-left: auto;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 500;
}
.plan-comparison-table-wrap {
    overflow-x: auto;
    border-top: 1px solid var(--bone-dark);
}
.plan-comparison-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}
.plan-comparison-table th,
.plan-comparison-table td {
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--bone-dark);
    color: var(--ink-soft);
    font-size: 13px;
    text-align: left;
}
.plan-comparison-table thead th,
.plan-comparison-table tbody th {
    color: var(--ink);
    font-weight: 800;
}
.plan-comparison-table tbody tr:last-child th,
.plan-comparison-table tbody tr:last-child td { border-bottom: 0; }

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.15rem; align-items: stretch; }
.price-card { padding: 1.65rem; box-shadow: var(--shadow-sm); position: relative; transition: all .22s; display: flex; flex-direction: column; }
.price-card.is-featured,
.price-card.is-selected { border-color: var(--teal); box-shadow: var(--shadow-md); }
.price-card h3 { margin-bottom: .3rem; }
.price-range { color: var(--ink-soft); font-size: 13px; min-height: 42px; }
.price-amount { font-family: var(--font-display); font-size: 2.4rem; color: var(--ink); margin: 1rem 0 .4rem; line-height: 1; }
.price-amount small { font-family: var(--font-body); font-size: .85rem; color: var(--ink-soft); }
.price-cost { color: var(--teal-dark); font-weight: 800; font-size: 13px; margin-bottom: 1rem; }
.price-desc { color: var(--ink-soft); font-size: 13.5px; min-height: 82px; margin-bottom: 1rem; }
.price-actions { margin-top: auto; padding-top: 1.2rem; display: grid; gap: .7rem; }
.guarantee-card { background: linear-gradient(135deg, var(--teal-dark), var(--blue-dark)); color: rgba(255,255,255,.8); border-radius: var(--radius-xl); padding: 2rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; margin-top: 2rem; box-shadow: var(--shadow-md); }
.guarantee-card h3 { color: var(--white); font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; }
.guarantee-card p { margin-top: .6rem; max-width: 720px; }
.guarantee-seal { width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center; text-align: center; color: var(--white); font-weight: 800; line-height: 1.2; }

.form-card h2 { font-size: 1.65rem; margin-bottom: .7rem; }
.form-card p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.form { display: grid; gap: 1rem; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: 13px; font-weight: 800; color: var(--ink-mid); }
.field input,
.field select,
.field textarea { width: 100%; border: 1px solid var(--bone-dark); background: var(--white); color: var(--ink); border-radius: var(--radius-md); padding: 12px 13px; font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(83,144,145,.12); }
.status { min-height: 22px; font-size: 13px; font-weight: 700; }
.status.is-success { color: var(--success); }
.status.is-error { color: var(--danger); }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 940px; margin: 0 auto; }
.faq-item { overflow: hidden; }
.faq-q { width: 100%; padding: 1.1rem 1.4rem; font-family: var(--font-body); font-size: 14px; font-weight: 800; color: var(--ink); text-align: left; border: 0; background: transparent; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; user-select: none; transition: background .15s; }
.faq-q:hover { background: var(--bone); }
.faq-chevron { flex-shrink: 0; color: var(--teal); transition: transform .25s; font-size: 16px; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; transition: max-height .3s ease, padding .3s ease; padding: 0 1.4rem; }
.faq-item.open .faq-a { max-height: 360px; padding: 0 1.4rem 1.2rem; }

.demo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 780px; margin: 0 auto; }
.demo-card { background: var(--bone); text-align: center; }
.demo-credential { background: var(--white); border-radius: var(--radius-md); padding: .7rem 1rem; border: 1px solid var(--bone-dark); font-size: 12px; color: var(--ink-soft); margin-bottom: 10px; text-align: left; }
.demo-credential strong { color: var(--ink); font-weight: 800; }
.btn-demo { display: block; width: 100%; padding: 11px; background: var(--teal); color: var(--white); border: none; border-radius: var(--radius-md); font-size: 14px; font-weight: 800; margin-top: 1rem; }
.btn-demo:hover { background: var(--teal-dark); }
.btn-demo.outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-demo.outline:hover { background: var(--blue-light); }

#cta-final { padding: 100px 0; background: linear-gradient(135deg, var(--teal-dark) 0%, var(--blue-dark) 100%); position: relative; overflow: hidden; text-align: center; }
#cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), transparent 28%), radial-gradient(circle at 80% 80%, rgba(243,177,118,.18), transparent 28%); pointer-events: none; }
.cta-final-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
#cta-final .tag { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.85); }
#cta-final h2 { color: var(--white); margin: 1rem 0; }
#cta-final h2 em { color: var(--orange); }
#cta-final p { color: rgba(255,255,255,.72); font-size: 17px; margin-bottom: 2.4rem; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-cta-wh { font-size: 16px; font-weight: 800; color: var(--teal-dark); background: var(--white); padding: 15px 32px; border: none; border-radius: var(--radius-lg); box-shadow: 0 4px 20px rgba(0,0,0,.25); display: inline-flex; align-items: center; gap: 8px; }
.btn-cta-wh:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.32); }
.btn-cta-ghost { font-size: 16px; font-weight: 700; color: rgba(255,255,255,.86); background: rgba(255,255,255,.10); padding: 14px 28px; border: 1.5px solid rgba(255,255,255,.25); border-radius: var(--radius-lg); display: inline-flex; align-items: center; gap: 8px; }
.btn-cta-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.40); }
.cta-micro { margin-top: 1.4rem; font-size: 13px; color: rgba(255,255,255,.48); }

footer { background: var(--ink); padding: 4rem 0 2rem; color: rgba(255,255,255,.55); font-size: 13.5px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a:hover { color: rgba(255,255,255,.88); }
.footer-note { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.2rem; margin-top: 1.5rem; font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.6; }
.footer-note a { color: rgba(255,255,255,.58); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.3); gap: 1rem; }
.footer-legal-links { display: flex; align-items: center; justify-content: flex-end; gap: 10px 14px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,.48); transition: color .2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,.88); }
.footer-legal-links span { color: rgba(255,255,255,.3); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


@media (max-width: 980px) {
    .plan-selector-heading { grid-template-columns: 1fr; gap: 1rem; }
    .plan-selector-summary { text-align: left; }
    .plan-range-tabs {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        padding-bottom: .55rem;
    }
    .plan-range-tab {
        flex: 0 0 150px;
        scroll-snap-align: start;
    }
    .plan-recommendation-card { grid-template-columns: 1fr; }
    .plan-recommendation-side {
        border-left: 0;
        border-top: 1px solid rgba(83, 144, 145, .15);
    }
}
@media (max-width: 720px) {
    .plan-selector-shell { padding: .85rem; }
    .plan-selector-heading { padding: .25rem .25rem 1rem; }
    .plan-recommendation-main,
    .plan-recommendation-side { padding: 1.35rem; }
    .plan-recommendation-topline { align-items: flex-start; flex-direction: column; }
    .plan-capacity { text-align: left; }
    .plan-price-row { align-items: flex-start; flex-direction: column; gap: .8rem; }
    .plan-unit-cost { padding-left: 0; padding-top: .8rem; border-left: 0; border-top: 1px solid var(--bone-dark); }
    .plan-recommendation-actions { display: grid; grid-template-columns: 1fr; }
    .plan-comparison summary { align-items: flex-start; }
    .plan-comparison summary small { display: none; }
}

@media (max-width: 980px) {
    .hero-content, .problem-grid, .profile-content.active { grid-template-columns: 1fr; }
    .plans-hero-strip { grid-template-columns: 1fr 1fr; }
    .float-notification, .float-notification-2 { display: none; }
    .grid-4, .price-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .guarantee-card { grid-template-columns: 1fr; }

    .nav-inner {
        position: relative;
        height: 64px;
        padding: 0 1.25rem;
    }
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }
    .nav-panel {
        position: absolute;
        top: calc(100% + 1px);
        right: 1rem;
        left: 1rem;
        display: none;
        max-height: calc(100vh - 86px);
        overflow-y: auto;
        padding: .85rem;
        border: 1px solid rgba(83, 144, 145, .16);
        border-radius: 18px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 22px 55px rgba(26, 31, 46, .16);
        backdrop-filter: blur(20px);
    }
    nav.is-open .nav-panel {
        display: grid;
        gap: .75rem;
    }
    .nav-links {
        display: grid;
        gap: 2px;
    }
    .nav-links a {
        display: block;
        min-height: 44px;
        padding: 11px 12px;
        border-radius: 10px;
    }
    .nav-links a:hover {
        background: var(--bone);
    }
    .nav-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .65rem;
        padding-top: .75rem;
        border-top: 1px solid var(--bone-dark);
    }
    .nav-cta .btn-primary,
    .nav-cta .btn-ghost {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 720px) {
    .nav-logo img { width: 124px; max-height: 34px; }
    .feature-card { min-height: 0; }
    .footer-logo img { width: 138px; max-height: 38px; }
    .plans-hero-strip { grid-template-columns: 1fr; }
    .btn-primary-lg, .btn-outline-lg, .btn-cta-wh, .btn-cta-ghost { width: 100%; justify-content: center; }
    #hero { padding-top: 104px; }
    h1 { font-size: 2.4rem; }
    .metric-row, .grid-4, .steps-grid, .price-grid, .demo-cards, .footer-grid, .row { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-legal-links { justify-content: flex-start; }
    .container { padding: 0 1.2rem; }
    .section { padding: 70px 0; }

    .compare-table {
        gap: .8rem;
        overflow: visible;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .compare-row {
        grid-template-columns: 1fr;
        gap: 0;
        overflow: hidden;
        border: 1px solid var(--bone-dark);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }
    .compare-head {
        display: none;
    }
    .compare-cell {
        display: grid;
        grid-template-columns: minmax(108px, .7fr) minmax(0, 1.3fr);
        gap: .8rem;
        align-items: start;
        padding: .85rem 1rem;
        border-bottom: 1px solid var(--bone-dark);
    }
    .compare-cell:last-child {
        border-bottom: 0;
    }
    .compare-cell::before {
        content: attr(data-label);
        color: var(--ink);
        font-size: 12px;
        font-weight: 800;
    }

    .profiles-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-right: -1.2rem;
        margin-left: -1.2rem;
        padding: 2px 1.2rem .7rem;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }
    .profile-tab {
        flex: 0 0 auto;
        min-height: 44px;
        scroll-snap-align: start;
    }
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(46,125,50,.12);
}

.product-showcase {
    overflow: hidden;
}
.product-showcase-grid,
.owner-showcase-grid {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(83,144,145,.14);
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 8%, rgba(83,144,145,.13), transparent 30%),
        radial-gradient(circle at 92% 80%, rgba(243,177,118,.12), transparent 34%),
        linear-gradient(135deg, #fff 0%, #fbfaf6 100%);
    box-shadow: 0 24px 70px rgba(25,31,45,.08);
}
.product-showcase-grid {
    grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
    padding: 3.2rem 3rem 2.3rem;
}
.product-showcase-copy,
.owner-showcase-copy {
    position: relative;
    z-index: 2;
}
.product-showcase-copy h2,
.owner-showcase-copy h2 {
    margin-bottom: 1.1rem;
}
.product-showcase-copy p,
.owner-showcase-copy p {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.72;
}
.product-points {
    display: grid;
    gap: .7rem;
    margin-top: 1.6rem;
}
.product-points span {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--ink-mid);
    font-size: 14px;
    font-weight: 800;
}
.product-points span::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(83,144,145,.12);
    flex: 0 0 auto;
}
.product-showcase-media {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 390px;
}
.product-showcase-media img {
    width: min(880px, 134%);
    max-width: none;
    height: auto;
    transform: translateX(2%);
    filter: drop-shadow(0 26px 42px rgba(25,31,45,.18));
}

.owner-showcase-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    padding: 2.8rem 3rem;
}
.owner-showcase-media {
    position: relative;
    z-index: 1;
    min-height: 470px;
    display: grid;
    place-items: center;
}
.owner-showcase-media::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 230px;
    left: 5%;
    bottom: 5%;
    border-radius: 50%;
    background: rgba(83,144,145,.18);
    filter: blur(36px);
}
.owner-showcase-media img {
    position: relative;
    z-index: 1;
    width: min(700px, 128%);
    max-width: none;
    height: auto;
    transform: translateX(-2%);
    filter: drop-shadow(0 30px 50px rgba(25,31,45,.22));
}
.owner-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin: 1.6rem 0 1.7rem;
}
.owner-metrics div {
    padding: .9rem;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(83,144,145,.14);
    border-radius: var(--radius-lg);
}
.owner-metrics strong,
.owner-metrics span {
    display: block;
}
.owner-metrics strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 850;
}
.owner-metrics span {
    margin-top: 2px;
    color: var(--ink-soft);
    font-size: 12px;
}

@media (max-width: 980px) {
    .product-showcase-grid,
    .owner-showcase-grid {
        grid-template-columns: 1fr;
        padding: 2.4rem;
    }
    .product-showcase-media,
    .owner-showcase-media {
        min-height: auto;
    }
    .product-showcase-media img,
    .owner-showcase-media img {
        width: min(800px, 120%);
        transform: none;
    }
}

@media (max-width: 720px) {
    .product-showcase-grid,
    .owner-showcase-grid {
        padding: 1.35rem;
        border-radius: 24px;
    }
    .owner-metrics {
        grid-template-columns: 1fr;
    }
    .product-showcase-media img {
        width: min(720px, 122%);
    }
    .owner-showcase-media img {
        width: min(700px, 118%);
    }
}


/* Evidence and pricing clarification added without replacing existing graphic assets */
.evidence-section {
    position: relative;
}
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.evidence-card,
.external-cost-card {
    border: 1px solid rgba(83,144,145,.18);
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-sm);
}
.evidence-card {
    padding: 1.5rem;
}
.evidence-card > strong,
.evidence-card h3,
.external-cost-card h3 {
    display: block;
    margin: 0 0 .65rem;
    color: var(--ink);
    font-size: 1.05rem;
}
.evidence-card p,
.external-cost-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}
.external-cost-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.6rem 1.8rem;
}
.external-cost-card .section-label {
    margin-bottom: .45rem;
}

@media (max-width: 900px) {
    .evidence-grid,
    .external-cost-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .evidence-card,
    .external-cost-card {
        padding: 1.2rem;
    }
}


/* Commercial bridge from product value to the interactive demos */
.evidence-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

@media (max-width: 720px) {
    .evidence-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}


/* WhatsApp-first hero */
.section-anchor {
    position: absolute;
    top: -90px;
    left: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.hero-whatsapp-hero {
    min-height: 760px;
    padding: 120px 0 64px;
}

.hero-whatsapp-hero .hero-content {
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr);
    gap: clamp(2.5rem, 5vw, 5rem);
}

.hero-whatsapp-hero .hero-text p {
    max-width: 590px;
    margin-bottom: 1.4rem;
}

.hero-whatsapp-features {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    margin: 0 0 1.8rem;
}

.hero-whatsapp-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .48rem .78rem;
    color: var(--ink-mid);
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(83, 144, 145, .18);
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 22px rgba(26, 31, 46, .04);
    backdrop-filter: blur(12px);
}

.hero-whatsapp-features span::before {
    content: '';
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(83, 144, 145, .10);
}

.hero-contact-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 750;
    text-underline-offset: 4px;
}

.hero-contact-link:hover {
    color: var(--teal);
    text-decoration: underline;
}

.hero-whatsapp-hero .hero-trust {
    margin-top: 1.8rem;
}

.hero-whatsapp-showcase {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.hero-whatsapp-showcase::before {
    content: '';
    position: absolute;
    z-index: -2;
    width: 440px;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 46% 54% 48% 52% / 42% 44% 56% 58%;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .92), rgba(255, 255, 255, .48) 42%, rgba(234, 244, 244, .34) 72%),
        linear-gradient(145deg, rgba(255, 255, 255, .70), rgba(83, 144, 145, .08));
    box-shadow:
        0 40px 90px rgba(35, 58, 72, .12),
        inset 0 1px 0 rgba(255, 255, 255, .90);
    backdrop-filter: blur(18px);
    transform: rotate(-3deg);
}

.hero-device-glow {
    position: absolute;
    z-index: -3;
    border-radius: 50%;
    filter: blur(42px);
    pointer-events: none;
}

.hero-device-glow-teal {
    width: 290px;
    height: 290px;
    top: 52px;
    right: -24px;
    background: rgba(83, 144, 145, .26);
}

.hero-device-glow-warm {
    width: 230px;
    height: 230px;
    bottom: 26px;
    left: -22px;
    background: rgba(243, 177, 118, .22);
}

.premium-phone {
    position: relative;
    z-index: 2;
    width: min(300px, 78vw);
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50px;
    background:
        linear-gradient(135deg, #4b515a 0%, #11151a 8%, #020304 36%, #191e25 76%, #545b66 100%);
    box-shadow:
        0 48px 85px rgba(13, 20, 32, .30),
        0 16px 28px rgba(13, 20, 32, .20),
        inset 0 0 0 1px rgba(255, 255, 255, .16),
        inset 0 0 0 3px rgba(0, 0, 0, .72);
}

.premium-phone::before {
    content: '';
    position: absolute;
    z-index: 3;
    inset: 3px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 46px;
    pointer-events: none;
}

.premium-phone::after {
    content: '';
    position: absolute;
    z-index: 3;
    inset: 8px auto 8px 8px;
    width: 38%;
    border-radius: 40px 0 0 40px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .09), transparent);
    pointer-events: none;
    mix-blend-mode: screen;
}

.premium-phone-screen {
    position: relative;
    overflow: hidden;
    aspect-ratio: 576 / 1248;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 40px;
    background: #08090b;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, .92),
        inset 0 0 18px rgba(0, 0, 0, .70);
}

.hero-whatsapp-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #08090b;
}

.premium-phone-button {
    position: absolute;
    z-index: -1;
    width: 4px;
    background: linear-gradient(180deg, #343a43, #080a0d 36%, #161a20);
    box-shadow: inset 1px 0 rgba(255, 255, 255, .16);
}

.premium-phone-button-silent {
    top: 94px;
    left: -4px;
    height: 29px;
    border-radius: 3px 0 0 3px;
}

.premium-phone-button-volume-up {
    top: 145px;
    left: -4px;
    height: 58px;
    border-radius: 3px 0 0 3px;
}

.premium-phone-button-volume-down {
    top: 217px;
    left: -4px;
    height: 58px;
    border-radius: 3px 0 0 3px;
}

.premium-phone-button-power {
    top: 170px;
    right: -4px;
    height: 82px;
    border-radius: 0 3px 3px 0;
}

.hero-video-control {
    position: absolute;
    z-index: 4;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--white);
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(8, 11, 16, .68);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.hero-video-control:hover {
    background: rgba(8, 11, 16, .86);
    transform: scale(1.05);
}

.hero-video-control:focus-visible {
    outline: 3px solid rgba(243, 177, 118, .62);
    outline-offset: 3px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.hero-device-note {
    position: absolute;
    z-index: 4;
    min-width: 170px;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .75rem .9rem;
    color: var(--ink-soft);
    font-size: 11px;
    line-height: 1.3;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 16px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 46px rgba(26, 31, 46, .14);
    backdrop-filter: blur(18px);
}

.hero-device-note strong {
    display: block;
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 850;
}

.hero-device-note-icon {
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    border-radius: 10px;
    background: linear-gradient(145deg, #66a5a6, #3d6b6c);
    box-shadow: 0 8px 18px rgba(83, 144, 145, .30);
}

.hero-device-note-balance {
    top: 120px;
    left: -22px;
}

.hero-device-note-payment {
    right: -34px;
    bottom: 122px;
}

.hero-device-caption {
    position: absolute;
    z-index: 4;
    bottom: -4px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: .55rem .9rem;
    color: var(--ink-mid);
    font-size: 12px;
    font-weight: 750;
    border: 1px solid rgba(83, 144, 145, .14);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 34px rgba(26, 31, 46, .10);
    backdrop-filter: blur(16px);
}

@media (max-width: 980px) {
    .hero-whatsapp-hero {
        padding-bottom: 72px;
    }

    .hero-whatsapp-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .hero-whatsapp-hero .hero-text {
        max-width: 720px;
    }

    .hero-whatsapp-showcase {
        width: min(100%, 590px);
        min-height: 670px;
        margin: 0 auto;
    }
}

@media (max-width: 720px) {
    .hero-whatsapp-hero {
        min-height: auto;
        padding-top: 104px;
        padding-bottom: 56px;
    }

    .hero-whatsapp-hero .hero-content {
        gap: 1.8rem;
    }

    .hero-whatsapp-hero .hero-text .pre-tag {
        margin-bottom: 1rem;
    }

    .hero-whatsapp-hero .hero-text h1 {
        margin-bottom: 1rem;
    }

    .hero-whatsapp-hero .hero-text p {
        margin-bottom: 1.1rem;
        font-size: 16px;
    }

    .hero-whatsapp-features {
        display: flex;
        margin-bottom: 1.35rem;
    }

    .hero-whatsapp-features span {
        justify-content: flex-start;
        width: auto;
    }

    .hero-whatsapp-hero .hero-trust {
        gap: .65rem 1rem;
        margin-top: 1.35rem;
    }

    .hero-whatsapp-showcase {
        min-height: 570px;
    }

    .hero-whatsapp-showcase::before {
        width: min(390px, 96vw);
        height: 490px;
    }

    .premium-phone {
        width: min(250px, 72vw);
        padding: 8px;
        border-radius: 44px;
    }

    .premium-phone::before {
        border-radius: 40px;
    }

    .premium-phone-screen {
        border-radius: 35px;
    }

    .hero-device-note {
        display: none;
    }

    .hero-device-caption {
        bottom: 6px;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: clamp(2.05rem, 10.8vw, 2.35rem);
    }

    .hero-whatsapp-showcase {
        min-height: 530px;
    }

    .hero-whatsapp-showcase::before {
        width: 92vw;
        height: 450px;
    }

    .premium-phone {
        width: min(226px, 70vw);
    }

    .hero-device-caption {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-video-control {
        transition: none;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 58px 0;
    }

    .section-header {
        margin-bottom: 2.3rem;
    }

    .section-header p,
    .product-showcase-copy p,
    .owner-showcase-copy p {
        font-size: 16px;
    }

    .trust-bar {
        padding: 1.6rem 0;
    }

    .trust-bar-inner {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1rem;
    }

    .trust-logos {
        justify-content: flex-start;
        gap: .6rem;
    }

    .trust-logo-item {
        font-size: 12px;
        padding: 6px 10px;
    }

    .problem-card,
    .value-card,
    .feature-card,
    .demo-card,
    .evidence-card {
        padding: 1.25rem;
    }

    .pc-icon,
    .fc-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .product-showcase-grid,
    .owner-showcase-grid {
        padding: 1.15rem;
        border-radius: 22px;
    }

    .owner-metrics {
        gap: .55rem;
        margin: 1.2rem 0 1.4rem;
    }

    #cta-final {
        padding: 72px 0;
    }

    footer {
        padding-top: 3rem;
    }
}
