:root {
    --color-soft-white: #f7f7f7;
    --color-light-gray: #eaeaea;
    --color-cool-mist: #c9ccd6;
    --color-muted-steel: #8d99ae;
    --color-deep-slate: #2b2d42;
    --font-base: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    --font-heading: "Poppins", "Inter", "Segoe UI", sans-serif;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.25rem;
    --shadow-sm: 0 8px 24px rgba(43, 45, 66, 0.08);
    --shadow-md: 0 14px 40px rgba(43, 45, 66, 0.12);
    --shadow-lg: 0 20px 50px rgba(43, 45, 66, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-deep-slate);
    background: linear-gradient(180deg, #ffffff 0%, var(--color-soft-white) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: var(--space-8) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin: 0 0 var(--space-3);
}

.section-header p {
    margin: 0 auto;
    max-width: 700px;
    color: #4f5768;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 247, 247, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(141, 153, 174, 0.2);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.brand {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.nav-toggle {
    background: transparent;
    border: 1px solid rgba(43, 45, 66, 0.25);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: var(--color-deep-slate);
    padding: var(--space-2) var(--space-3);
}

.main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(141, 153, 174, 0.3);
    padding: var(--space-4);
    display: none;
}

.main-nav.open {
    display: block;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--space-3);
}

.main-nav a {
    color: #485063;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--color-deep-slate);
}

.hero {
    padding: var(--space-8) 0 var(--space-7);
}

.hero-shell {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 10%, rgba(141, 153, 174, 0.18), transparent 42%),
        radial-gradient(circle at 80% 85%, rgba(201, 204, 214, 0.45), transparent 46%),
        #ffffff;
    border-radius: 1.5rem;
    padding: clamp(1rem, 2.2vw, 2rem);
    box-shadow: var(--shadow-md);
}

.hero-blob {
    position: absolute;
    border-radius: 999px;
    z-index: 0;
    filter: blur(4px);
    animation: floatBlob 8s ease-in-out infinite;
}

.hero-blob-one {
    width: 180px;
    height: 180px;
    background: rgba(141, 153, 174, 0.32);
    top: -50px;
    left: -40px;
}

.hero-blob-two {
    width: 210px;
    height: 210px;
    background: rgba(201, 204, 214, 0.5);
    bottom: -80px;
    right: -20px;
    animation-delay: 1s;
}

.hero-grid {
    display: grid;
    gap: var(--space-6);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin: 0 0 var(--space-4);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.4rem);
    line-height: 1.15;
}

.hero p {
    margin: 0 0 var(--space-5);
    color: #4d5467;
    max-width: 580px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: var(--space-3);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(141, 153, 174, 0.4);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.hero-mini-points {
    margin-top: var(--space-4);
    display: grid;
    gap: var(--space-2);
}

.hero-mini-points p {
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-visual {
    position: relative;
    transition: transform 0.15s ease;
    transform-style: preserve-3d;
}

.floating-chip {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(141, 153, 174, 0.3);
    box-shadow: var(--shadow-sm);
    padding: 0.45rem 0.8rem;
    font-size: 0.84rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    animation: chipFloat 4.6s ease-in-out infinite;
}

.chip-one {
    top: 8%;
    left: -3%;
}

.chip-two {
    bottom: 16%;
    right: -4%;
    animation-delay: 0.8s;
}

.chip-three {
    bottom: -4%;
    left: 12%;
    animation-delay: 1.6s;
}

.stats-grid {
    margin-top: var(--space-6);
    display: grid;
    gap: var(--space-4);
}

.stat-card h3 {
    margin: 0 0 var(--space-2);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-family: var(--font-heading);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
    background: var(--color-deep-slate);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #ffffff;
    color: var(--color-deep-slate);
    border: 1px solid rgba(43, 45, 66, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--color-light-gray);
}

.card-grid {
    display: grid;
    gap: var(--space-4);
}

.card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.use-cases {
    background: linear-gradient(135deg, #ffffff 0%, #f2f3f6 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-5);
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.tab-btn {
    border: 1px solid rgba(43, 45, 66, 0.2);
    background: #ffffff;
    color: var(--color-deep-slate);
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.tab-btn:hover,
.tab-btn:focus-visible {
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--color-deep-slate);
    color: #ffffff;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeUp 0.45s ease;
}

.impact-card {
    margin-top: var(--space-4);
}

#habitRange {
    margin: var(--space-2) 0 var(--space-3);
}

#habitResult {
    font-weight: 600;
    color: #404759;
}

.icon-badge {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--color-light-gray);
    color: var(--color-deep-slate);
    margin-bottom: var(--space-3);
}

.split {
    display: grid;
    gap: var(--space-5);
    align-items: center;
}

.steps {
    display: grid;
    gap: var(--space-3);
}

.step {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    background: #ffffff;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step strong {
    min-width: 2rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--color-deep-slate);
    color: #fff;
    height: 2rem;
}

