* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7faf8;
    color: #17313a;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 84px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 250, 248, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 47, 63, 0.08);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 50px rgba(15, 47, 63, 0.08);
}

.nav-wrap {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 30%),
        linear-gradient(135deg, var(--primary), #194b5d);
    box-shadow: 0 14px 32px rgba(15, 47, 63, 0.22);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.brand strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.1;
    color: var(--primary);
}

.brand small {
    display: block;
    margin-top: 3px;
    color: #6f858b;
    font-size: 0.74rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #35555e;
    font-size: 0.94rem;
    font-weight: 700;
}

.main-nav a {
    position: relative;
}

.main-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 100px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 11px 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 12px 30px rgba(15, 47, 63, 0.18);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 47, 63, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(232, 243, 240, 0.95), rgba(255, 255, 255, 0.9)),
        radial-gradient(circle at 80% 20%, rgba(217, 164, 65, 0.18), transparent 34%);
    overflow: hidden;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    pointer-events: none;
}

.orb-one {
    width: 360px;
    height: 360px;
    right: -130px;
    top: 70px;
    background: rgba(217, 164, 65, 0.16);
}

.orb-two {
    width: 260px;
    height: 260px;
    left: -110px;
    bottom: 60px;
    background: rgba(15, 47, 63, 0.08);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.79rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

h1,
h2,
h3 {
    color: var(--primary);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.55rem, 7vw, 5.7rem);
}

.hero-text {
    max-width: 660px;
    margin-top: 24px;
    color: #48656d;
    font-size: clamp(1rem, 1.8vw, 1.19rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #1d566a);
    box-shadow: 0 18px 42px rgba(15, 47, 63, 0.2);
}

.btn-soft {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 18px 38px rgba(15, 47, 63, 0.09);
}

.trust-strip {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-strip div {
    min-width: 132px;
    padding: 15px 18px;
    border: 1px solid rgba(15, 47, 63, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 36px rgba(15, 47, 63, 0.06);
}

.trust-strip strong {
    display: block;
    color: var(--primary);
    font-size: 1.38rem;
    line-height: 1;
}

.trust-strip span {
    display: block;
    margin-top: 5px;
    color: #6c8389;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-card {
    position: relative;
    min-height: 500px;
}

.policy-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 248, 0.92));
    box-shadow: 0 32px 90px rgba(15, 47, 63, 0.16);
}

.main-policy {
    width: min(430px, 100%);
    margin: 30px auto 0;
    padding: 34px;
    overflow: hidden;
}

.main-policy::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -85px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(217, 164, 65, 0.14);
}

.policy-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #638189;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 46px;
}

.shield-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 14px 30px rgba(15, 47, 63, 0.2);
}

.main-policy h2 {
    max-width: 280px;
    font-size: 2.2rem;
}

.main-policy p {
    margin-top: 14px;
    color: #5d777f;
}

.cover-meter {
    height: 12px;
    margin: 28px 0;
    border-radius: 999px;
    overflow: hidden;
    background: #dce9e6;
}

.cover-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), #f2d285);
}

.main-policy ul {
    position: relative;
    z-index: 1;
    list-style: none;
    display: grid;
    gap: 13px;
}

.main-policy li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #344e56;
    font-weight: 800;
}

.main-policy li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 24px;
    border-radius: 50%;
    color: var(--primary);
    background: var(--secondary);
    font-size: 0.76rem;
}

.floating-note {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 47, 63, 0.07);
    border-radius: 18px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 44px rgba(15, 47, 63, 0.12);
    font-size: 0.88rem;
    font-weight: 900;
}

.floating-note span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
}

.note-one {
    top: 70px;
    left: 0;
}

.note-two {
    right: 0;
    bottom: 90px;
}

.cover-strip {
    background: var(--primary);
    color: #fff;
    padding: 18px 0;
}

.cover-strip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cover-strip span {
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 800;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.section-heading h2,
.about-copy h2,
.showcase-copy h2,
.faq-copy h2,
.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p:not(.eyebrow),
.about-copy > p,
.showcase-copy p,
.faq-copy p,
.cta-card p {
    margin-top: 16px;
    color: #5b747b;
    font-size: 1.02rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card,
.process-step,
.testimonial-card {
    border: 1px solid rgba(15, 47, 63, 0.08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15, 47, 63, 0.07);
}

.service-card {
    min-height: 260px;
    padding: 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(15, 47, 63, 0.11);
}

.card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 20px;
    color: var(--primary);
    background: var(--secondary);
    font-weight: 950;
}

.service-card h3,
.process-step h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
}

.service-card p,
.process-step p,
.testimonial-card p {
    color: #627b82;
    font-size: 0.95rem;
}

.about-section {
    background:
        linear-gradient(135deg, rgba(15, 47, 63, 0.96), rgba(18, 70, 85, 0.94)),
        radial-gradient(circle at 10% 20%, rgba(217, 164, 65, 0.22), transparent 35%);
    color: #fff;
    overflow: hidden;
}

.about-grid,
.showcase-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    align-items: center;
}

.about-copy h2,
.about-copy .eyebrow {
    color: #fff;
}

.about-copy > p {
    color: rgba(255, 255, 255, 0.75);
}

.about-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
}

.vault-card {
    position: relative;
    width: min(340px, 84vw);
    aspect-ratio: 1;
    border-radius: 42px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 25%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.vault-ring {
    position: absolute;
    inset: 17%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.28);
    animation: rotateRing 22s linear infinite;
}

.ring-two {
    inset: 28%;
    animation-direction: reverse;
    animation-duration: 16s;
}

.vault-core {
    position: absolute;
    inset: 39%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: var(--accent);
    font-size: 2.2rem;
    font-weight: 950;
}

