:root {
    --navy-950: #071727;
    --navy-900: #0d2947;
    --navy-800: #173e68;
    --blue-700: #1f5e9f;
    --blue-600: #2d73bd;
    --blue-100: #e9f1f9;
    --gold-600: #a87925;
    --gold-500: #c59a49;
    --gold-400: #e3c681;
    --ink: #172230;
    --muted: #63707d;
    --line: #dce3e8;
    --paper: #fffefa;
    --offwhite: #f7f5ef;
    --success: #167d65;
    --danger: #b42318;
    --shadow-sm: 0 10px 30px rgba(7, 23, 39, .08);
    --shadow-lg: 0 26px 72px rgba(7, 23, 39, .16);
    --radius-sm: .75rem;
    --radius: 1.25rem;
    --radius-lg: 2rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.72;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
}

h4, h5, h6, .navbar-brand, .btn {
    font-family: "Manrope", system-ui, sans-serif;
}

h1, h2, h3 { letter-spacing: -.025em; }

h1 { font-size: clamp(3rem, 6vw, 5.8rem); font-weight: 700; line-height: .98; }
h2 { font-size: clamp(2.3rem, 4vw, 3.7rem); font-weight: 700; line-height: 1.05; }
h3 { font-weight: 700; line-height: 1.18; }

a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--navy-900); }

