:root {
    --navy: #0b2440;
    --blue: #0f3b68;
    --teal: #0ea5a4;
    --orange: #f97316;
    --ink: #102033;
    --muted: #64748b;
    --line: #dbe6f3;
    --soft: #f5f9fc;
    --white: #fff;
    --shadow: 0 22px 60px rgba(15,59,104,.14);
    --radius: 22px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,system-ui,-apple-system,Segoe UI,sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6
}

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

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

.container {
    width: min(1120px,calc(100% - 32px));
    margin-inline:auto}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--navy);
    color: #fff;
    padding: 10px 14px;
    z-index: 99
}

.skip-link:focus {
    left: 10px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(219,230,243,.8)
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg,var(--blue),var(--teal));
    box-shadow: 0 12px 30px rgba(14,165,164,.25)
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 600;
    color: #34445a
}

.nav-menu a:hover {
    color: #fff;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 9px 14px
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: .2s
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg,var(--blue),var(--teal));
    box-shadow: 0 14px 30px rgba(15,59,104,.2)
}

.btn-secondary {
    background: #fff;
    color: var(--blue);
    border: 1px solid var(--line)
}

.btn-light {
    background: #fff;
    color: var(--blue)
}

.btn-small {
    padding: 10px 16px
}

.section {
    padding: 92px 0
}

.soft-bg {
    background: var(--soft)
}

.hero {
    padding: 120px 0 86px;
    background: radial-gradient(circle at top right,rgba(14,165,164,.18),transparent 36%),linear-gradient(180deg,#f8fbff,#fff)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--teal);
    font-weight: 800;
    font-size: .78rem;
    margin: 0 0 12px
}

h1,h2,h3,p {
    margin-top: 0
}

h1 {
    font-size: clamp(2.4rem,5vw,4.6rem);
    line-height: 1.02;
    letter-spacing: -.055em;
    margin-bottom: 22px
}

h2 {
    font-size: clamp(2rem,3.5vw,3.25rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    margin-bottom: 18px
}

h3 {
    font-size: 1.12rem;
    margin-bottom: 8px
}

.hero-text,.section-heading p,.narrow p,.split-grid p,.customer-card p,.contact-grid p {
    color: var(--muted);
    font-size: 1.06rem
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 24px;
    box-shadow: var(--shadow)
}

.metric-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg,var(--navy),var(--blue));
    color: #fff;
    margin-bottom: 16px
}

.metric-card span {
    display: block;
    color: #bde7ea;
    font-weight: 800;
    margin-bottom: 8px
}

.metric-card strong {
    font-size: 1.35rem;
    line-height: 1.2
}

.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.metric-grid div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f9fcff
}

.metric-grid strong,.metric-grid span {
    display: block
}

.metric-grid span {
    color: var(--muted);
    font-size: .9rem
}

.narrow {
    max-width: 840px;
    text-align: center
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center
}

.card-grid {
    display: grid;
    gap: 18px
}

.card-grid.four {
    grid-template-columns: repeat(4,1fr)
}

.card,.partner-card,.service-list article,.steps article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 12px 35px rgba(15,59,104,.06)
}

.steps article{
    max-width: calc(33.3% - 30px);
    width: 100%;
}

.card p,.partner-card p,.service-list p,.steps p,.faq-list p,.footer-grid p {
    color: var(--muted)
}

.icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #e9fbfb;
    color: var(--teal);
    font-weight: 900;
    margin-bottom: 16px
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

.logo-placeholder {
    height: 76px;
    border: 1px dashed #8bb4d3;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #7390a8;
    font-weight: 800;
    background: #f7fbff;
    margin-bottom: 18px
}

.partner-card span {
    display: inline-flex;
    border-radius: 999px;
    background: #e9fbfb;
    color: #087b7b;
    padding: 6px 12px;
    font-weight: 800;
    font-size: .82rem;
    display: none;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.steps {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.steps span {
    display: inline-flex;
    color: var(--orange);
    font-weight: 900;
    margin-bottom: 12px
}

.split-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: center
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.check-grid span {
    padding: 16px 18px;
    border-radius: 16px;
    background: #f7fbff;
    border: 1px solid var(--line);
    font-weight: 800
}

.check-grid span:before {
    content: '✓';
    color: var(--teal);
    margin-right: 8px
}

.customer-band {
    padding: 70px 0;
    background: linear-gradient(135deg,var(--navy),var(--blue));
    color: #fff
}

.customer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.customer-card div{
    max-width: 60%;
}

.customer-card p {
    color: #d5e6f4
}

.faq-list {
    max-width: 860px;
    margin: auto;
    display: grid;
    gap: 14px
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 18px 22px
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800
}

.contact-section {
    background: linear-gradient(180deg,#fff,var(--soft))
}

.contact-grid {
    display: flex;
    grid-template-columns: .85fr 1.15fr;
    gap: 36px;
    align-items: start
}

.contact-points {
    display: grid;
    gap: 10px;
    margin-top: 26px
}

.contact-points a,.contact-points span {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    font-weight: 700
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow)
}

label {
    display: grid;
    gap: 7px;
    font-weight: 700;
    color: #334155
}

.full {
    grid-column: 1/-1
}

input,select,textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 14px;
    background: #fbfdff;
    color: var(--ink)
}

textarea {
    resize: vertical
}

.site-footer {
    background: #071b31;
    color: #dce9f6;
    padding: 56px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 34px
}

.footer-grid a {
    display: block;
    color: #dce9f6;
    margin: 8px 0
}

.footer-grid h3 {
    color: #fff
}

.footer-brand {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 34px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: #a9bed2
}

.floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    border: 0;
    border-radius: 999px;
    padding: 15px 20px;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(249,115,22,.32);
    cursor: pointer
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7,27,49,.48);
    z-index: 60
}