.mini-stat {
    position: absolute;
    left: 4%;
    bottom: 8%;
    max-width: 240px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.mini-stat strong,
.mini-stat span {
    display: block;
}

.mini-stat span {
    margin-top: 4px;
    color: #6b8087;
    font-size: 0.9rem;
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.check-list p {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
}

.check-list span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 24px;
    border-radius: 50%;
    color: var(--primary);
    background: var(--accent);
    font-size: 0.75rem;
    font-weight: 950;
}

.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-step {
    position: relative;
    padding: 30px;
    overflow: hidden;
}

.process-step::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -50px;
    top: -50px;
    border-radius: 50%;
    background: rgba(217, 164, 65, 0.12);
}

.process-step span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 16px;
    color: #fff;
    background: var(--primary);
    font-weight: 950;
}

.showcase-section {
    background:
        linear-gradient(180deg, #f7faf8, #eef6f3);
}

.showcase-grid {
    grid-template-columns: 0.8fr 1.2fr;
}

.dashboard-mock {
    border: 1px solid rgba(15, 47, 63, 0.08);
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 34px 80px rgba(15, 47, 63, 0.12);
    overflow: hidden;
}

.mock-header {
    display: flex;
    gap: 8px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(15, 47, 63, 0.08);
}

.mock-header span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d9e5e2;
}

.mock-body {
    padding: 28px;
}

.mock-panel {
    padding: 22px;
    border-radius: 24px;
    background: var(--secondary);
}

.mock-panel.wide {
    margin-bottom: 16px;
    background:
        linear-gradient(135deg, rgba(15, 47, 63, 0.98), rgba(25, 82, 98, 0.95));
    color: #fff;
}

.mock-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mock-panel small,
.mock-panel strong {
    display: block;
}

.mock-panel small {
    margin-bottom: 6px;
    color: #6d858b;
    font-weight: 800;
}

.mock-panel.wide small {
    color: rgba(255, 255, 255, 0.64);
}

.mock-panel strong {
    color: var(--primary);
    font-size: 1.2rem;
}

.mock-panel.wide strong {
    color: #fff;
}

.mock-bars {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.mock-bars span {
    height: 12px;
    border-radius: 999px;
    background: #dbe9e5;
    overflow: hidden;
}

.mock-bars span::after {
    content: "";
    display: block;
    height: 100%;
    width: 72%;
    border-radius: inherit;
    background: var(--accent);
}

.mock-bars span:nth-child(2)::after {
    width: 54%;
}

.mock-bars span:nth-child(3)::after {
    width: 86%;
}

.testimonials-section {
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 28px;
}

.testimonial-card p {
    font-size: 1.02rem;
    color: #36525a;
}

.testimonial-card div {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 47, 63, 0.08);
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    margin-top: 3px;
    color: #73888e;
    font-size: 0.88rem;
}

.faq-section {
    background: #f7faf8;
}

.faq-grid {
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(15, 47, 63, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 47, 63, 0.06);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--primary);
    text-align: left;
    font-weight: 900;
    cursor: pointer;
}

.faq-item button span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    flex: 0 0 26px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    transition: transform 0.25s ease;
}

.faq-item.is-open button span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    padding: 0 22px 20px;
    color: #607a81;
}

.final-cta {
    background:
        radial-gradient(circle at 85% 20%, rgba(217, 164, 65, 0.22), transparent 30%),
        linear-gradient(135deg, var(--primary), #1d5668);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: center;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.18);
}

.cta-card h2,
.cta-card .eyebrow {
    color: #fff;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 28px;
    background: #fff;
}

.contact-panel a:not(.btn),
.contact-panel span {
    display: block;
    padding: 13px 14px;
    border-radius: 15px;
    background: #f3f8f6;
    color: var(--primary);
    font-weight: 800;
    word-break: break-word;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.38);
    transition: transform 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

.whatsapp-float span {
    font-size: 1.45rem;
    font-weight: 900;
}

.site-footer {
    padding: 28px 0;
    color: rgba(255, 255, 255, 0.75);
    background: #09202c;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.footer-grid strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.footer-grid p {
    max-width: 520px;
    font-size: 0.92rem;
}

.footer-grid div:last-child {
    display: grid;
    gap: 4px;
    text-align: right;
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 980px) {
    .section-pad {
        padding: 68px 0;
    }

    .hero-grid,
    .about-grid,
    .showcase-grid,
    .faq-grid,
    .cta-card {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-card {
        min-height: 420px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        gap: 24px;
    }

    .contact-panel {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        left: 14px;
        right: 14px;
        display: grid;
        gap: 4px;
        padding: 14px;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 22px 54px rgba(15, 47, 63, 0.14);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 13px 14px;
        border-radius: 14px;
    }

    .main-nav a:hover {
        background: #f5faf8;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-cta {
        text-align: center;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .trust-strip {
        display: grid;
        grid-template-columns: 1fr;
    }

    .trust-strip div {
        width: 100%;
    }

    .floating-note {
        position: static;
        width: fit-content;
        margin: 14px auto 0;
    }

    .main-policy {
        margin-top: 12px;
        padding: 26px;
    }

    .about-visual {
        min-height: 350px;
    }

    .mock-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        display: grid;
        text-align: left;
    }

    .footer-grid div:last-child {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .nav-wrap {
        width: min(100% - 20px, 1180px);
    }

    h1 {
        font-size: 2.45rem;
    }

    .section-heading h2,
    .about-copy h2,
    .showcase-copy h2,
    .faq-copy h2,
    .cta-card h2 {
        font-size: 2rem;
    }

    .hero-card {
        min-height: auto;
    }

    .policy-top {
        margin-bottom: 30px;
    }

    .main-policy h2 {
        font-size: 1.8rem;
    }

    .cta-card {
        border-radius: 28px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }
}