* {
    box-sizing: border-box;
}

:root {
    --primary: #1ddbd9;
    --secondary: #06b2fe;
    --thirdary: #0ea5a4;
    --accent: #2563eb;
    --dark: #27313f;
    --black: #222222;
    --muted: #6b7280;
    --white: #ffffff;
    --surface: #f7f9fb;
    --line: #e5e7eb;
    --success: #26a69a;
    --danger: #ef5350;
    --warning: #edac3b;
    --radius: 5px;
    --shadow: 1px 7px 30px rgba(0, 0, 0, 0.1);
    --font-body: 'Google Sans', sans-serif;
    --font-title: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    background: var(--surface);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3 {
    color: var(--dark);
    font-family: var(--font-title);
    line-height: 1.08;
    margin: 0;
}

h1 {
    font-size: clamp(38px, 6vw, 45px);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(30px, 4vw, 40px);
    letter-spacing: 0;
}

h3 {
    font-size: 20px;
}

p {
    margin: 0;
}

.site-header {
    background: var(--dark);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
}

.header-inner,
.section-inner {
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 24px;
    width: 100%;
}

.header-inner {
    align-items: center;
    display: flex;
    gap: 22px;
    min-height: 76px;
}

.brand {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
}

.brand img {
    height: 34px;
    width: 34px;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 22px;
    margin-left: auto;
}

.site-nav a,
.link-login {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.link-login {
    border: 1px solid var(--white);
    padding: 8px 20px;
    border-radius: var(--radius);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    
}

.link-login:hover {
    box-shadow: 0 14px 28px rgba(0, 255, 251, 0.3);
    transform: translateY(-1px);
}

.site-nav a:hover,
.link-login:hover {
    color: var(--line);
}

.header-actions {
    align-items: center;
    display: flex;
    gap: 14px;
}

.header-actions .button {
    background: var(--white);
    border-color: var(--line);
    color: var(--dark);
}

.header-actions .button:hover {
    box-shadow: 0 14px 28px rgba(0, 255, 251, 0.3);
}

.menu-toggle {
    align-items: center;
    background: var(--dark);
    border: 1px solid var(--dark);
    border-radius: var(--radius);
    color: var(--white);
    display: none;
    height: 48px;
    justify-content: center;
    margin-left: auto;
    width: 48px;
}

.menu-toggle svg {
    height: 48px;
    width: 48px;
}

.button {
    align-items: center;
    background: var(--dark);
    border: 1px solid var(--dark);
    border-radius: var(--radius);
    color: var(--white);
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    box-shadow: 0 14px 28px rgba(39, 49, 63, 0.18);
    transform: translateY(-1px);
}

.button-small {
    min-height: 40px;
    padding: 0 16px;
}

.button-secondary {
    background: var(--white);
    border-color: var(--line);
    color: var(--dark);
}

.button-full {
    width: 100%;
}

.section {
    padding: 92px 0;
}

.hero {
    background:
        radial-gradient(circle at 90% 20%, rgba(6, 178, 254, 0.3), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(29, 219, 217, 0.3), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
    overflow: hidden;
    padding: 150px 0 96px;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 58px;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
}

.hero-copy {
    display: grid;
    gap: 24px;
}

.hero-copy .highlight {
    background: linear-gradient(180deg, var(--primary), var(--thirdary));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.eyebrow {
    align-items: center;
    color: var(--thirdary);
    display: block;
    font-size: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-lead {
    color: var(--muted);
    font-size: 20px;
    max-width: 620px;
}

.hero-actions,
.trust-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-row {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    gap: 20px;
}

.trust-row span {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.trust-row svg,
.function-list svg,
.pricing-card li svg {
    color: var(--thirdary);
    height: 25px;
    width: 25px;
}

.hero-preview {
    animation: hero-preview-float 6s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.82);
    border: 0px solid rgba(229, 231, 235, 0.88);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(39, 49, 63, 0.16);
    padding: 18px;
    position: relative;
    will-change: transform;
}

@keyframes hero-preview-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-preview-old::before {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 22px;
    content: "";
    inset: 42px -28px -28px 42px;
    opacity: 0.16;
    position: absolute;
    z-index: -1;
}

.preview-topbar {
    display: flex;
    gap: 7px;
    margin-bottom: 18px;
}

.preview-topbar span {
    background: var(--line);
    border-radius: 999px;
    height: 10px;
    width: 10px;
}

.preview-topbar .button-close {
    background: var(--danger);
}

.preview-topbar .button-minimize {
    background: var(--warning);
}

.preview-topbar .button-maximize {
    background: var(--success);
}

.preview-header,
.preview-cards,
.preview-table div {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.preview-header {
    margin-bottom: 18px;
}

.preview-header small,
.preview-cards small {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 700;
}

.preview-header strong {
    display: block;
    font-family: var(--font-title);
    font-size: 24px;
}

.preview-pill {
    background: rgba(29, 219, 217, 0.16);
    border: 1px solid rgba(14, 165, 164, 0.22);
    border-radius: 5px;
    color: var(--thirdary);
    font-size: 12px;
    font-weight: 800;
    padding: 8px 12px;
}

.preview-cards {
    gap: 10px;
    margin-bottom: 22px;
}

.preview-cards div {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    flex: 1;
    padding: 14px;
}

.preview-cards strong {
    display: block;
    font-family: var(--font-title);
    font-size: 18px;
    margin-top: 4px;
}

.preview-chart {
    align-items: end;
    background: linear-gradient(180deg, var(--white), var(--surface));
    border: 1px solid var(--line);
    border-radius: 12px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(7, 1fr);
    height: 190px;
    padding: 22px;
}

.preview-chart span {
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    border-radius: 8px 8px 3px 3px;
    display: block;
    min-height: 26px;
}

.preview-table {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.preview-table div {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
}

.positive {
    color: var(--success);
}

.negative {
    color: var(--danger);
}

.problem-section {
    background: var(--white);
}

.problem-grid {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.problem-copy {
    display: grid;
    gap: 16px;
}

.problem-copy p {
    color: var(--muted);
    font-size: 19px;
}

.comparison-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
}

.comparison-column {
    display: grid;
    gap: 12px;
}

.comparison-label {
    color: var(--danger);
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 800;
    padding: 0 4px;
    text-transform: uppercase;
}

.comparison-label.is-nexter {
    color: var(--thirdary);
}

.comparison-item {
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    gap: 14px;
    min-height: 122px;
    padding: 16px;
}

.comparison-item svg {
    border-radius: 10px;
    flex: 0 0 auto;
    height: 42px;
    padding: 10px;
    width: 42px;
}

.comparison-item.is-before svg {
    background: rgba(239, 83, 80, 0.1);
    color: var(--danger);
}

.comparison-item.is-after svg {
    background: rgba(29, 219, 217, 0.13);
    color: var(--thirdary);
}

.comparison-item strong {
    display: block;
    font-family: var(--font-title);
    font-size: 16px;
    margin-bottom: 4px;
}

.comparison-item p {
    color: var(--muted);
    font-size: 14px;
}

.split-section {
    align-items: start;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-section p {
    color: var(--muted);
    font-size: 19px;
}

.section-title {
    display: grid;
    gap: 14px;
    margin: 0 auto 38px;
    max-width: 720px;
    text-align: center;
}

.section-title p {
    color: var(--muted);
    font-size: 18px;
}

.section-title.compact {
    max-width: 620px;
}

.feature-grid,
.pricing-grid,
.testimonials-grid,
.steps-grid {
    display: grid;
    gap: 18px;
}

.feature-grid {
    grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.step-card,
.pricing-card,
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
}

.feature-card {
    min-height: 255px;
}

.feature-card > svg {
    background: rgba(29, 219, 217, 0.13);
    border-radius: 12px;
    color: var(--thirdary);
    height: 48px;
    margin-bottom: 22px;
    padding: 12px;
    width: 48px;
}

.feature-card h3,
.step-card h3 {
    margin-bottom: 10px;
}

.feature-card p,
.step-card p,
.pricing-description,
.testimonial-card p,
.faq-grid p {
    color: var(--muted);
}

.steps-section {
    background: var(--white);
}

.steps-grid {
    grid-template-columns: repeat(3, 1fr);
}

.step-card {
    background: var(--surface);
}

.step-card span {
    color: var(--thirdary);
    display: block;
    font-family: var(--font-title);
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
}

.function-list {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    padding: 22px;
}

.function-list span {
    align-items: center;
    background: var(--surface);
    border: 1px solid transparent;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    font-weight: 700;
    min-height: 52px;
    padding: 12px 14px;
}

.pricing-section {
    background:var(--white);
}

.pricing-grid {
    align-items: stretch;
    grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    background: var(--surface);
}

.pricing-card.is-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    background: linear-gradient(45deg, var(--primary) 25%, var(--secondary) 75%, var(--accent) 100%);
}

.pricing-card.is-featured .pricing-description,
.pricing-card.is-featured ul li,
.pricing-card.is-featured ul li svg {
    color: var(--dark);
}

.plan-badge {
    align-self: start;
    background: var(--dark);
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 7px 11px;
}

.plan-badge.subtle {
    background: var(--white);
    color: var(--accent);
}

.price {
    align-items: flex-start;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    font-family: var(--font-title);
    gap: 4px;
    min-height: 78px;
}

.price-base,
.price-promotional,
.price-base-value {
    align-items: baseline;
    display: inline-flex;
}

.price-base-value {
    color: var(--muted);
    font-weight: 500;
    text-decoration-color: currentColor;
    text-decoration-line: line-through;
    text-decoration-thickness: 2px;
}

.price-label {
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    margin-right: 5px;
}

.price-base small {
    font-size: 10px;
    margin-right: 4px;
}

.price-base strong {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

.price-base sup {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
}

.price-promotional small {
    font-size: 18px;
    margin-right: 4px;
}

.price-promotional strong {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}

.price-promotional sup {
    align-self: flex-start;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    margin-top: 3px;
}

.price-period {
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    margin-left: 4px;
}

.pricing-card.is-featured .price-base-value,
.pricing-card.is-featured .price-period {
    color: var(--dark);
}

.pricing-card ul {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0 0 auto;
    padding: 0;
}

.pricing-card li {
    align-items: center;
    color: var(--muted);
    display: flex;
    gap: 10px;
    font-weight: 700;
}

.testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card p {
    font-size: 17px;
    margin-bottom: 22px;
}

.testimonial-card strong {
    display: block;
    font-family: var(--font-title);
}

.testimonial-card span {
    color: var(--muted);
    display: block;
    font-size: 14px;
    margin-top: 2px;
}

.faq-section {
    background: var(--white);
}

.faq-grid {
    align-items: start;
    display: grid;
    gap: 52px;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.faq-grid h2 {
    margin: 10px 0 12px;
}

.faq-grid img {
    margin-bottom: -18px;
    max-width: 420px;
    width: 100%;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 20px;
}

.faq-list summary {
    cursor: pointer;
    font-family: var(--font-title);
    font-weight: 700;
}

.faq-list p {
    margin-top: 12px;
}

.faq-layout {
    grid-template-columns: minmax(190px, 0.26fr) minmax(0, 0.74fr);
}

.faq-document .faq-list {
    gap: 14px;
}

.faq-list-page details {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0;
}

.faq-list-page summary {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 64px;
    padding: 18px 20px;
}

.faq-list-page summary::after {
    color: var(--thirdary);
    content: "+";
    flex: 0 0 auto;
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    margin-left: 16px;
}

.faq-list-page details[open] summary::after {
    content: "-";
}

.faq-list-page p {
    border-top: 1px solid var(--line);
    color: #4b5563;
    margin: 0;
    padding: 16px 20px 20px;
}

.faq-support {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
}

.faq-support .button {
    margin-top: 6px;
    color: var(--white);
    text-decoration: none;
    border: none;
}

.faq-support .button:hover {
    color: var(--white);
    background: var(--thirdary);
}

.section.final-cta {
    padding: 70px 20px;
}


.final-cta {
    padding-bottom: 104px;
}

.final-cta-box {
    background: linear-gradient(45deg, var(--primary) 0%, var(--dark) 35%, var(--dark) 65%, var(--accent) 100%);
    border-radius: 18px;
    color: var(--white);
    display: grid;
    gap: 18px;
    justify-items: center;
    padding: 58px 24px;
    text-align: center;
}

.final-cta-box h2 {
    color: var(--white);
    max-width: 780px;
}

.final-cta-box p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.final-cta-box .button {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 58px 0 0;
}

.footer-grid {
    display: grid;
    gap: 34px;
    grid-template-columns: 1.4fr repeat(3, 1fr);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    margin-top: 14px;
    max-width: 320px;
}

.site-footer nav {
    display: grid;
    gap: 10px;
}

.site-footer strong {
    font-family: var(--font-title);
    margin-bottom: 4px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer .social-link {
    align-items: center;
    display: inline-flex;
    gap: 9px;
}

.site-footer .social-link svg {
    height: 18px;
    width: 18px;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    margin-top: 42px;
    padding: 18px 24px;
    text-align: center;
}

.legal-page {
    background: var(--surface);
}

.legal-hero {
    background: linear-gradient(145deg, var(--dark) 0%, #334155 100%);
    color: var(--white);
    padding: 140px 0 74px;
}

.legal-hero .section-inner {
    max-width: 980px;
}

.legal-back-link {
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    margin-bottom: 32px;
}

.legal-back-link:hover {
    color: var(--primary);
}

.legal-back-link svg {
    height: 18px;
    width: 18px;
}

.legal-hero .eyebrow {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 12px;
}

.legal-hero h1 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 52px);
    max-width: 720px;
}

.legal-hero p {
    color: rgba(255, 255, 255, 0.72);
    margin-top: 16px;
}

.legal-content {
    padding-top: 64px;
}

.legal-layout {
    align-items: start;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
    max-width: 1120px;
}

.legal-toc {
    border-left: 2px solid var(--line);
    display: grid;
    gap: 14px;
    padding-left: 16px;
    position: sticky;
    top: 108px;
}

.legal-toc strong {
    font-family: var(--font-title);
    font-size: 14px;
}

.legal-toc nav {
    display: grid;
    gap: 9px;
}

.legal-toc a {
    color: var(--muted);
    font-size: 14px;
}

.legal-toc a:hover {
    color: var(--thirdary);
}

.legal-document {
    max-width: 760px;
}

.legal-document section + section {
    border-top: 1px solid var(--line);
    margin-top: 42px;
    padding-top: 42px;
}

.legal-document h2 {
    font-size: clamp(24px, 3vw, 30px);
    margin: 0 0 20px;
    scroll-margin-top: 112px;
}

.legal-document p {
    color: #4b5563;
    margin: 0 0 16px;
}

.legal-document a {
    color: var(--thirdary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(14, 165, 164, 0.35);
    text-underline-offset: 3px;
}

.legal-document a:hover {
    color: var(--accent);
}

.legal-intro {
    color: var(--dark) !important;
    font-size: 19px;
    line-height: 1.65;
}

.legal-alpha {
    color: #4b5563;
    list-style-type: decimal;
    margin: 0 0 18px;
    padding-left: 24px;
}

.legal-alpha li {
    margin: 7px 0;
    padding-left: 4px;
}

.legal-document blockquote {
    border-left: 3px solid var(--primary);
    color: var(--dark);
    font-family: var(--font-title);
    font-size: 17px;
    line-height: 1.55;
    margin: 24px 0;
    padding: 6px 0 6px 20px;
}

.legal-details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    margin: 20px 0 6px;
    overflow: hidden;
}

.legal-details div {
    display: grid;
    gap: 12px;
    grid-template-columns: 130px 1fr;
    padding: 12px 14px;
}

.legal-details div + div {
    border-top: 1px solid var(--line);
}

.legal-details dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.legal-details dd {
    color: var(--dark);
    margin: 0;
}

@media (max-width: 1040px) {
    .feature-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid,
    .problem-grid,
    .split-section,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-preview {
        max-width: 620px;
    }

    .function-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-layout {
        gap: 32px;
        grid-template-columns: 1fr;
    }

    .legal-toc {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        grid-template-columns: auto 1fr;
        padding: 14px;
        position: static;
    }

    .legal-toc nav {
        column-gap: 18px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 10px;
    }
}

@media (max-width: 820px) {
    .header-inner {
        min-height: 68px;
    }

    .brand {
        order: 1;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: 0;
        order: 3;
    }

    .site-nav,
    .header-actions {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 10px;
        box-shadow: var(--shadow);
        display: none;
        left: 16px;
        padding: 16px;
        position: fixed;
        right: 16px;
        top: 78px;
    }

    .site-nav.is-open {
        display: grid;
        gap: 20px;
        background: var(--dark);
        border: 0;
    }

    .site-nav.is-open a {
        border-bottom: 1px solid var(--muted);
        padding-bottom: 15px;
    }

    .header-actions {
        display: flex;
        margin-left: auto;
        order: 2;
        position: static;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .header-actions .button {
        display: none;
    }

    .hero {
        padding-top: 116px;
    }

    .hero-grid {
        gap: 38px;
    }

    .preview-cards,
    .comparison-panel,
    .steps-grid,
    .feature-grid,
    .pricing-grid,
    .testimonials-grid,
    .function-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.is-featured {
        transform: none;
    }

    .section {
        padding: 70px 0;
    }

    .hero.section {
        padding: 116px 0 70px;
    }

    .legal-hero {
        padding: 114px 0 58px;
    }

    .legal-content {
        padding-top: 48px;
    }

    .legal-toc {
        display: block;
    }

    .legal-toc nav {
        margin-top: 12px;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .section-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand span {
        font-size: 20px;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .trust-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .hero-preview {
        border-radius: 14px;
        padding: 14px;
    }

    .hero-preview::before {
        display: none;
    }

    .preview-chart {
        gap: 8px;
        height: 160px;
        padding: 16px;
    }

    .feature-card,
    .step-card,
    .pricing-card,
    .testimonial-card {
        padding: 20px;
    }

    .final-cta-box {
        padding: 42px 18px;
    }

    .legal-toc nav {
        grid-template-columns: 1fr;
    }

    .legal-document section + section {
        margin-top: 32px;
        padding-top: 32px;
    }

    .legal-details div {
        gap: 4px;
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-preview {
        animation: none;
        will-change: auto;
    }
}
