    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --bg: #f0f5fe;
        --paper: #fffefe;
        --ink: #1a1a14;
        --forest: #0d2d6b;
        --forest2: #1a4fa0;
        --muted: #696969;
        --border: #ddd9d0;
        --accent: #000000;
        --accent-lt: rgba(46, 125, 82, 0.09);
        --accent-md: rgba(46, 125, 82, 0.2);
        --gold: #b8860b;
        --gold-lt: rgba(184, 134, 11, 0.1);
        --red: #c0392b;
    }


    /* ── HERO ── */
    .hero {
        min-height: 50vh;
        background: var(--forest);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0;
    }

    .hero-bg-pattern {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(rgba(8, 33, 61, 0.116), rgba(26, 79, 160, 0.11)),
            url(/assete/images/page-banner/property.webp);
        background-size: cover;
        background-position: center;
    }

    .hero-bg-glow {
        position: absolute;
        width: 900px;
        height: 900px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(46, 125, 82, 0.3) 0%, transparent 65%);
        top: -200px;
        right: -200px;
        pointer-events: none;
    }

    .hero-top-band {
        position: relative;
        z-index: 2;
        padding: 0px 72px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        /* align-items: end; */
    }

    .hero-product-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 4px;
        padding: 5px 14px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgb(255, 255, 255);
        margin-bottom: 28px;
    }

    .hero h1 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 44px);
        font-weight: 700;
        line-height: 1.05;
        color: #fff;
        margin-bottom: 0;
    }

    .hero h1 .italic {
        font-style: italic;
        color: #ffffff;
        font-weight: 300;
    }

    .hero h1 .sub-word {
        display: block;
        font-size: 0.55em;
        font-weight: 300;
        letter-spacing: 0.05em;
        color: rgb(255, 255, 255);
        font-style: normal;
        font-family: 'Syne', sans-serif;
        margin-top: 8px;
    }

    .hero-right {
        padding-bottom: 8px;
    }

    .hero-problem {
        font-family: 'Syne', sans-serif;
        font-size: 17px;
        font-style: italic;
        font-weight: 300;
        /* line-height: 1.7; */
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 32px;
        margin-top: 20px;
    }

    .hero-problem strong {
        color: rgba(255, 255, 255, 0.85);
        font-style: normal;
        font-weight: 600;
    }

    .hero-answer {
        font-size: 15px;
        line-height: 1.8;
        color: rgb(255, 255, 255);
        margin-bottom: 36px;
        font-weight: 300;
    }

    .hero-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .btn-green {
        background: var(--accent);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 14px 28px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.25s;
    }

    .btn-green:hover {
        background: #26694a;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(46, 125, 82, 0.4);
    }

    .btn-ghost-white {
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: rgba(255, 255, 255, 0.6);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 14px 24px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.25s;
    }

    .btn-ghost-white:hover {
        border-color: rgba(255, 255, 255, 0.45);
        color: #fff;
    }

    .inner {
        max-width: 1280px;
        margin: auto;
    }

    /* HERO BOTTOM STATS BAR */
    .hero-stats-bar {
        position: relative;
        z-index: 2;
        margin-top: 64px;
        background: rgba(0, 0, 0, 0.25);
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }

    .hstat {
        padding: 28px 32px;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .hstat:last-child {
        border-right: none;
    }

    .hstat-n {
        font-family: 'Syne', sans-serif;
        font-size: 26px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
        margin-bottom: 4px;
    }

    .hstat-l {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.35);
    }

    /* ── SECTION BASE ── */
    section {
        padding: 100px 72px;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 18px;
    }

    .eyebrow::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--accent);
    }

    .sh {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 44px);
        font-weight: 700;
        line-height: 1.1;
        color: var(--forest);
        margin-bottom: 18px;
        letter-spacing: -0.02em;
    }

    .sh em {
        font-style: italic;
        color: var(--accent);
        font-weight: 300;
    }

    .sp {
        font-size: 16px;
        line-height: 1.85;
        color: var(--muted);
        max-width: 600px;
        font-weight: 300;
    }

    /* ── OBJECTIVES ── */
    #objectives {
        background: var(--paper);
    }

    .obj-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
        margin-top: 56px;
    }

    .obj-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .obj-item {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 0;
        align-items: stretch;
        border-bottom: 1px solid var(--border);
        padding: 28px 0;
        transition: background 0.2s;
    }

    .obj-item:first-child {
        border-top: 1px solid var(--border);
    }

    .obj-num {
        font-family: 'Syne', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--accent);
        padding-top: 3px;
        opacity: 0.6;
    }

    .obj-content h4 {
        font-size: 15px;
        font-weight: 600;
        color: var(--forest);
        margin-bottom: 4px;
    }

    .obj-content p {
        font-size: 14px;
        line-height: 1.65;
        color: var(--muted);
        font-weight: 300;
    }

    .obj-callout {
        background: var(--forest);
        border-radius: 20px;
        padding: 48px 40px;
        position: relative;
        overflow: hidden;
    }

    .obj-callout::before {
        content: 'ITax';
        font-family: 'Syne', sans-serif;
        font-size: 110px;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.04);
        position: absolute;
        bottom: -20px;
        right: -10px;
        line-height: 1;
        pointer-events: none;
    }

    .obj-callout-label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #7ec99a;
        margin-bottom: 20px;
    }

    .obj-callout h3 {
        font-family: 'Syne', sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .obj-callout p {
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
        margin-bottom: 32px;
    }

    .calc-methods {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .calc-method {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        transition: background 0.2s;
    }

    .calc-method:hover {
        background: rgba(46, 125, 82, 0.2);
    }

    .calc-method-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #7ec99a;
        flex-shrink: 0;
    }

    /* ── FEATURES ── */
    #features {
        background: var(--bg);
    }

    .features-intro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: end;
        margin-bottom: 56px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        background: var(--border);
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
    }

    .feat {
        background: var(--paper);
        padding: 36px 32px;
        transition: background 0.25s;
        position: relative;
    }

    .feat:hover {
        background: #fff;
    }

    .feat-accent-bar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .feat:hover .feat-accent-bar {
        transform: scaleX(1);
    }

    .feat-icon {
        font-size: 26px;
        margin-bottom: 16px;
        display: block;
    }

    .feat h3 {
        font-size: 16px;
        font-weight: 600;
        color: var(--forest);
        margin-bottom: 10px;
    }

    .feat p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--muted);
        font-weight: 300;
        margin-bottom: 14px;
    }

    .feat-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .ftag {
        background: var(--accent-lt);
        border: 1px solid var(--accent-md);
        border-radius: 100px;
        padding: 3px 10px;
        font-size: 11px;
        font-weight: 600;
        color: var(--accent);
    }

    /* ── SIX PILLARS ── */
    .pillars-band {
        background: var(--forest);
        padding: 80px 72px;
    }

    .pillars-header {
        margin-bottom: 48px;
    }

    .pillars-header h2 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 44px);
        font-weight: 700;
        color: #fff;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .pillars-header h2 em {
        color: #ffffff;
        font-style: italic;
        font-weight: 300;
    }

    .pillars-header p {
        margin-top: 16px;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 300;
        max-width: 560px;
    }

    .pillars-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        background: rgba(255, 255, 255, 0.05);
    }

    .pillar {
        background: var(--forest2);
        padding: 40px 32px;
        transition: background 0.25s;
    }

    .pillar:hover {
        background: rgba(46, 125, 82, 0.3);
    }

    .pillar-letter {
        font-family: 'Syne', sans-serif;
        font-size: 42px;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.08);
        line-height: 1;
        margin-bottom: 20px;
    }

    .pillar h3 {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
    }

    .pillar p {
        font-size: 14px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 300;
    }

    /* ── MOBILE BAND ── */
    #mobile {
        background: var(--paper);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
    }

    .mobile-left {
        padding: 100px 64px 100px 72px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mobile-right {
        background: var(--forest);
        padding: 100px 72px 100px 64px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mobile-right h3 {
        font-family: 'Syne', sans-serif;
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 28px;
        line-height: 1.2;
    }

    .mobile-right h3 em {
        color: #ffffff;
        font-style: italic;
        font-weight: 300;
    }

    .mobile-feature-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .mfl-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        padding: 18px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 12px;
        transition: background 0.2s;
    }

    .mfl-item:hover {
        background: rgba(46, 125, 82, 0.2);
    }

    .mfl-icon {
        font-size: 20px;
        flex-shrink: 0;
    }

    .mfl-item h4 {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 3px;
    }

    .mfl-item p {
        font-size: 13px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 300;
    }

    /* ── INDUSTRIES ── */
    #industries {
        background: var(--bg);
    }

    .ind-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 56px;
    }

    .ind-card {
        background: var(--paper);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px 28px;
        transition: all 0.25s;
    }

    .ind-card:hover {
        border-color: var(--accent);
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(46, 125, 82, 0.1);
    }

    .ind-card.primary {
        background: var(--forest);
        border-color: var(--forest);
        grid-column: span 3;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 28px;
        align-items: center;
    }

    .ind-card.primary:hover {
        border-color: #7ec99a;
    }

    .ind-icon {
        font-size: 32px;
        margin-bottom: 14px;
        display: block;
    }

    .ind-card h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--forest);
        margin-bottom: 8px;
    }

    .ind-card p {
        font-size: 13px;
        line-height: 1.65;
        color: var(--muted);
        font-weight: 300;
    }

    .ind-card.primary h3 {
        color: #fff;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .ind-card.primary p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 15px;
        line-height: 1.75;
    }

    .ind-card.primary .ind-icon {
        font-size: 48px;
        margin-bottom: 0;
    }

    /* ── INTEGRATIONS ── */
    #integrations {
        background: var(--paper);
    }

    .int-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        margin-top: 56px;
    }

    .int-image {
        margin-bottom: 24px;
    }

    .int-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .int-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .int-item {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 20px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 500;
        color: var(--forest);
        transition: all 0.2s;
    }

    .int-item:hover {
        border-color: var(--accent);
        background: var(--accent-lt);
        color: var(--accent);
    }

    .int-item-icon {
        font-size: 20px;
        flex-shrink: 0;
    }

    /* ── FAQ ── */
    #faq {
        background: var(--bg);
    }

    .faq-layout {
        display: grid;
        grid-template-columns: 360px 1fr;
        gap: 80px;
        margin-top: 56px;
    }

    .faq-sidebar {
        position: sticky;
        top: 120px;
        align-self: start;
    }

    .faq-sidebar-card {
        background: var(--forest);
        border-radius: 16px;
        padding: 36px 32px;
    }

    .faq-sidebar-card h4 {
        font-family: 'Syne', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 14px;
        line-height: 1.2;
    }

    .faq-sidebar-card p {
        font-size: 14px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 300;
        margin-bottom: 24px;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .faq-item {
        border-bottom: 1px solid var(--border);
        overflow: hidden;
    }

    .faq-item:first-child {
        border-top: 1px solid var(--border);
    }

    .faq-q {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        padding: 22px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        font-family: 'Syne', sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: var(--forest);
        transition: color 0.2s;
    }

    .faq-q:hover {
        color: var(--accent);
    }

    .faq-item.open .faq-q {
        color: var(--accent);
    }

    .faq-icon {
        flex-shrink: 0;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--accent);
        transition: transform 0.3s, background 0.2s;
    }

    .faq-item.open .faq-icon {
        transform: rotate(45deg);
        background: var(--accent-lt);
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s;
        padding: 0;
        font-size: 14px;
        line-height: 1.8;
        color: var(--muted);
        font-weight: 300;
    }

    .faq-item.open .faq-a {
        max-height: 300px;
        padding: 0 0 22px;
    }

    /* ── CTA ── */
    #cta {
        background: var(--forest);
        padding: 100px 72px;
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    #cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(46, 125, 82, 0.25) 0%, transparent 70%);
    }

    .cta-left {
        position: relative;
        z-index: 1;
    }

    .cta-left h2 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 44px);
        font-weight: 700;
        color: #fff;
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
    }

    .cta-left h2 em {
        font-style: italic;
        color: #ffffff;
        font-weight: 300;
    }

    .cta-left p {
        font-size: 16px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 300;
        margin-bottom: 36px;
    }

    .cta-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .cta-right {
        position: relative;
        z-index: 1;
    }

    .cta-outcomes {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .cta-outcome {
        display: flex;
        align-items: center;
        gap: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 12px;
        padding: 18px 20px;
    }

    .cta-outcome-icon {
        font-size: 22px;
        flex-shrink: 0;
    }

    .cta-outcome-text {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
    }

    .cta-outcome-text span {
        display: block;
        font-size: 12px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.35);
        margin-top: 2px;
    }

    /* ── REVEAL ── */
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {

        section {
            padding: 80px 32px;
        }

        .hero-top-band {
            grid-template-columns: 1fr;
            padding: 130px 32px 0;
            gap: 40px;
        }

        .hero-stats-bar {
            grid-template-columns: repeat(3, 1fr);
        }

        .obj-layout,
        .features-intro,
        .int-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .pillars-band {
            padding: 60px 32px;
        }

        .pillars-grid {
            grid-template-columns: 1fr 1fr;
        }

        #mobile {
            grid-template-columns: 1fr;
        }

        .mobile-left {
            padding: 80px 32px 40px;
        }

        .mobile-right {
            padding: 40px 32px 80px;
        }

        .ind-card.primary {
            grid-column: span 3;
        }

        .ind-layout {
            grid-template-columns: repeat(2, 1fr);
        }

        .ind-card.primary {
            grid-column: span 2;
            grid-template-columns: 1fr;
        }

        .faq-layout {
            grid-template-columns: 1fr;
        }

        .faq-sidebar {
            position: static;
        }

        #cta {
            grid-template-columns: 1fr;
            padding: 80px 32px;
        }
    }

    @media (max-width: 640px) {

        section {
            padding: 60px 20px;
        }

        .hero-top-band {
            padding: 1px 20px 0;
        }

        .hero-stats-bar {
            grid-template-columns: repeat(2, 1fr);
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .pillars-grid {
            grid-template-columns: 1fr;
        }

        .ind-layout {
            grid-template-columns: 1fr;
        }

        .ind-card.primary {
            grid-column: span 1;
        }

        .mobile-left {
            padding: 60px 20px 32px;
        }

        .mobile-right {
            padding: 32px 20px 60px;
        }

        .int-grid {
            grid-template-columns: 1fr;
        }

        #cta {
            padding: 60px 20px;
        }

        .pillars-band {
            padding: 48px 20px;
        }

        .hero-tag {
            letter-spacing: normal;
            margin-bottom: 5px;
        }

        .hero-desc {
            line-height: 1;
        }
    }