::selection { color: #fff; background: var(--blue-700); }
:focus-visible { outline: 3px solid rgba(197,154,73,.55); outline-offset: 3px; }
[id] { scroll-margin-top: 8rem; }

.container { max-width: 1200px; }
.section { padding: 6.5rem 0; }
.section-sm { padding: 4.25rem 0; }
.bg-soft {
    background:
        linear-gradient(rgba(197,154,73,.035), rgba(197,154,73,.035)),
        var(--offwhite);
}
.text-muted-custom { color: var(--muted); }
.measure { max-width: 720px; }

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 1rem;
    top: -100px;
    padding: .7rem 1rem;
    color: #fff;
    background: var(--navy-950);
    border-radius: .4rem;
}
.skip-link:focus { top: 1rem; color: #fff; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
    color: var(--gold-600);
    font-family: "Manrope", sans-serif;
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.eyebrow::before {
    width: 1.6rem;
    height: 2px;
    content: "";
    background: currentColor;
}
.eyebrow-light { color: var(--gold-400); }

.section-heading { margin-bottom: 3rem; }
.section-heading p { max-width: 700px; margin: 1rem 0 0; color: var(--muted); font-size: 1.1rem; }
.section-heading.text-center p { margin-inline: auto; }

.btn {
    --bs-btn-padding-y: .8rem;
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-border-radius: .75rem;
    font-size: .94rem;
    font-weight: 700;
    letter-spacing: -.01em;
    box-shadow: none;
}
.btn-lg { --bs-btn-padding-y: 1rem; --bs-btn-padding-x: 1.45rem; }
.btn-primary {
    --bs-btn-bg: var(--blue-600);
    --bs-btn-border-color: var(--blue-600);
    --bs-btn-hover-bg: var(--blue-700);
    --bs-btn-hover-border-color: var(--blue-700);
    --bs-btn-active-bg: var(--navy-900);
}
.btn-primary:hover { box-shadow: 0 10px 24px rgba(31,94,159,.22); }
.btn-outline-dark {
    --bs-btn-color: var(--navy-900);
    --bs-btn-border-color: #aebdcb;
    --bs-btn-hover-bg: var(--navy-900);
    --bs-btn-hover-border-color: var(--navy-900);
}

.topbar {
    padding: .52rem 0;
    color: #dbe8f4;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(227,198,129,.18);
    font-size: .78rem;
}
.topbar-links { display: flex; align-items: center; gap: 1rem; }
.topbar a { color: #fff; }
.topbar-divider { width: 1px; height: 1rem; background: rgba(255,255,255,.25); }

.site-header {
    z-index: 1020;
    background: rgba(255,254,250,.97);
    border-bottom: 1px solid rgba(13,45,79,.08);
    backdrop-filter: blur(14px);
    transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 36px rgba(7,23,39,.11); }
.navbar { min-height: 82px; }
.navbar-brand { display: flex; align-items: center; gap: .7rem; margin-right: 2rem; color: var(--navy-950); }
.navbar-brand:hover { color: var(--navy-950); }
.brand-mark {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--navy-900);
    border-radius: 12px 4px 12px 4px;
    border: 1px solid rgba(227,198,129,.28);
    box-shadow: inset -8px -8px 22px rgba(45,115,189,.24), 0 8px 24px rgba(7,23,39,.12);
}
.brand-mark::after {
    position: absolute;
    right: -3px;
    bottom: 8px;
    width: 25px;
    height: 3px;
    content: "";
    background: var(--gold-500);
    transform: rotate(-38deg);
}
.brand-mark span { color: var(--gold-400); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.85rem; font-weight: 700; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 1rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: .22rem; color: var(--muted); font-size: .71rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.navbar-nav { gap: .15rem; }
.navbar .nav-link { position: relative; padding: .75rem .72rem !important; color: #34485c; font-size: .9rem; font-weight: 600; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--blue-700); }
.navbar .nav-link.active::after {
    position: absolute;
    right: .72rem;
    bottom: .36rem;
    left: .72rem;
    height: 2px;
    content: "";
    background: var(--gold-500);
}
.nav-cta { color: #fff !important; padding: .72rem 1rem !important; }
.service-menu { min-width: 285px; padding: .75rem; border: 1px solid var(--line); border-radius: .9rem; box-shadow: var(--shadow-lg); }
.service-menu .dropdown-item { padding: .65rem .75rem; border-radius: .5rem; color: #2b3c4f; font-size: .89rem; }
.service-menu .dropdown-item:hover { color: var(--blue-700); background: var(--blue-100); }

.hero {
    position: relative;
    min-height: 710px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(197,154,73,.22), transparent 28%),
        radial-gradient(circle at 72% 56%, rgba(45,115,189,.34), transparent 42%),
        linear-gradient(118deg, #061522 0%, var(--navy-900) 58%, #164b79 100%);
    border-bottom: 1px solid rgba(197,154,73,.35);
}
.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .16;
    background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000);
    mask-image: linear-gradient(to right, transparent, #000);
}
.hero::after {
    position: absolute;
    width: 570px;
    height: 570px;
    right: -250px;
    bottom: -280px;
    content: "";
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    box-shadow: 0 0 0 85px rgba(255,255,255,.025), 0 0 0 170px rgba(255,255,255,.018);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { max-width: 760px; }
.hero h1 em { color: var(--gold-400); font-style: italic; }
.hero-lead { max-width: 670px; margin: 1.5rem 0 2rem; color: #dbe8f4; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero .btn-outline-light { border-color: rgba(255,255,255,.42); }
.hero .btn-outline-light:hover { color: var(--navy-900); background: #fff; }
.hero-note { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 2.15rem; color: #bdd0e2; font-size: .86rem; }
.hero-note span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-note span::before { width: 7px; height: 7px; content: ""; background: var(--gold-400); border-radius: 50%; box-shadow: 0 0 0 4px rgba(227,198,129,.1); }

.hero .btn-primary {
    --bs-btn-color: var(--navy-950);
    --bs-btn-bg: var(--gold-400);
    --bs-btn-border-color: var(--gold-400);
    --bs-btn-hover-color: var(--navy-950);
    --bs-btn-hover-bg: #eed59b;
    --bs-btn-hover-border-color: #eed59b;
    --bs-btn-active-color: var(--navy-950);
    --bs-btn-active-bg: var(--gold-500);
    box-shadow: 0 12px 30px rgba(197,154,73,.18);
}

.hero-dashboard {
    position: relative;
    max-width: 430px;
    min-height: 465px;
    margin-left: auto;
}
.dashboard-main {
    position: absolute;
    top: 45px;
    right: 20px;
    width: 355px;
    padding: 1.4rem;
    color: var(--ink);
    background: rgba(255,254,250,.97);
    border: 1px solid rgba(227,198,129,.48);
    border-radius: 1.5rem;
    box-shadow: 0 35px 70px rgba(0,0,0,.24);
    transform: rotate(1.5deg);
}
.dashboard-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.35rem; }
.dashboard-head span:first-child { font-family: "Manrope", sans-serif; font-weight: 800; }
.status-pill { padding: .3rem .55rem; color: var(--success); background: #e8f7f2; border-radius: 99px; font-size: .68rem; font-weight: 700; }
.mini-bars { display: flex; height: 145px; align-items: end; gap: .65rem; padding: 1.25rem 1rem .7rem; background: var(--offwhite); border-radius: 1rem; }
.mini-bars i { flex: 1; min-height: 20px; background: linear-gradient(180deg, var(--blue-600), #8fb6dc); border-radius: .45rem .45rem .2rem .2rem; }
.mini-bars i:nth-child(1) { height: 38%; }
.mini-bars i:nth-child(2) { height: 58%; }
.mini-bars i:nth-child(3) { height: 45%; }
.mini-bars i:nth-child(4) { height: 78%; }
.mini-bars i:nth-child(5) { height: 66%; }
.mini-bars i:nth-child(6) { height: 91%; }
.dashboard-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: .8rem; }
.dashboard-stat { padding: .8rem; border: 1px solid var(--line); border-radius: .8rem; }
.dashboard-stat small { display: block; color: var(--muted); font-size: .68rem; }
.dashboard-stat strong { color: var(--navy-900); font-size: .9rem; }
.floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem 1rem;
    color: var(--ink);
    background: #fff;
    border-radius: .85rem;
    box-shadow: 0 18px 45px rgba(0,0,0,.2);
}
.floating-card strong { display: block; color: var(--navy-900); font-size: .82rem; }
.floating-card small { color: var(--muted); font-size: .68rem; }
.floating-card .float-icon { display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: var(--blue-600); border-radius: .65rem; font-weight: 800; }
.floating-card.one { left: -20px; bottom: 80px; }
.floating-card.two { top: 5px; right: -25px; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { position: relative; padding: 1.5rem 1rem; text-align: center; }
.trust-item:not(:last-child)::after { position: absolute; top: 25%; right: 0; width: 1px; height: 50%; content: ""; background: var(--line); }
.trust-item strong { display: block; color: var(--navy-900); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.2rem; font-weight: 700; }
.trust-item small { color: var(--muted); }

.intro-visual {
    position: relative;
    min-height: 505px;
    padding: 2rem;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 18%, rgba(227,198,129,.24), transparent 30%),
        linear-gradient(150deg, var(--blue-700), var(--navy-950));
    border: 1px solid rgba(197,154,73,.38);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.intro-visual::before { position: absolute; width: 330px; height: 330px; top: -170px; right: -140px; content: ""; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.05), 0 0 0 110px rgba(255,255,255,.035); }
.intro-visual .quote-mark { color: rgba(255,255,255,.28); font-family: Georgia, serif; font-size: 8rem; line-height: .7; }
.intro-visual blockquote { position: relative; max-width: 380px; margin: 1rem 0 2rem; font-family: "Manrope", sans-serif; font-size: 1.85rem; font-weight: 700; line-height: 1.35; }
.intro-visual-footer { position: absolute; right: 2rem; bottom: 2rem; left: 2rem; display: flex; align-items: end; justify-content: space-between; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.22); }
.intro-visual-footer small { color: #dbe8f4; }
.intro-content { padding-left: clamp(0rem, 4vw, 3.5rem); }
.check-list { display: grid; gap: .8rem; padding: 0; margin: 1.6rem 0 2rem; list-style: none; }
.check-list li { display: flex; gap: .75rem; color: #34485c; }
.check-list li::before { flex: 0 0 auto; display: grid; width: 24px; height: 24px; place-items: center; content: "✓"; color: var(--blue-700); background: var(--blue-100); border-radius: 50%; font-size: .75rem; font-weight: 800; }

.service-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after { position: absolute; right: -55px; bottom: -55px; width: 125px; height: 125px; content: ""; background: #f4ead5; border-radius: 50%; transition: transform .3s ease; }
.service-card:hover { z-index: 1; border-color: rgba(197,154,73,.58); box-shadow: var(--shadow-lg); transform: translateY(-7px); }
.service-card:hover::after { transform: scale(1.35); }
.service-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 1.35rem;
    place-items: center;
    color: var(--gold-600);
    background: #f5ecda;
    border: 1px solid #ead7af;
    border-radius: .9rem;
    font-family: "Manrope", sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
}
.service-card h3 { font-size: 1.25rem; }
.service-card p { position: relative; z-index: 2; min-height: 82px; color: var(--muted); font-size: .94rem; }
.text-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .4rem; color: var(--blue-700); font-family: "Manrope", sans-serif; font-size: .88rem; font-weight: 800; }
.text-link:hover { gap: .65rem; }

.enquiry-band {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--navy-950);
}
.enquiry-band::after { position: absolute; right: -140px; top: -160px; width: 420px; height: 420px; content: ""; background: rgba(47,128,237,.2); border-radius: 50%; }
.topic-list { display: grid; gap: .75rem; padding: 0; margin: 1.5rem 0 0; list-style: none; }
.topic-list li { display: flex; align-items: center; gap: .85rem; padding: .75rem 0; color: #dce8f4; border-bottom: 1px solid rgba(255,255,255,.1); }
.topic-list span { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: var(--blue-600); border-radius: .55rem; font-weight: 800; }
.enquiry-form-card { position: relative; z-index: 2; padding: 2rem; color: var(--ink); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.form-label { color: #314457; font-size: .86rem; font-weight: 700; }
.form-control, .form-select {
    min-height: 50px;
    color: var(--ink);
    border: 1px solid #cfd9e2;
    border-radius: .65rem;
}
textarea.form-control { min-height: 125px; }
.form-control:focus, .form-select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 .22rem rgba(47,128,237,.14); }
.form-text { color: #6c7885; font-size: .75rem; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.why-panel {
    padding: 2.6rem;
    color: #fff;
    background:
        radial-gradient(circle at 88% 8%, rgba(197,154,73,.2), transparent 27%),
        linear-gradient(145deg, var(--navy-900), var(--navy-950));
    border: 1px solid rgba(197,154,73,.32);
    border-radius: var(--radius-lg);
}
.why-panel p { color: #cbd9e6; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 0; margin: 1.8rem 0 0; list-style: none; }
.why-list li { padding: 1rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: .8rem; }
.why-list strong { display: block; color: #fff; font-size: .9rem; }
.why-list small { color: #aebfd0; }
.why-copy { padding-left: clamp(0rem, 4vw, 4rem); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.process-step { position: relative; padding: 1.75rem; background: var(--paper); border: 1px solid var(--line); border-top-color: rgba(197,154,73,.65); border-radius: var(--radius); box-shadow: 0 8px 26px rgba(7,23,39,.045); }
.process-step:not(:last-child)::after { position: absolute; top: 38px; right: -25px; z-index: 2; width: 48px; height: 1px; content: ""; background: #b9d4f3; }
.step-number { display: grid; width: 44px; height: 44px; margin-bottom: 1.2rem; place-items: center; color: var(--gold-600); background: #f5ecda; border: 1px solid #ead7af; border-radius: 50%; font-family: "Manrope", sans-serif; font-weight: 800; }
.process-step h3 { font-size: 1.05rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .9rem; }

.insight-card { height: 100%; padding: 1.7rem; background: var(--paper); border: 1px solid var(--line); border-top-color: rgba(197,154,73,.62); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.insight-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.insight-meta { display: flex; gap: .65rem; margin-bottom: .9rem; color: var(--blue-700); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.insight-card h3 { font-size: 1.2rem; }
.insight-card p { color: var(--muted); font-size: .91rem; }

.faq-wrap { max-width: 900px; margin: 0 auto; }
.accordion-item { margin-bottom: .8rem; overflow: hidden; border: 1px solid var(--line) !important; border-radius: .85rem !important; }
.accordion-button { padding: 1.15rem 1.3rem; color: var(--navy-900); font-family: "Manrope", sans-serif; font-weight: 700; }
.accordion-button:not(.collapsed) { color: var(--navy-900); background: #f6eedf; box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-body { color: var(--muted); }

.page-hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(197,154,73,.2), transparent 30%),
        linear-gradient(120deg, var(--navy-950), var(--navy-900) 65%, #194f7f);
    border-bottom: 1px solid rgba(197,154,73,.32);
}
.page-hero::after { position: absolute; right: -180px; top: -250px; width: 620px; height: 620px; content: ""; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 85px rgba(255,255,255,.03), 0 0 0 170px rgba(255,255,255,.02); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.page-hero p { max-width: 710px; margin: 1.25rem 0 0; color: #d3e1ee; font-size: 1.13rem; }
.breadcrumb { margin-bottom: 1.2rem; }
.breadcrumb-item, .breadcrumb-item a { color: #a9c2d8; font-size: .82rem; }
.breadcrumb-item.active { color: #fff; }
.breadcrumb-item + .breadcrumb-item::before { color: #7797b4; }

.feature-card { height: 100%; padding: 1.8rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.feature-card .feature-number { color: var(--gold-600); font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.35rem; font-weight: 700; }
.feature-card h3 { margin: .75rem 0 .65rem; font-size: 1.08rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .91rem; }

.principle-card { height: 100%; padding: 2rem; color: #fff; background: var(--navy-900); border: 1px solid rgba(227,198,129,.22); border-radius: var(--radius); }
.principle-card:nth-child(even) { background: linear-gradient(145deg, var(--blue-700), var(--navy-800)); }
.principle-card h3 { font-size: 1.2rem; }
.principle-card p { margin: 0; color: #d3e1ee; }

.service-detail-nav { position: sticky; top: 115px; padding: 1.25rem; background: var(--offwhite); border: 1px solid var(--line); border-radius: var(--radius); }
.service-detail-nav h2 { font-size: 1rem; }
.service-detail-nav ul { display: grid; gap: .4rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.service-detail-nav a { display: block; padding: .7rem .8rem; color: #405366; border-radius: .55rem; font-size: .86rem; }
.service-detail-nav a:hover, .service-detail-nav a.active { color: var(--blue-700); background: var(--blue-100); }
.service-content h2 { margin: 2.5rem 0 1rem; font-size: 1.9rem; }
.service-content h2:first-child { margin-top: 0; }
.service-content p { color: var(--muted); }
.service-bullet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; padding: 0; margin: 1.5rem 0; list-style: none; }
.service-bullet-grid li { display: flex; gap: .65rem; padding: 1rem; background: var(--offwhite); border-radius: .75rem; }
.service-bullet-grid li::before { content: "✓"; color: var(--blue-700); font-weight: 800; }
.info-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.info-box { padding: 1.4rem; border: 1px solid var(--line); border-radius: .9rem; }
.info-box span { color: var(--blue-700); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.info-box p { margin: .5rem 0 0; color: var(--ink); }

.contact-card { height: 100%; padding: 2rem; background: var(--offwhite); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card h3 { font-size: 1.1rem; }
.contact-card p, .contact-card a { color: var(--muted); }
.contact-card a:hover { color: var(--blue-700); }
.contact-form-shell { padding: 2.3rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.alert { border: 0; border-radius: .8rem; }
.alert-success { color: #0a5b48; background: #e5f6f1; }
.alert-danger { color: #8c221a; background: #fff0ee; }

.success-mark {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 1.5rem;
    place-items: center;
    color: var(--gold-600);
    background: #f5ecda;
    border: 1px solid #ead7af;
    border-radius: 50%;
    font-family: "Manrope", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.tool-card { height: 100%; padding: 2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.calculator-result { padding: 1.25rem; margin-top: 1.2rem; color: #fff; background: linear-gradient(145deg, var(--navy-900), var(--navy-950)); border: 1px solid rgba(227,198,129,.25); border-radius: .85rem; }
.result-row { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.result-row:last-child { border: 0; }
.result-row span { color: #c2d3e2; }
.result-row strong { font-family: "Manrope", sans-serif; }
.checklist-tool { display: grid; gap: .6rem; }
.checklist-tool label { display: flex; gap: .7rem; padding: .85rem; background: var(--offwhite); border-radius: .6rem; cursor: pointer; }
.checklist-tool input { margin-top: .35rem; }
.official-links { display: flex; flex-wrap: wrap; gap: .75rem; }

.calendar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.calendar-card { padding: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.calendar-card .cadence { display: inline-block; padding: .3rem .55rem; color: var(--blue-700); background: var(--blue-100); border-radius: 99px; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.calendar-card h3 { margin: 1rem 0 .65rem; font-size: 1.08rem; }
.calendar-card p { margin: 0; color: var(--muted); font-size: .89rem; }
.notice-box { padding: 1.25rem 1.4rem; color: #5d460f; background: #fbf4e6; border-left: 4px solid var(--gold-500); border-radius: .4rem .8rem .8rem .4rem; }

.article-nav { padding: 1.4rem; background: var(--offwhite); border-radius: var(--radius); }
.article-nav h2 { font-size: 1rem; }
.article-nav ol { padding-left: 1.1rem; margin: 1rem 0 0; }
.article-nav li { margin-bottom: .65rem; }
.article-nav a { color: #405366; font-size: .88rem; }
.article-nav a:hover { color: var(--blue-700); }
.article-block { padding: 2.2rem; margin-bottom: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); }
.article-block h2 { font-size: 1.65rem; }
.article-block h3 { margin-top: 1.6rem; font-size: 1.1rem; }
.article-block p, .article-block li { color: var(--muted); }

.legal-copy { max-width: 850px; }
.legal-copy h2 { margin: 2.3rem 0 .75rem; font-size: 1.45rem; }
.legal-copy p, .legal-copy li { color: var(--muted); }

.footer-cta { position: relative; padding: 3.5rem 0; overflow: hidden; color: #fff; background: linear-gradient(120deg, var(--blue-700), var(--navy-900)); border-top: 1px solid rgba(227,198,129,.38); }
.footer-cta::after { position: absolute; right: -100px; top: -180px; width: 420px; height: 420px; content: ""; border: 70px solid rgba(255,255,255,.06); border-radius: 50%; }
.footer-cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-cta h2 { max-width: 750px; margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); }

.site-footer { color: #c1d0dd; background: var(--navy-950); }
.footer-main { padding: 5rem 0 3.5rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; color: #fff; }
.footer-brand:hover { color: #fff; }
.footer-brand > span:last-child { display: flex; flex-direction: column; }
.footer-brand strong { color: #fff; font-family: "Manrope", sans-serif; font-size: .98rem; }
.footer-brand small { color: #8da6bc; font-size: .72rem; }
.brand-mark-light { background: var(--navy-800); }
.footer-intro { max-width: 360px; margin-top: 1.4rem; color: #93a9bc; font-size: .9rem; }
.site-footer h3 { margin-bottom: 1.15rem; color: #fff; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: .55rem; padding: 0; margin: 0; list-style: none; }
.site-footer li, .site-footer a { color: #98adbf; font-size: .87rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #6f8aa1; font-size: .78rem; }
.footer-bottom a { margin-left: 1.2rem; font-size: .78rem; }

.floating-contact { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 999; display: flex; align-items: center; gap: .55rem; padding: .72rem 1rem; color: #fff; background: var(--navy-900); border: 1px solid rgba(227,198,129,.48); border-radius: 99px; box-shadow: 0 12px 35px rgba(0,0,0,.2); font-size: .82rem; font-weight: 700; }
.floating-contact span:first-child { color: var(--gold-400); }
.floating-contact:hover { color: #fff; background: var(--blue-700); }

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

@media (max-width: 991.98px) {
    .section { padding: 5rem 0; }
    .navbar { min-height: 72px; }
    .navbar-collapse { max-height: calc(100vh - 90px); padding: 1rem 0 1.25rem; overflow-y: auto; }
    .navbar .nav-link { padding: .65rem .2rem !important; }
    .navbar .nav-link.active::after { display: none; }
    .nav-cta { display: inline-block; margin-top: .5rem; padding: .75rem 1rem !important; }
    .service-menu { min-width: 100%; border: 0; box-shadow: none; }
    .hero { min-height: auto; padding: 5.5rem 0 4.5rem; }
    .hero-dashboard { max-width: 480px; min-height: 435px; margin: 3rem auto 0; }
    .dashboard-main { right: 50%; transform: translateX(50%) rotate(1deg); }
    .floating-card.one { left: 0; }
    .floating-card.two { right: 0; }
    .intro-content, .why-copy { padding: 0; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step:nth-child(2)::after { display: none; }
    .calendar-grid { grid-template-columns: 1fr 1fr; }
    .service-detail-nav { position: static; }
    .footer-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767.98px) {
    h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
    .section { padding: 4.25rem 0; }
    .brand-copy strong { font-size: .9rem; }
    .brand-copy small { font-size: .63rem; }
    .brand-mark { width: 42px; height: 42px; }
    .hero { padding: 4.5rem 0 4rem; }
    .hero-dashboard { min-height: 390px; transform: scale(.88); transform-origin: top center; margin-bottom: -45px; }
    .dashboard-main { width: 330px; }
    .floating-card.two { right: -10px; }
    .floating-card.one { left: -10px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(2)::after { display: none; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .intro-visual { min-height: 430px; padding: 1.5rem; }
    .intro-visual blockquote { font-size: 1.5rem; }
    .intro-visual-footer { right: 1.5rem; bottom: 1.5rem; left: 1.5rem; }
    .service-card p { min-height: 0; }
    .why-panel, .contact-form-shell { padding: 1.5rem; }
    .why-list, .service-bullet-grid, .info-pair { grid-template-columns: 1fr; }
    .process-grid, .calendar-grid { grid-template-columns: 1fr; }
    .process-step::after { display: none; }
    .page-hero { padding: 4.5rem 0 4rem; }
    .article-block { padding: 1.45rem; }
    .footer-bottom a { margin: 0 1rem 0 0; }
    .floating-contact span:last-child { display: none; }
    .floating-contact { width: 48px; height: 48px; padding: 0; justify-content: center; border-radius: 50%; }
}

@media (max-width: 575.98px) {
    .section-heading { margin-bottom: 2.25rem; }
    .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 260px; }
    .hero-actions .btn { width: 100%; }
    .hero-note { gap: .7rem 1rem; }
    .service-card, .insight-card, .tool-card, .contact-card { padding: 1.5rem; }
    .enquiry-form-card { padding: 1.35rem; }
    .intro-visual-footer { align-items: flex-start; flex-direction: column; gap: .75rem; }
    .footer-cta .btn { width: 100%; }
}

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

@media print {
    .topbar, .site-header, .footer-cta, .site-footer, .floating-contact, .btn, .print-hide { display: none !important; }
    body { color: #000; background: #fff; font-size: 11pt; }
    .section, .page-hero { padding: 1.5rem 0; color: #000; background: #fff; }
    .page-hero p { color: #333; }
    .tool-card, .article-block, .calendar-card { break-inside: avoid; box-shadow: none; }
}