.enquiry-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(430px,100%);
    height: 100dvh;
    background: #fff;
    z-index: 61;
    padding: 30px;
    box-shadow: -25px 0 70px rgba(7,27,49,.25);
    transform: translateX(105%);
    transition: .25s;
    overflow: auto
}

.enquiry-drawer.open {
    transform: translateX(0)
}

.drawer-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: #eef5fb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer
}

.drawer-form {
    display: grid;
    gap: 13px;
    margin-top: 22px
}

@media (max-width: 960px) {
    .nav-toggle {
        display:inline-flex
    }

    .nav-menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        border-radius: 20px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch
    }

    .nav-menu.open {
        display: flex
    }

    .hero-grid,.split-grid,.contact-grid {
    flex-wrap: wrap;
    }

    .card-grid.four,.service-list {
        grid-template-columns: 1fr 1fr
    }

    .steps {
        grid-template-columns: 1fr 1fr
    }

    .partner-grid {
        grid-template-columns: 1fr
    }

    .customer-card {
        align-items: flex-start;
        flex-direction: column
    }

    .section {
        padding: 72px 0
    }

    .hero {
        padding-top: 92px
    }

    .customer-card div{
        max-width: 100%;
    }
    .steps article{
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 620px) {
    .container {
        width:min(100% - 24px,1120px)
    }

    .card-grid.four,.service-list,.steps,.check-grid,.lead-form,.footer-grid {
        grid-template-columns: 1fr
    }

    .hero-actions .btn {
        width: 100%
    }

    .metric-grid {
        grid-template-columns: 1fr
    }

    .lead-form {
        padding: 18px;
        border-radius: 22px
    }

    .footer-bottom {
        display: grid
    }

    .floating-cta {
        left: 12px;
        right: 12px;
        width: calc(100% - 24px)
    }

    .section {
        padding: 58px 0
    }

    h1 {
        font-size: 2.45rem
    }

    .hero-panel {
        border-radius: 24px
    }

    .enquiry-drawer {
        padding: 26px 18px 96px
    }
    .steps article {
        max-width: 100%;
    }
}

.legal-page .legal-hero {
    padding: 92px 0 64px
}

.updated {
    display: inline-flex;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e9fbfb;
    color: #087b7b;
    font-weight: 800
}

.legal-content {
    max-width: 900px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow)
}

.legal-content h2 {
    font-size: 1.35rem;
    letter-spacing: -.02em;
    margin-top: 28px
}

.legal-content h2:first-child {
    margin-top: 0
}

.legal-content a {
    color: var(--teal);
    font-weight: 800
}

.legal-nav {
    display: flex!important;
    position: static!important;
    box-shadow: none!important;
    border: 0!important;
    background: transparent!important;
    padding: 0!important;
    flex-direction: row!important;
    align-items: center!important
}

@media (max-width: 720px) {
    .legal-nav {
        gap:12px!important;
        flex-wrap: wrap;
        justify-content: flex-end;
        font-size: .92rem
    }

    .legal-content {
        padding: 22px;
        border-radius: 22px
    }

    .legal-page .legal-hero {
        padding: 72px 0 44px
    }
}

.zoho-form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    position: sticky;
    box-shadow: var(--shadow);
    top: 100px;
}

.zoho-form-card p {
    color: var(--muted)
}

.contact-form-page {
    padding-top: 46px
}

.iframe-shell {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 12px;
    box-shadow: var(--shadow);
    overflow: hidden
}

.iframe-shell iframe {
    display: block;
    width: 100%;
    min-height: 640px;
    border: 0;
    border-radius: 18px
}

.form-helper {
    margin: 18px auto 0;
    max-width: 860px;
    color: var(--muted);
    text-align: center
}

.form-helper a {
    color: var(--teal);
    font-weight: 800
}

@media (max-width: 620px) {
    .iframe-shell {
        padding:6px;
        border-radius: 20px
    }

    .iframe-shell iframe {
        min-height: 720px;
        border-radius: 14px
    }

    .zoho-form-card {
        padding: 22px;
        border-radius: 22px
    }
}

.brand-logo {
    display: block;
    width: 210px;
    max-width: 48vw;
    height: auto
}

.footer-brand .brand-logo {
    width: 190px;
    filter: drop-shadow(0 10px 24px rgba(255,255,255,.08))
}

.partner-logo {
    margin-bottom: 15px;
    display: inline-block;
}

.partner-logo.green{
    background: #1f8b24;
    padding: 5px;
    border-radius: 20px;
}

.partner-logo img {
    max-width: 150px;
    max-height: 58px;
    display: block;
}

.partner-link {
    display: inline-flex;
    margin-top: 12px;
    color: #fff;
    font-weight: 800;
    padding: 10px 25px;
    border-radius: 30px;
    background: var(--teal);
}

.footer-grid {
    grid-template-columns: 1.4fr .8fr 1fr .8fr
}

@media (max-width: 1080px) {
    .partner-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 620px) {
    .brand-logo {
        width:168px;
        max-width: 62vw
    }

    .partner-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}
