:root {
    --primary: #17324d;
    --secondary: #0f766e;
    --accent: #f6b73c;
    --dark: #0b1724;
    --text: #243447;
    --muted: #667085;
    --soft: #f5f8fb;
    --white: #ffffff;
    --line: rgba(23, 50, 77, 0.12);
    --shadow: 0 24px 70px rgba(11, 23, 36, 0.12);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: -1px;
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.25);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.1;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

.site-nav a:hover {
    color: var(--secondary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 11px 18px;
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--soft);
    border-radius: 14px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary);
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 70px;
    background:
        radial-gradient(circle at 85% 15%, rgba(246, 183, 60, 0.22), transparent 28%),
        radial-gradient(circle at 10% 10%, rgba(15, 118, 110, 0.16), transparent 28%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(23, 50, 77, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 50, 77, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 52px;
}

.eyebrow {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.hero h1,
.section-heading h2,
.about-content h2,
.showcase-content h2,
.faq-intro h2,
.final-card h2 {
    color: var(--dark);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.hero h1 {
    font-size: clamp(2.55rem, 7vw, 5.4rem);
    max-width: 780px;
}

.hero-text {
    max-width: 650px;
    margin-top: 22px;
    font-size: 1.12rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 16px 34px rgba(15, 118, 110, 0.22);
}

.btn-secondary {
    color: var(--primary);
    background: var(--white);
    border-color: var(--line);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust-row span {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 13px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 800;
}

.hero-card {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
}

.dashboard-card {
    width: min(100%, 420px);
    padding: 24px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.card-top span,
.metric-main small {
    color: var(--muted);
    font-weight: 700;
}

.card-top strong {
    color: var(--primary);
}

.metric-main {
    padding: 26px 0 20px;
}

.metric-main strong {
    display: block;
    color: var(--dark);
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: -0.055em;
    margin: 8px 0;
}

.positive {
    display: inline-flex;
    color: var(--secondary);
    background: rgba(15, 118, 110, 0.1);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 0.84rem;
    font-weight: 800;
}

.mini-chart {
    height: 160px;
    display: flex;
    align-items: end;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(23, 50, 77, 0.05), rgba(15, 118, 110, 0.06));
    border-radius: 24px;
    margin: 10px 0 20px;
}

.mini-chart span {
    flex: 1;
    min-height: 24px;
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(180deg, var(--accent), var(--secondary));
}

.check-list {
    display: grid;
    gap: 10px;
}

.check-list p {
    display: flex;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    font-size: 0.94rem;
}

.check-list span {
    color: var(--secondary);
}

.floating-note {
    position: absolute;
    width: 150px;
    min-height: 110px;
    padding: 18px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(11, 23, 36, 0.14);
    border: 1px solid var(--line);
}

.floating-note strong {
    display: block;
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
}

.floating-note span {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.84rem;
}

.note-one {
    left: 2%;
    top: 18%;
}

.note-two {
    right: 0;
    bottom: 15%;
}

.logo-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.strip-grid span {
    padding: 22px 10px;
    color: var(--primary);
    font-weight: 900;
    border-right: 1px solid var(--line);
}

.strip-grid span:last-child {
    border-right: 0;
}

.section {
    padding: 92px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading h2,
.about-content h2,
.showcase-content h2,
.faq-intro h2,
.final-card h2 {
    font-size: clamp(2rem, 4.5vw, 3.55rem);
}

.section-heading p,
.about-content p,
.showcase-content p,
.faq-intro p,
.final-card p {
    color: var(--muted);
    font-size: 1.04rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card,
.process-step,
.testimonial-card,
.insight-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 18px 52px rgba(11, 23, 36, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.process-step:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(11, 23, 36, 0.11);
}

.icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 1.3rem;
    font-weight: 900;
}

.service-card h3,
.process-step h3 {
    color: var(--dark);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p,
.process-step p,
.testimonial-card p {
    color: var(--muted);
}

.about {
    background:
        radial-gradient(circle at 0 0, rgba(246, 183, 60, 0.16), transparent 34%),
        var(--soft);
}

.about-grid,
.showcase-grid,
.faq-grid,
.final-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.about-visual {
    min-height: 440px;
    display: grid;
    place-items: center;
}

.ledger-panel {
    width: min(100%, 470px);
    border-radius: 34px;
    padding: 18px;
    background: var(--dark);
    color: var(--white);
    box-shadow: var(--shadow);
    transform: rotate(-2deg);
}

.ledger-line {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.7fr;
    gap: 10px;
    align-items: center;
    padding: 17px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
}

.ledger-line:last-child {
    margin-bottom: 0;
}

.header-line {
    color: rgba(255, 255, 255, 0.62);
    background: transparent;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.badge {
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.badge.done {
    background: rgba(15, 118, 110, 0.24);
    color: #88f2d9;
}

.badge.active {
    background: rgba(246, 183, 60, 0.22);
    color: #ffd886;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.feature-list div {
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--line);
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list strong {
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-list span {
    color: var(--muted);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-step span {
    display: inline-flex;
    color: var(--accent);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
}

.showcase {
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.showcase::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.22);
    right: -150px;
    top: -150px;
}

.showcase-content,
.insight-grid {
    position: relative;
}

.showcase-content h2 {
    color: var(--white);
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.7);
}

.text-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--accent);
    font-weight: 900;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.insight-card strong {
    display: block;
    color: var(--accent);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 12px;
}

.insight-card span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.insight-card.wide {
    grid-column: 1 / -1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card p {
    font-size: 1.02rem;
    margin-bottom: 22px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: var(--dark);
}

.testimonial-card span {
    color: var(--secondary);
    font-weight: 800;
    margin-top: 4px;
}

.faq {
    background: var(--soft);
}

.faq-grid {
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--dark);
    padding: 20px;
    text-align: left;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.faq-item button::after {
    content: "+";
    color: var(--secondary);
    font-size: 1.3rem;
    line-height: 1;
}

.faq-item.active button::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    color: var(--muted);
    padding: 0 20px 20px;
}

.final-cta {
    background:
        radial-gradient(circle at 20% 20%, rgba(246, 183, 60, 0.2), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.final-card {
    padding: 44px;
    border-radius: 36px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-box {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 28px;
    background: var(--soft);
}

.contact-box a:not(.btn),
.contact-box span {
    color: var(--primary);
    font-weight: 800;
    word-break: break-word;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--white);
    background: #25d366;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.35);
}

.site-footer {
    padding: 26px 0;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 86px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 24px;
        background: var(--white);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 14px;
        border-radius: 16px;
    }

    .nav-toggle {
        display: block;
    }

    .hero-grid,
    .about-grid,
    .showcase-grid,
    .faq-grid,
    .final-card {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 460px;
    }

    .service-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-grid span:nth-child(2) {
        border-right: 0;
    }

    .strip-grid span:nth-child(1),
    .strip-grid span:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .hero {
        padding: 58px 0 54px;
    }

    .section {
        padding: 68px 0;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .service-grid,
    .testimonial-grid,
    .insight-grid {
        grid-template-columns: 1fr;
    }

    .insight-card.wide {
        grid-column: auto;
    }

    .dashboard-card {
        padding: 18px;
    }

    .floating-note {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .hero-card {
        display: block;
        min-height: auto;
    }

    .note-one,
    .note-two {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .final-card {
        padding: 24px;
    }

    .ledger-line {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        left: 18px;
        right: 18px;
    }
}