.testimonial {
    background: #ffffff;
    border-left: 4px solid var(--color-muted-steel);
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    font-weight: 600;
    color: var(--color-deep-slate);
    padding: var(--space-4) var(--space-5);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 var(--space-5);
}

.faq-item.open .faq-answer {
    max-height: 240px;
    padding-bottom: var(--space-4);
}

.contact-wrap {
    display: grid;
    gap: var(--space-5);
}

form {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-5);
}

.field {
    margin-bottom: var(--space-4);
}

label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem 0.85rem;
    border: 1px solid rgba(141, 153, 174, 0.6);
    border-radius: var(--radius-sm);
    font: inherit;
    color: var(--color-deep-slate);
    background: #fff;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(43, 45, 66, 0.2);
    border-color: var(--color-deep-slate);
}

.error {
    margin-top: var(--space-1);
    color: #a42a2a;
    font-size: 0.9rem;
    min-height: 1.2rem;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(141, 153, 174, 0.2);
    padding: var(--space-6) 0;
}

.footer-grid {
    display: grid;
    gap: var(--space-4);
}

.footer-links {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.disclaimer {
    background: linear-gradient(145deg, #ffffff 0%, var(--color-light-gray) 100%);
}

.legal-main {
    padding: var(--space-8) 0;
}

.legal-main article {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-6);
}

.legal-hero {
    background: linear-gradient(145deg, #ffffff 0%, #eef0f5 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-sm);
}

.legal-grid {
    display: grid;
    gap: var(--space-4);
}

.legal-box {
    background: var(--color-soft-white);
    border: 1px solid rgba(141, 153, 174, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-4);
}

.legal-main h1,
.legal-main h2,
.legal-main h3 {
    font-family: var(--font-heading);
}

.legal-main ul {
    padding-left: 1.2rem;
}

.thank-wrap {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: var(--space-7) 0;
}

.thank-grid {
    display: grid;
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.thank-card {
    background: var(--color-soft-white);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    border: 1px solid rgba(141, 153, 174, 0.25);
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4);
    z-index: 100;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.cookie-settings {
    margin-top: var(--space-3);
    border-top: 1px solid var(--color-light-gray);
    padding-top: var(--space-3);
    display: none;
}

.cookie-settings.show {
    display: block;
}

.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatBlob {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes chipFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        display: block;
        width: auto;
        background: transparent;
        border: 0;
        padding: 0;
    }

    .main-nav ul {
        display: flex;
        gap: var(--space-4);
    }

    .hero-grid {
        grid-template-columns: 1.1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid.features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid.services-grid,
    .card-grid.benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid.testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .split {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrap {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }

    .thank-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .hero-blob,
    .floating-chip,
    .btn,
    .card,
    .hero-visual {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

@media (max-width: 320px) {
    :root {
        --space-4: 0.875rem;
        --space-5: 1.25rem;
        --space-6: 1.5rem;
        --space-7: 2rem;
        --space-8: 2.5rem;
    }

    .container {
        width: 100%;
        max-width: 320px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: var(--space-7) 0;
    }

    .section-header {
        margin-bottom: var(--space-5);
    }

    .section-header h2 {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .section-header p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .header-inner {
        min-height: 58px;
        gap: var(--space-2);
    }

    .brand {
        font-size: 0.82rem;
        line-height: 1.2;
        max-width: 11.5rem;
    }

    .nav-toggle {
        flex-shrink: 0;
        padding: 0.4rem 0.55rem;
        font-size: 1.05rem;
    }

    .main-nav {
        top: 58px;
        padding: var(--space-3);
        max-height: min(70vh, 420px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav ul {
        gap: var(--space-2);
    }

    .main-nav a {
        display: block;
        padding: 0.35rem 0;
        font-size: 0.92rem;
    }

    .hero {
        padding: var(--space-6) 0 var(--space-5);
    }

    .hero-shell {
        border-radius: 0.85rem;
        padding: 0.75rem;
        box-shadow: var(--shadow-sm);
    }

    .hero-blob-one {
        width: 120px;
        height: 120px;
        top: -28px;
        left: -28px;
    }

    .hero-blob-two {
        width: 140px;
        height: 140px;
        bottom: -50px;
        right: -30px;
    }

    .hero h1 {
        font-size: 1.55rem;
        line-height: 1.18;
        word-break: break-word;
        hyphens: auto;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: var(--space-4);
    }

    .hero-kicker {
        font-size: 0.72rem;
        padding: 0.35rem 0.65rem;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .hero-actions {
        flex-direction: column;
        gap: var(--space-2);
    }

    .hero-mini-points p {
        font-size: 0.85rem;
        align-items: flex-start;
    }

    .hero-visual {
        margin-top: var(--space-3);
    }

    .floating-chip {
        position: static;
        margin: 0.35rem 0 0;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        font-size: 0.78rem;
        padding: 0.4rem 0.65rem;
        animation: none;
    }

    .stats-grid {
        margin-top: var(--space-5);
        gap: var(--space-3);
    }

    .stat-card h3 {
        font-size: 1rem;
        line-height: 1.35;
    }

    .stat-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .btn {
        width: 100%;
        min-height: 44px;
        padding: 0.65rem 0.85rem;
        font-size: 0.88rem;
    }

    .card {
        padding: var(--space-4);
        border-radius: var(--radius-md);
    }

    .card h3 {
        font-size: 1.05rem;
    }

    .icon-badge {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 0.95rem;
    }

    .use-cases {
        padding: var(--space-4);
        border-radius: var(--radius-md);
    }

    .tab-buttons {
        flex-direction: column;
        gap: var(--space-2);
        margin-bottom: var(--space-3);
    }

    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 0.55rem 0.75rem;
        font-size: 0.82rem;
    }

    .tab-panel {
        padding: var(--space-3);
    }

    .tab-panel p {
        font-size: 0.9rem;
    }

    .impact-card label {
        font-size: 0.88rem;
    }

    #habitRange {
        width: 100%;
        margin: var(--space-2) 0;
    }

    #habitResult {
        font-size: 0.88rem;
    }

    .step {
        padding: var(--space-3);
        gap: var(--space-2);
    }

    .step p {
        font-size: 0.9rem;
    }

    .step strong {
        min-width: 1.75rem;
        height: 1.75rem;
        font-size: 0.85rem;
    }

    .testimonial h3 {
        font-size: 1rem;
    }

    .testimonial p {
        font-size: 0.88rem;
    }

    .faq-question {
        padding: var(--space-3);
        font-size: 0.88rem;
        gap: var(--space-2);
        line-height: 1.35;
    }

    .faq-item.open .faq-answer {
        max-height: 320px;
    }

    .faq-answer p {
        font-size: 0.88rem;
    }

    .contact-wrap {
        gap: var(--space-4);
    }

    .contact-wrap article p {
        font-size: 0.88rem;
        word-break: break-word;
    }

    form {
        padding: var(--space-4);
        border-radius: var(--radius-md);
    }

    .field {
        margin-bottom: var(--space-3);
    }

    label {
        font-size: 0.88rem;
    }

    input,
    textarea {
        font-size: 16px;
        padding: 0.65rem 0.75rem;
    }

    .consent-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }

    .consent-row label {
        font-weight: 500;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .error {
        font-size: 0.8rem;
    }

    .site-footer {
        padding: var(--space-5) 0;
    }

    .footer-grid {
        gap: var(--space-4);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-2);
        align-items: flex-start;
    }

    .footer-links a {
        font-size: 0.88rem;
        padding: 0.2rem 0;
    }

    .site-footer .container:last-child p {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .legal-main {
        padding: var(--space-6) 0;
    }

    .legal-hero {
        padding: var(--space-4);
        border-radius: var(--radius-md);
    }

    .legal-hero h1 {
        font-size: 1.45rem;
    }

    .legal-main article {
        padding: var(--space-4);
        border-radius: var(--radius-md);
    }

    .legal-main h2 {
        font-size: 1.1rem;
        margin-top: var(--space-5);
    }

    .legal-main h3 {
        font-size: 0.98rem;
    }

    .legal-main p,
    .legal-main li {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .legal-box {
        padding: var(--space-3);
    }

    .thank-wrap {
        padding: var(--space-6) 0;
        min-height: auto;
    }

    .thank-grid {
        gap: var(--space-3);
        margin-top: var(--space-4);
    }

    .thank-card {
        padding: var(--space-3);
    }

    .thank-card h2 {
        font-size: 0.95rem;
    }

    .thank-card p {
        font-size: 0.85rem;
    }

    .cookie-banner {
        left: 0.4rem;
        right: 0.4rem;
        bottom: 0.4rem;
        padding: var(--space-3);
        border-radius: var(--radius-md);
        max-height: min(85vh, 520px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cookie-banner h3 {
        font-size: 1rem;
    }

    .cookie-banner p {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .cookie-actions {
        flex-direction: column;
        gap: var(--space-2);
    }

    .cookie-actions .btn {
        width: 100%;
    }

    .toggle-row {
        flex-wrap: wrap;
        gap: var(--space-2);
        font-size: 0.85rem;
    }

    body.page-home #home {
        overflow-x: clip;
    }

    body.page-home #home .hero.section {
        padding-top: var(--space-5);
        padding-bottom: var(--space-5);
    }

    body.page-home #home .hero-shell {
        overflow: hidden;
        isolation: isolate;
        margin-left: 0;
        margin-right: 0;
    }

    body.page-home #home .hero-grid {
        gap: var(--space-4);
    }

    body.page-home #home .hero-visual {
        order: -1;
    }

    body.page-home #home .hero-visual img {
        width: 100%;
        height: auto;
        aspect-ratio: 640 / 460;
        object-fit: cover;
    }

    body.page-home #home .hero-blob-one {
        width: 96px;
        height: 96px;
        top: -20px;
        left: -20px;
        opacity: 0.75;
    }

    body.page-home #home .hero-blob-two {
        width: 110px;
        height: 110px;
        bottom: -36px;
        right: -22px;
        opacity: 0.72;
    }

    body.page-home #home .hero h1 {
        font-size: 1.42rem;
        letter-spacing: -0.02em;
    }

    body.page-home #home .hero .btn i {
        flex-shrink: 0;
    }

    body.page-home #home .stats-grid {
        margin-top: var(--space-4);
    }

    body.page-home #home .stat-card h3 {
        display: flex;
        align-items: flex-start;
        gap: 0.45rem;
        font-size: 0.92rem;
        line-height: 1.35;
    }

    body.page-home #home .stat-card h3 i {
        margin-top: 0.12rem;
        flex-shrink: 0;
    }

    body.page-home #home .split {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    body.page-home #home .split img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-md);
    }

    body.page-home #home .card-grid {
        gap: var(--space-3);
    }

    body.page-home #home .card-grid.features-grid,
    body.page-home #home .card-grid.services-grid,
    body.page-home #home .card-grid.benefits-grid,
    body.page-home #home .card-grid.testimonials-grid {
        grid-template-columns: 1fr;
    }

    body.page-home #home .disclaimer .section-header p {
        font-size: 0.82rem;
        line-height: 1.5;
    }
}