:root {
    --ink: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --line: #dbe4ef;
    --soft: #f8fafc;
    --surface: #ffffff;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --green: #10b981;
    --navy: #0b1220;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, .07);
    --shadow: 0 24px 70px rgba(15, 23, 42, .12);
    --transition: .25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
section { scroll-margin-top: 100px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 10px;
    color: white;
    background: var(--ink);
    text-decoration: none;
    transition: top var(--transition);
}
.skip-link:focus { top: 18px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid rgba(219,228,239,.86);
    backdrop-filter: blur(18px);
}
.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: max-content;
}
.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: white;
    font-weight: 800;
    font-size: 16px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 10px 28px rgba(37,99,235,.24);
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 17px; letter-spacing: -.3px; }
.brand-copy small { margin-top: 4px; font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .8px; text-transform: uppercase; }
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; color: var(--text); text-decoration: none; font-size: 14px; font-weight: 600; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; border-radius: 99px; background: var(--blue); transition: right var(--transition); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(37,99,235,.24);
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.button:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(37,99,235,.3); }
.button:focus-visible { outline: 3px solid rgba(37,99,235,.2); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 11px 18px; font-size: 14px; }
.button-ghost {
    color: var(--ink);
    background: rgba(255,255,255,.72);
    border: 1px solid var(--line);
    box-shadow: none;
}
.button-ghost:hover { background: white; box-shadow: var(--shadow-sm); }
.button-ghost-dark { background: transparent; color: white; border: 1px solid rgba(255,255,255,.25); box-shadow: none; }
.button-ghost-dark:hover { background: rgba(255,255,255,.08); box-shadow: none; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    background:
        radial-gradient(circle at 12% 8%, rgba(37,99,235,.13), transparent 33%),
        radial-gradient(circle at 88% 20%, rgba(6,182,212,.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(14px); pointer-events: none; }
.hero-glow-one { width: 260px; height: 260px; left: -120px; bottom: 20px; background: rgba(37,99,235,.09); }
.hero-glow-two { width: 230px; height: 230px; right: -70px; top: 40px; background: rgba(6,182,212,.1); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 76px; align-items: center; }
.eyebrow { margin: 0 0 18px; display: flex; align-items: center; gap: 10px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.eyebrow.centered { justify-content: center; }
.eyebrow.light { color: #a5e8f5; }
.eyebrow.light span { background: #a5e8f5; }
.hero h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -3.2px;
}
.hero h1 em { font-style: normal; color: transparent; background: linear-gradient(135deg, var(--blue), var(--cyan)); background-clip: text; -webkit-background-clip: text; }
.hero-description { max-width: 680px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-proof span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: rgba(255,255,255,.76); font-size: 12px; font-weight: 700; box-shadow: 0 8px 24px rgba(15,23,42,.04); }

.dashboard-showcase { position: relative; }
.dashboard-window { overflow: hidden; border: 1px solid rgba(219,228,239,.9); border-radius: 24px; background: white; box-shadow: var(--shadow); transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.dashboard-topbar { height: 48px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 15px; border-bottom: 1px solid #e8edf4; color: var(--muted); font-size: 11px; font-weight: 700; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.window-dots i:first-child { background: #fb7185; }.window-dots i:nth-child(2) { background: #fbbf24; }.window-dots i:last-child { background: #34d399; }
.live-pill { justify-self: end; display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; border-radius: 999px; color: #047857; background: #ecfdf5; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(16,185,129,.12); }
.dashboard-body { min-height: 390px; display: grid; grid-template-columns: 56px 1fr; background: #f8fafc; }
.dashboard-sidebar { padding: 14px 10px; display: flex; flex-direction: column; align-items: center; gap: 16px; background: #0f172a; }
.mini-logo { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: white; background: linear-gradient(135deg,var(--blue),var(--cyan)); font-size: 10px; font-weight: 800; }
.dashboard-sidebar i { width: 20px; height: 20px; border-radius: 6px; background: #263247; }
.dashboard-sidebar i.active { background: #2563eb; }
.dashboard-main { min-width: 0; padding: 20px; }
.dashboard-heading { display: flex; justify-content: space-between; gap: 15px; align-items: end; }
.dashboard-heading div { display: grid; }
.dashboard-heading small, .card-title small { color: #94a3b8; font-size: 9px; }
.dashboard-heading strong { margin-top: 2px; font-size: 15px; }
.dashboard-date { padding: 6px 9px; border: 1px solid #dbe4ef; border-radius: 8px; background: white; color: var(--muted); font-size: 9px; font-weight: 700; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.metric-row article { padding: 14px; border: 1px solid #e5ebf3; border-radius: 12px; background: white; }
.metric-row small { display: block; color: #94a3b8; font-size: 8px; }
.metric-row strong { display: block; margin: 4px 0 2px; font-size: 23px; line-height: 1; }
.metric-row span { color: #64748b; font-size: 8px; }
.dashboard-lower { display: grid; grid-template-columns: 1.05fr .95fr; gap: 10px; margin-top: 10px; }
.chart-card, .lead-card { min-width: 0; padding: 14px; border: 1px solid #e5ebf3; border-radius: 12px; background: white; }
.card-title { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.card-title strong { font-size: 10px; }
.bar-chart { height: 118px; margin-top: 10px; padding: 12px 8px 0; display: flex; gap: 8px; align-items: end; border-bottom: 1px solid #e8edf4; background: repeating-linear-gradient(to bottom, transparent 0 28px, #f1f5f9 29px 30px); }
.bar-chart span { flex: 1; height: var(--bar); min-width: 8px; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg,var(--cyan),var(--blue)); }
.chart-labels { margin-top: 8px; display: flex; justify-content: space-between; color: #94a3b8; font-size: 7px; }
.lead-row { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 8px; padding: 10px 0; border-bottom: 1px solid #eef2f7; }
.lead-row:last-child { border-bottom: 0; }
.avatar { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; color: #1d4ed8; background: #dbeafe; font-size: 7px; font-weight: 800; }
.lead-row div { min-width: 0; display: grid; }
.lead-row b { overflow: hidden; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.lead-row small { overflow: hidden; color: #94a3b8; font-size: 6px; text-overflow: ellipsis; white-space: nowrap; }
.lead-row em { padding: 4px 6px; border-radius: 999px; color: #1d4ed8; background: #eff6ff; font-size: 6px; font-style: normal; font-weight: 700; }
.floating-note { position: absolute; display: flex; gap: 9px; align-items: center; padding: 10px 13px; border: 1px solid #e5ebf3; border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 15px 34px rgba(15,23,42,.13); }
.floating-note > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: white; background: linear-gradient(135deg,var(--blue),var(--cyan)); font-size: 12px; font-weight: 800; }
.floating-note div { display: grid; }
.floating-note b { font-size: 9px; }.floating-note small { color: var(--muted); font-size: 7px; }
.note-one { left: -42px; bottom: 52px; }.note-two { right: -34px; top: 78px; }

.capability-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.capability-grid > div { min-height: 128px; display: flex; align-items: center; gap: 14px; padding: 26px 22px; border-right: 1px solid var(--line); }
.capability-grid > div:first-child { border-left: 1px solid var(--line); }
.capability-grid > div > span { color: var(--blue); font-size: 13px; font-weight: 800; }
.capability-grid p { margin: 0; display: grid; gap: 4px; }
.capability-grid strong { font-size: 13px; }.capability-grid small { color: var(--muted); font-size: 10px; line-height: 1.5; }

.section { padding: 112px 0; }
.section-heading { max-width: 790px; margin: 0 auto 54px; text-align: center; }
.section-heading h2, .process-copy h2, .about-panel h2, .faq-intro h2, .contact-copy h2 {
    margin: 0;
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.14;
    letter-spacing: -1.8px;
}
.section-heading > p:last-child, .process-copy > p, .faq-intro > p:last-child { margin: 20px auto 0; max-width: 720px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: end; text-align: left; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }

.services { background: var(--soft); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { position: relative; min-height: 360px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 35px rgba(15,23,42,.04); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover { transform: translateY(-7px); border-color: #bfdbfe; box-shadow: var(--shadow-sm); }
.service-number { position: absolute; top: 24px; right: 25px; color: #cbd5e1; font-size: 12px; font-weight: 800; }
.service-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 18px; color: #1d4ed8; background: linear-gradient(135deg,#eff6ff,#ecfeff); font-size: 14px; font-weight: 800; }
.service-card h3 { margin: 24px 0 12px; font-size: 22px; line-height: 1.3; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-card ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.service-card li { position: relative; padding-left: 18px; color: var(--text); font-size: 12px; font-weight: 600; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--cyan)); }

.projects { background: white; }
.project-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 16px 50px rgba(15,23,42,.05); }
.project-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.05fr .95fr; }
.project-visual { min-height: 250px; display: grid; place-items: center; background: linear-gradient(145deg,#eef5ff,#eefcff); }
.project-featured .project-visual { min-height: 440px; }
.project-content { padding: 34px; }
.project-featured .project-content { display: flex; flex-direction: column; justify-content: center; padding: 48px; }
.project-type { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.project-content h3 { margin: 12px 0 14px; font-size: 27px; line-height: 1.26; letter-spacing: -.6px; }
.project-featured h3 { font-size: 35px; }
.project-content p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.tag-list span { padding: 7px 9px; border: 1px solid #dbeafe; border-radius: 999px; color: #1d4ed8; background: #eff6ff; font-size: 9px; font-weight: 700; }
.project-points { margin: 22px 0 0; padding-left: 18px; color: var(--text); font-size: 12px; line-height: 1.8; }
.text-link { display: inline-flex; gap: 7px; align-items: center; margin-top: 24px; color: var(--blue); font-size: 13px; font-weight: 800; text-decoration: none; }
.text-link span { transition: transform var(--transition); }.text-link:hover span { transform: translateX(5px); }
.crm-visual { display: grid; grid-template-columns: 64px 1fr; width: 84%; height: 76%; overflow: hidden; border: 1px solid rgba(148,163,184,.25); border-radius: 22px; background: #f8fafc; box-shadow: 0 25px 70px rgba(37,99,235,.16); transform: rotate(-2deg); }
.mock-sidebar { padding: 16px 12px; display: flex; flex-direction: column; align-items: center; gap: 16px; background: var(--navy); }
.mock-sidebar b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: white; background: linear-gradient(135deg,var(--blue),var(--cyan)); font-size: 10px; }
.mock-sidebar i { width: 28px; height: 10px; border-radius: 5px; background: #29364c; }
.mock-sidebar i:first-of-type { background: #2563eb; }
.mock-content { padding: 22px; }
.mock-top { display: flex; justify-content: space-between; }
.mock-top span:first-child { width: 34%; height: 18px; border-radius: 7px; background: #cbd5e1; }.mock-top span:last-child { width: 18%; height: 18px; border-radius: 7px; background: #dbeafe; }
.mock-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px; }
.mock-metrics i { height: 70px; border-radius: 12px; border: 1px solid #e2e8f0; background: white; box-shadow: 0 8px 20px rgba(15,23,42,.04); }
.mock-table { margin-top: 14px; padding: 15px; border: 1px solid #e2e8f0; border-radius: 12px; background: white; }
.mock-table span { display: block; height: 12px; margin: 10px 0; border-radius: 6px; background: linear-gradient(90deg,#dbeafe 0 18%,#e2e8f0 18% 42%,#f1f5f9 42%); }
.intake-visual { display: flex; gap: 10px; align-items: center; }
.intake-visual > span { width: 88px; height: 88px; display: grid; place-items: center; border-radius: 22px; font-size: 12px; font-weight: 800; box-shadow: 0 15px 30px rgba(15,23,42,.08); }
.source-node { background: white; color: var(--text); }.flow-node { background: linear-gradient(135deg,#f97316,#fb923c); color: white; }.target-node { background: linear-gradient(135deg,var(--blue),var(--cyan)); color: white; }
.intake-visual i { width: 40px; height: 2px; background: #94a3b8; position: relative; }.intake-visual i::after { content: ""; position: absolute; right: -1px; top: -4px; border: 5px solid transparent; border-left-color: #94a3b8; }
.enquiry-visual { display: flex; gap: 20px; align-items: center; }
.enquiry-form, .enquiry-result { border: 1px solid #dbe4ef; border-radius: 18px; background: white; box-shadow: 0 14px 30px rgba(15,23,42,.08); }
.enquiry-form { width: 150px; padding: 18px; }.enquiry-form i { display: block; height: 10px; margin-bottom: 10px; border-radius: 5px; background: #e2e8f0; }.enquiry-form b { display: block; margin-top: 15px; padding: 9px; border-radius: 9px; color: white; background: var(--blue); font-size: 8px; text-align: center; }
.enquiry-result { padding: 22px; display: grid; }.enquiry-result b { font-size: 13px; }.enquiry-result small { color: var(--muted); font-size: 9px; }
.reminder-visual { display: flex; gap: 18px; align-items: center; }
.calendar-tile { width: 90px; height: 105px; display: grid; place-items: center; align-content: center; border-radius: 18px; color: white; background: linear-gradient(145deg,var(--blue),var(--cyan)); box-shadow: 0 18px 38px rgba(37,99,235,.24); }.calendar-tile small { font-size: 10px; }.calendar-tile strong { font-size: 34px; line-height: 1; }
.reminder-list { display: grid; gap: 10px; }.reminder-list span { min-width: 150px; padding: 12px 14px; border: 1px solid #dbe4ef; border-radius: 12px; background: white; color: var(--text); font-size: 9px; font-weight: 700; box-shadow: 0 10px 24px rgba(15,23,42,.05); }.reminder-list i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); }

.process { color: white; background: var(--navy); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.process-copy { position: sticky; top: 115px; }
.process-copy > p { color: #94a3b8; }
.process-copy .button { margin-top: 28px; }
.process-steps { margin: 0; padding: 0; list-style: none; }
.process-steps li { display: grid; grid-template-columns: 72px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid #243046; }
.process-steps li:first-child { padding-top: 0; }.process-steps li:last-child { border-bottom: 0; }
.process-steps > li > span { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid #32415a; border-radius: 17px; color: #7dd3fc; background: #121d30; font-size: 13px; font-weight: 800; }
.process-steps h3 { margin: 0 0 8px; font-size: 23px; }.process-steps p { margin: 0; color: #94a3b8; font-size: 14px; line-height: 1.75; }

.about { background: var(--soft); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: stretch; }
.about-panel { padding: 52px; border-radius: 28px; color: white; background: linear-gradient(145deg,#172554,#0f172a 58%,#083344); box-shadow: var(--shadow); }
.about-badge { display: inline-flex; padding: 8px 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #bae6fd; background: rgba(255,255,255,.05); font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.about-panel h2 { margin-top: 24px; }
.about-panel > p { margin: 22px 0 0; color: #cbd5e1; font-size: 15px; line-height: 1.8; }
.about-checks { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 30px; }.about-checks span { padding: 12px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: #e2e8f0; background: rgba(255,255,255,.04); font-size: 11px; font-weight: 700; }
.value-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.value-cards article { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 10px 30px rgba(15,23,42,.04); }
.value-cards span { color: var(--blue); font-size: 11px; font-weight: 800; }.value-cards h3 { margin: 13px 0 8px; font-size: 18px; }.value-cards p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.faq { background: white; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 115px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 8px 24px rgba(15,23,42,.035); }
.faq-list summary { position: relative; padding: 22px 58px 22px 22px; list-style: none; cursor: pointer; font-size: 15px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 22px; top: 50%; width: 28px; height: 28px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 9px; color: var(--blue); background: #eff6ff; font-size: 19px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: 13px; line-height: 1.8; }

.contact { color: white; background: white; }
.contact-shell { overflow: hidden; display: grid; grid-template-columns: .88fr 1.12fr; border-radius: 30px; background: linear-gradient(145deg,#0f172a,#172554 55%,#083344); box-shadow: var(--shadow); }
.contact-copy { padding: 58px; }
.contact-copy > p { margin: 22px 0 0; color: #cbd5e1; font-size: 14px; line-height: 1.8; }
.contact-details { display: grid; gap: 12px; margin-top: 34px; }
.contact-details > a, .contact-details > div { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.contact-details > a > span, .contact-details > div > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.06); }
.contact-details div div, .contact-details a div { display: grid; }.contact-details small { color: #94a3b8; font-size: 9px; }.contact-details strong { font-size: 11px; word-break: break-word; }
.contact-form { padding: 44px; color: var(--ink); background: white; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 15px; }
.contact-form label > span { color: var(--text); font-size: 11px; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; outline: none; color: var(--ink); background: #fbfdff; padding: 13px 14px; font-size: 13px; transition: border-color var(--transition), box-shadow var(--transition), background var(--transition); }
.contact-form textarea { resize: vertical; min-height: 126px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #93c5fd; background: white; box-shadow: 0 0 0 4px rgba(37,99,235,.09); }
.contact-form .invalid { border-color: #f87171; box-shadow: 0 0 0 4px rgba(248,113,113,.08); }
.form-submit { width: 100%; margin-top: 4px; }
.form-submit[disabled] { cursor: wait; opacity: .65; transform: none; }
.form-status { min-height: 22px; margin: 12px 0 0; font-size: 12px; font-weight: 700; }
.form-status.success { color: #047857; }.form-status.error { color: #b91c1c; }.form-status.info { color: #1d4ed8; }
.form-note { margin: 8px 0 0; color: var(--muted); font-size: 9px; text-align: center; }.form-note a { color: var(--blue); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

.site-footer { padding: 72px 0 0; color: #cbd5e1; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 48px; padding-bottom: 54px; }
.brand-light .brand-copy strong { color: white; }.brand-light .brand-copy small { color: #94a3b8; }
.footer-brand p { max-width: 380px; margin: 22px 0 0; color: #94a3b8; font-size: 13px; line-height: 1.8; }
.footer-column { display: flex; flex-direction: column; gap: 12px; }.footer-column h3 { margin: 0 0 7px; color: white; font-size: 13px; }.footer-column a { color: #94a3b8; font-size: 12px; text-decoration: none; }.footer-column a:hover { color: white; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #263247; color: #64748b; font-size: 10px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

.legal-page { min-height: 100vh; background: var(--soft); }
.legal-hero { padding: 84px 0 44px; background: linear-gradient(180deg,#fff,#f8fafc); border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin: 0; font-size: clamp(38px,5vw,60px); letter-spacing: -2px; }.legal-hero p { max-width: 700px; margin: 17px 0 0; color: var(--muted); }
.legal-content { padding: 70px 0 100px; }
.legal-card { max-width: 900px; margin: auto; padding: 48px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-sm); }
.legal-card h2 { margin: 38px 0 12px; font-size: 23px; }.legal-card h2:first-child { margin-top: 0; }.legal-card h3 { margin: 28px 0 10px; font-size: 17px; }.legal-card p, .legal-card li { color: var(--text); font-size: 13px; line-height: 1.85; }.legal-card ul { padding-left: 22px; }.legal-meta { margin-bottom: 30px; padding: 14px 16px; border-radius: 12px; color: var(--muted); background: var(--soft); font-size: 11px; }
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 40px; text-align: center; background: radial-gradient(circle at top,#dbeafe,#f8fafc 58%); }
.error-card { max-width: 680px; padding: 58px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); }.error-code { color: var(--blue); font-size: 84px; line-height: 1; font-weight: 800; }.error-card h1 { margin: 14px 0 10px; font-size: 34px; }.error-card p { margin: 0 0 26px; color: var(--muted); }

@media (max-width: 1080px) {
    .header-cta { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-copy { max-width: 820px; }
    .dashboard-showcase { max-width: 760px; width: 100%; margin: 0 auto; }
    .capability-grid { grid-template-columns: repeat(2,1fr); }
    .capability-grid > div:nth-child(3) { border-left: 1px solid var(--line); }
    .capability-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .service-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid, .contact-shell { grid-template-columns: 1fr; }
    .value-cards { grid-template-columns: repeat(4,1fr); }
    .contact-copy { padding-bottom: 25px; }
    .footer-grid { grid-template-columns: 1.4fr repeat(3,1fr); gap: 28px; }
}

@media (max-width: 860px) {
    .menu-toggle { margin-left: auto; width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 12px; background: white; cursor: pointer; }
    .menu-toggle span { width: 20px; height: 2px; border-radius: 99px; background: var(--ink); transition: transform var(--transition), opacity var(--transition); }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { position: absolute; top: 78px; left: 20px; right: 20px; display: none; margin: 0; padding: 13px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); }
    .main-nav.open { display: block; }
    .main-nav ul { display: grid; gap: 2px; }
    .main-nav a { display: block; padding: 12px 13px; border-radius: 10px; }.main-nav a:hover { background: var(--soft); }.main-nav a::after { display: none; }
    .project-featured { grid-template-columns: 1fr; }
    .project-featured .project-visual { min-height: 360px; }
    .process-grid, .faq-grid { grid-template-columns: 1fr; gap: 52px; }
    .process-copy, .faq-intro { position: static; }
    .value-cards { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, 1180px); }
    .header-inner { min-height: 70px; }.brand-copy strong { font-size: 14px; }.brand-copy small { font-size: 9px; }.brand-mark { width: 39px; height: 39px; }
    .main-nav { top: 70px; left: 14px; right: 14px; }
    .hero { padding: 66px 0 58px; }.hero h1 { font-size: 43px; letter-spacing: -2px; }.hero-description { font-size: 15px; }.hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }
    .dashboard-window { transform: none; }.dashboard-body { grid-template-columns: 42px 1fr; min-height: 330px; }.dashboard-sidebar { padding-inline: 7px; }.dashboard-sidebar i { width: 17px; }.dashboard-main { padding: 12px; }.metric-row { gap: 6px; }.metric-row article { padding: 10px; }.metric-row strong { font-size: 17px; }.dashboard-lower { grid-template-columns: 1fr; }.chart-card { display: none; }.note-one { left: -5px; bottom: -30px; }.note-two { display: none; }
    .capability-grid { grid-template-columns: 1fr; }.capability-grid > div { min-height: auto; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }.capability-grid > div:last-child { border-bottom: 0; }
    .section { padding: 82px 0; }.section-heading { margin-bottom: 38px; }.section-heading h2, .process-copy h2, .about-panel h2, .faq-intro h2, .contact-copy h2 { font-size: 36px; letter-spacing: -1.2px; }
    .split-heading { grid-template-columns: 1fr; gap: 20px; }
    .service-grid, .project-grid { grid-template-columns: 1fr; }.service-card { min-height: 0; }.project-featured { grid-column: auto; }.project-featured .project-visual { min-height: 280px; }.project-featured .project-content, .project-content { padding: 28px; }.project-featured h3 { font-size: 27px; }.crm-visual { width: 90%; height: 70%; grid-template-columns: 48px 1fr; }.mock-content { padding: 14px; }.mock-metrics i { height: 52px; }
    .intake-visual { transform: scale(.82); }.enquiry-visual { transform: scale(.84); }.reminder-visual { transform: scale(.84); }
    .process-steps li { grid-template-columns: 54px 1fr; gap: 15px; }.process-steps > li > span { width: 48px; height: 48px; }.process-steps h3 { font-size: 19px; }
    .about-panel { padding: 34px 26px; }.about-checks, .value-cards { grid-template-columns: 1fr; }
    .contact-copy, .contact-form { padding: 32px 24px; }.form-grid { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; }.footer-bottom { padding: 22px 0; flex-direction: column; align-items: flex-start; gap: 4px; }
    .legal-hero { padding: 60px 0 36px; }.legal-card { padding: 28px 22px; }.error-card { padding: 42px 22px; }.error-code { font-size: 66px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
