@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --ocean-1000: #02070d;
  --ocean-950: #04101b;
  --ocean-900: #071a2a;
  --ocean-850: #0a2235;
  --ocean-800: #0c2b42;
  --ocean-700: #123f5f;
  --cyan: #51e6d1;
  --cyan-strong: #19cbb8;
  --blue: #4d8dff;
  --blue-strong: #2b6ff3;
  --violet: #8b7cff;
  --ink: #102235;
  --muted: #607286;
  --muted-light: #9db0c0;
  --paper: #ffffff;
  --canvas: #eef4f8;
  --canvas-2: #f7fafc;
  --line: #d8e3eb;
  --line-dark: rgba(255,255,255,.11);
  --glass: rgba(255,255,255,.065);
  --shadow-sm: 0 12px 30px rgba(4,24,41,.08);
  --shadow-md: 0 26px 70px rgba(4,24,41,.14);
  --shadow-lg: 0 40px 110px rgba(0,8,18,.42);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(77,141,255,.07), transparent 24rem),
    radial-gradient(circle at 92% 34%, rgba(81,230,209,.07), transparent 26rem),
    var(--canvas-2);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15,50,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,50,76,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

h1, h2, h3, .brand-copy, .form-heading span, .experience-stats strong {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
}
svg { display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.section { position: relative; padding: 7.5rem 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 1000; padding: .75rem 1rem; color: var(--ocean-900); background: white; border-radius: .65rem; box-shadow: var(--shadow-md); }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3,13,23,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 34px rgba(0,8,18,.13);
  backdrop-filter: blur(18px) saturate(140%);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; color: white; text-decoration: none; }
.brand-mark { width: 36px; height: 36px; flex: 0 0 auto; filter: drop-shadow(0 7px 16px rgba(77,141,255,.22)); }
.brand-copy { display: inline-flex; align-items: baseline; gap: .27rem; font-size: 1.18rem; line-height: 1; letter-spacing: -.04em; }
.brand-copy strong { font-weight: 800; }
.brand-copy span { color: var(--cyan); font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 1.65rem; }
.site-nav a { position: relative; color: #d7e5ef; text-decoration: none; font-size: .88rem; font-weight: 700; transition: color .18s ease; }
.site-nav a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 2px; border-radius: 99px; background: linear-gradient(90deg, var(--cyan), var(--blue)); transition: right .2s ease; }
.site-nav a:not(.button):hover { color: white; }
.site-nav a:not(.button):hover::after { right: 0; }
.nav-toggle { display: none; padding: .5rem; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; border-radius: 2px; background: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .83rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #03131d; background: linear-gradient(135deg, #67f0da, #3ed4c4); box-shadow: 0 15px 38px rgba(40,214,194,.24); }
.button-primary:hover { box-shadow: 0 19px 46px rgba(40,214,194,.34); }
.button-secondary { color: white; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.button-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.button-small { min-height: 41px; padding: .68rem 1rem; color: #04131c !important; background: linear-gradient(135deg, #67f0da, #3ed4c4); }
.button-full { width: 100%; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 760px;
  padding: 7.8rem 0 6.4rem;
  color: white;
  background:
    radial-gradient(circle at 68% 24%, rgba(77,141,255,.27), transparent 24rem),
    radial-gradient(circle at 16% 4%, rgba(81,230,209,.16), transparent 25rem),
    linear-gradient(138deg, #071c2d 0%, #03101b 52%, #061826 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8%;
  right: -8%;
  bottom: -70px;
  height: 220px;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  background: linear-gradient(180deg, rgba(35,135,190,.24), rgba(4,16,27,.02));
  transform: rotate(-2deg);
  box-shadow: 0 -1px 0 rgba(81,230,209,.18);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -10% -112px;
  height: 210px;
  border-radius: 50% 50% 0 0 / 45% 45% 0 0;
  background: linear-gradient(180deg, rgba(5,55,79,.78), #04111d);
  transform: rotate(1.4deg);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse at 63% 41%, black 0%, transparent 72%);
}
.hero-orb { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; }
.hero-orb-one { width: 430px; height: 430px; right: -210px; top: -175px; border: 1px solid rgba(81,230,209,.18); box-shadow: 0 0 0 60px rgba(81,230,209,.02), 0 0 0 120px rgba(81,230,209,.012); }
.hero-orb-two { width: 250px; height: 250px; left: -120px; bottom: 10px; border: 1px solid rgba(77,141,255,.25); box-shadow: 0 0 0 48px rgba(77,141,255,.022); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 5rem; align-items: center; }
.availability-pill { display: none; }
.eyebrow { margin: 0 0 1rem; color: var(--cyan); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.dark-eyebrow { color: #069d90; }
.hero h1 { max-width: 720px; margin: 0 0 1.45rem; font-size: clamp(3.3rem, 5.8vw, 5.65rem); line-height: .98; letter-spacing: -.06em; font-weight: 700; }
.hero h1 span { display: inline-block; color: transparent; background: linear-gradient(100deg, #64ecd8 5%, #6f9fff 62%, #a38dff 100%); background-clip: text; -webkit-background-clip: text; }
.hero-intro { max-width: 670px; margin: 0; color: #b8cbd9; font-size: clamp(1.08rem, 1.75vw, 1.24rem); line-height: 1.67; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.trust-row { margin-top: 3rem; padding-top: 1.65rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; border-top: 1px solid rgba(255,255,255,.11); }
.trust-row div { position: relative; display: grid; gap: .08rem; }
.trust-row strong { color: white; font-family: "Sora", sans-serif; font-size: .94rem; }
.trust-row span { color: #829caf; font-size: .75rem; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(77,141,255,.24), transparent 68%); filter: blur(13px); }
.support-window { position: relative; z-index: 2; width: min(100%, 510px); overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 25px; background: linear-gradient(155deg, rgba(17,48,73,.94), rgba(7,25,42,.96)); box-shadow: 0 38px 100px rgba(0,4,12,.52), inset 0 1px 0 rgba(255,255,255,.08); transform: perspective(1100px) rotateY(-4deg) rotateX(1.5deg); backdrop-filter: blur(20px); }
.window-bar { min-height: 52px; padding: 0 1.05rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #8ea7ba; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.028); font-size: .68rem; }
.window-dots { display: flex; gap: .35rem; }
.window-dots span { width: 6px; height: 6px; border-radius: 50%; background: #3e5b70; }
.window-dots span:nth-child(1) { background: #ff7a7a; }
.window-dots span:nth-child(2) { background: #ffd06d; }
.window-dots span:nth-child(3) { background: #57d3a1; }
.secure-label { justify-self: end; color: var(--cyan); }
.window-body { padding: 1.45rem; }
.window-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.window-heading > div { display: grid; }
.mini-label { color: #7793a8; font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }
.window-heading strong { font-family: "Sora", sans-serif; font-size: 1.08rem; }
.status-badge { display: inline-flex; align-items: center; gap: .42rem; padding: .4rem .62rem; color: #8af0df; border: 1px solid rgba(81,230,209,.18); border-radius: 999px; background: rgba(81,230,209,.08); font-size: .63rem; font-weight: 800; }
.status-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(81,230,209,.1); }
.dashboard-grid { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: .72rem; }
.dash-card { min-height: 116px; padding: .9rem; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(255,255,255,.075); border-radius: 14px; background: rgba(255,255,255,.035); }
.dash-card.featured { background: linear-gradient(145deg, rgba(77,141,255,.22), rgba(81,230,209,.075)); border-color: rgba(81,230,209,.15); }
.dash-card svg { width: 19px; height: 19px; margin-bottom: .8rem; fill: none; stroke: var(--cyan); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dash-card span { color: #7793a8; font-size: .64rem; }
.dash-card strong { color: #ecf5fb; font-size: .78rem; }
.response-strip { margin-top: .78rem; padding: .82rem .9rem; display: grid; grid-template-columns: auto 1fr auto; gap: .72rem; align-items: center; border: 1px solid rgba(255,255,255,.075); border-radius: 13px; background: rgba(255,255,255,.035); }
.response-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; color: var(--cyan); background: rgba(81,230,209,.09); }
.response-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.response-strip div:nth-child(2) { display: grid; }
.response-strip span { color: #7590a5; font-size: .61rem; }
.response-strip strong { font-size: .78rem; }
.response-strip .arrow { color: var(--cyan); font-size: .9rem; }
.floating-card { position: absolute; z-index: 3; padding: .64rem .75rem; display: flex; align-items: center; gap: .48rem; color: #dceaf4; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(4,18,31,.86); box-shadow: 0 16px 36px rgba(0,0,0,.25); backdrop-filter: blur(14px); font-size: .66rem; font-weight: 700; }
.floating-card span { width: 20px; height: 20px; display: grid; place-items: center; color: var(--ocean-950); border-radius: 6px; background: var(--cyan); font-size: .66rem; font-weight: 900; }
.floating-card-one { left: -1%; bottom: 15%; }
.floating-card-two { right: -2%; top: 16%; }

.credibility-strip { position: relative; z-index: 3; padding: 1.2rem 0; color: #71869a; border-bottom: 1px solid rgba(17,61,91,.1); background: rgba(255,255,255,.88); box-shadow: 0 12px 32px rgba(4,24,41,.04); backdrop-filter: blur(12px); }
.credibility-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; font-size: .77rem; }
.credibility-inner > span { color: #9aa9b7; text-transform: uppercase; letter-spacing: .14em; font-size: .63rem; font-weight: 800; }
.credibility-inner strong { color: #4f6578; font-size: .75rem; }
.credibility-inner i { width: 3px; height: 3px; border-radius: 50%; background: #65d7c8; }

.section-heading { max-width: 820px; margin-bottom: 3.2rem; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; gap: 5rem; align-items: end; }
.section-heading h2, .process-intro h2, .about-panel h2, .location-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(2.35rem, 4.4vw, 4.05rem); line-height: 1.04; letter-spacing: -.055em; font-weight: 650; }
.split-heading > p { margin: 0 0 .3rem; color: var(--muted); font-size: 1.02rem; }

.services-section { overflow: hidden; background: linear-gradient(180deg, #f8fbfd 0%, #edf4f8 100%); }
.services-section::before { content: ""; position: absolute; width: 580px; height: 580px; right: -260px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(77,141,255,.11), transparent 68%); }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { position: relative; min-height: 258px; padding: 1.55rem; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(18,63,95,.11); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(248,252,255,.86)); box-shadow: 0 12px 32px rgba(4,24,41,.055), inset 0 1px 0 rgba(255,255,255,.95); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.service-card::before { content: ""; position: absolute; inset: 0; opacity: 0; background: radial-gradient(circle at 15% 0%, rgba(81,230,209,.13), transparent 42%); transition: opacity .22s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(43,111,243,.22); box-shadow: 0 24px 55px rgba(4,24,41,.11); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-card-large { grid-column: span 2; display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-content: start; background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(233,246,250,.92)); }
.service-card h3 { margin: 1.15rem 0 .5rem; font-size: 1.08rem; letter-spacing: -.025em; }
.service-card-large h3 { margin-top: .15rem; font-size: 1.35rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.service-icon { width: 38px; height: 38px; display: grid; place-items: center; color: #087f75; border: 1px solid rgba(25,203,184,.14); border-radius: 11px; background: linear-gradient(145deg, #e3faf6, #f0fffc); box-shadow: 0 8px 18px rgba(25,203,184,.08); }
.service-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-number { position: absolute; right: 1.1rem; top: 1rem; color: #9fb0bd; font-size: .63rem; font-weight: 800; letter-spacing: .15em; opacity: .72; }
.service-card-accent { color: white; border-color: rgba(255,255,255,.06); background: linear-gradient(145deg, #123b58, #061827); box-shadow: 0 20px 55px rgba(4,24,41,.2); }
.service-card-accent::after { content: ""; position: absolute; width: 180px; height: 180px; right: -75px; bottom: -80px; border-radius: 50%; border: 1px solid rgba(81,230,209,.2); box-shadow: 0 0 0 34px rgba(81,230,209,.025), 0 0 0 68px rgba(81,230,209,.015); }
.service-card-accent .service-icon { color: var(--cyan); border-color: rgba(81,230,209,.14); background: rgba(81,230,209,.08); box-shadow: none; }
.service-card-accent p { color: #a9bdce; }
.service-card-accent a { margin-top: auto; display: inline-flex; align-items: center; gap: .5rem; color: var(--cyan); text-decoration: none; font-size: .84rem; font-weight: 800; }

.process-section { overflow: hidden; color: white; background: linear-gradient(145deg, #071c2d, #03101b); }
.process-section::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent); }
.process-grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 6rem; align-items: start; }
.process-intro > p:not(.eyebrow) { max-width: 520px; color: #9eb3c3; }
.availability-card { margin-top: 2.25rem; padding: 1rem; display: flex; align-items: center; gap: .85rem; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.045); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.availability-icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--cyan); border-radius: 10px; background: rgba(81,230,209,.09); }
.availability-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.availability-card div { display: grid; }
.availability-card p { margin: 0; color: #89a2b5; font-size: .76rem; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { padding: 1.65rem 0; display: grid; grid-template-columns: 54px 1fr; gap: 1.15rem; border-top: 1px solid rgba(255,255,255,.11); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.11); }
.step-number { color: var(--cyan); font-family: "Sora", sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.process-list h3 { margin: 0 0 .38rem; font-size: 1.15rem; }
.process-list p { max-width: 560px; margin: 0; color: #91a9bb; }

.about-section { overflow: hidden; background: linear-gradient(180deg, #edf4f8, #f8fbfd); }
.about-section::after { content: ""; position: absolute; width: 480px; height: 480px; left: -260px; bottom: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(81,230,209,.1), transparent 70%); }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: 5.5rem; align-items: start; }
.about-panel { padding: 2.25rem; border: 1px solid rgba(18,63,95,.11); border-radius: var(--radius-lg); background: rgba(255,255,255,.86); box-shadow: var(--shadow-md); backdrop-filter: blur(10px); }
.experience-stats { margin-top: 2.35rem; display: grid; gap: .85rem; }
.experience-stats div { padding: .95rem 0; display: grid; grid-template-columns: 88px 1fr; gap: 1rem; align-items: center; border-top: 1px solid var(--line); }
.experience-stats strong { color: var(--blue-strong); font-size: 1.5rem; line-height: 1; letter-spacing: -.05em; }
.experience-stats span { color: var(--muted); font-size: .84rem; }
.about-copy { padding-top: 1.2rem; }
.about-copy p { color: var(--muted); font-size: 1rem; }
.about-copy .lead { color: var(--ink); font-size: 1.21rem; line-height: 1.56; }
.principles { margin-top: 1.8rem; display: grid; gap: .72rem; }
.principles span { display: flex; align-items: center; gap: .66rem; color: #435a70; font-weight: 700; }
.principles i { width: 20px; height: 20px; display: grid; place-items: center; color: #087f75; border-radius: 50%; background: #dff8f4; font-style: normal; font-size: .62rem; font-weight: 900; }

.location-section { padding: 0 0 7.5rem; background: #f8fbfd; }
.location-card { position: relative; overflow: hidden; display: grid; grid-template-columns: .9fr 1.1fr; color: white; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); background: linear-gradient(145deg, #0d3049, #061724); box-shadow: var(--shadow-md); }
.location-card::after { content: ""; position: absolute; width: 400px; height: 400px; right: -220px; top: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(77,141,255,.18), transparent 68%); }
.location-map { position: relative; min-height: 345px; overflow: hidden; background: linear-gradient(145deg, #0b304b, #061824); }
.map-grid { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 31px 31px; transform: perspective(500px) rotateX(60deg) scale(1.5); transform-origin: center bottom; }
.map-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(81,230,209,.28); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-one { width: 190px; height: 190px; }
.ring-two { width: 108px; height: 108px; background: rgba(81,230,209,.025); }
.map-pin { position: absolute; left: 50%; top: 46%; width: 42px; height: 42px; display: grid; place-items: center; color: var(--ocean-950); border-radius: 13px 13px 13px 4px; background: linear-gradient(135deg, #6aefda, #3dd7c6); box-shadow: 0 16px 38px rgba(81,230,209,.27); transform: translate(-50%, -50%) rotate(-45deg); }
.map-pin svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transform: rotate(45deg); }
.map-label { position: absolute; left: 50%; top: 65%; padding: .36rem .65rem; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; background: rgba(4,18,31,.74); transform: translateX(-50%); font-size: .65rem; font-weight: 800; backdrop-filter: blur(10px); }
.location-copy { position: relative; z-index: 1; padding: 3.2rem; display: flex; flex-direction: column; justify-content: center; }
.location-copy > p:not(.eyebrow) { color: #a7bdcd; }
.location-options { margin-top: 1.2rem; display: grid; gap: .72rem; }
.location-options span { padding-top: .72rem; color: #9db3c4; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }
.location-options strong { margin-right: .5rem; color: white; }

.contact-section { position: relative; overflow: hidden; color: white; background: linear-gradient(145deg, #04111d, #071d2e); }
.contact-section::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.17) 1px, transparent 0); background-size: 28px 28px; mask-image: linear-gradient(90deg, #000, transparent 58%); }
.contact-glow { position: absolute; width: 650px; height: 650px; left: -320px; bottom: -380px; border-radius: 50%; background: radial-gradient(circle, rgba(77,141,255,.2), transparent 67%); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: 5rem; align-items: start; }
.contact-copy > p:not(.eyebrow, .response-note) { color: #a7bdcd; font-size: 1.02rem; }
.contact-facts { margin: 2rem 0; display: grid; gap: .95rem; }
.contact-facts > div { display: flex; gap: .8rem; align-items: flex-start; }
.fact-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: var(--cyan); border: 1px solid rgba(81,230,209,.15); border-radius: 10px; background: rgba(81,230,209,.075); font-size: .82rem; font-weight: 900; }
.contact-facts div div { display: grid; }
.contact-facts small { color: #718da2; text-transform: uppercase; letter-spacing: .12em; font-size: .59rem; font-weight: 800; }
.contact-facts a { color: white; text-decoration-color: var(--cyan); text-underline-offset: 4px; font-weight: 800; }
.contact-facts p { margin: 0; color: #bed0dc; }
.response-note { padding: .95rem 1rem; color: #9db4c5; border-left: 2px solid var(--cyan); border-radius: 0 10px 10px 0; background: rgba(255,255,255,.035); font-size: .8rem; }
.contact-form { padding: 1.9rem; color: var(--ink); border: 1px solid rgba(255,255,255,.55); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,249,252,.96)); box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.95); }
.form-heading { margin-bottom: 1.35rem; padding-bottom: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.form-heading span { font-size: 1rem; font-weight: 700; }
.form-heading small { color: #8394a3; font-size: .64rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: block; margin: 0 0 .36rem; color: #385067; font-size: .73rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin: 0 0 1rem; padding: .82rem .87rem; color: var(--ink); border: 1px solid #ccd9e2; border-radius: 10px; background: rgba(255,255,255,.92); box-shadow: inset 0 1px 2px rgba(4,24,41,.025); transition: border-color .18s ease, box-shadow .18s ease; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(77,141,255,.1); }
.form-status { min-height: 1.5em; margin: .65rem 0 0; color: var(--muted); font-size: .77rem; }

.site-footer { color: #9db2c2; background: #020a11; }
.footer-main { padding: 3.7rem 0 2.8rem; display: grid; grid-template-columns: 1.6fr .7fr .8fr; gap: 4rem; }
.footer-brand-block p { max-width: 430px; margin: 1rem 0 0; color: #70899b; font-size: .84rem; }
.footer-column { display: grid; align-content: start; gap: .58rem; }
.footer-column strong { margin-bottom: .24rem; color: white; font-size: .75rem; }
.footer-column a { color: #8096a7; text-decoration: none; font-size: .8rem; }
.footer-column a:hover { color: white; }
.footer-bottom { padding: 1.15rem 0; display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(255,255,255,.075); }
.footer-bottom p { margin: 0; color: #5f7789; font-size: .7rem; }

.privacy-page { min-height: 100vh; color: var(--ink); background: radial-gradient(circle at 12% 10%, rgba(77,141,255,.09), transparent 22rem), linear-gradient(145deg, #edf4f8, #f8fbfd); }
.privacy-wrap { max-width: 850px; margin: 0 auto; padding: 5rem 1.25rem; }
.privacy-wrap article { padding: clamp(1.7rem, 5vw, 4rem); border: 1px solid rgba(18,63,95,.11); border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-md); backdrop-filter: blur(10px); }
.privacy-page .brand { color: var(--ocean-900); }
.privacy-page .brand-copy span { color: #078d83; }
.privacy-wrap h1 { margin: 0 0 1.2rem; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.055em; }
.privacy-wrap h2 { margin: 2.2rem 0 .55rem; font-size: 1.2rem; }
.privacy-wrap p { color: var(--muted); }
.privacy-wrap a:not(.brand) { color: var(--blue-strong); font-weight: 700; }
.privacy-return { display: inline-flex; margin-top: 1.4rem; text-decoration: none; }

@media (max-width: 1060px) {
  .hero-grid { gap: 2.7rem; }
  .floating-card-two { right: -1%; }
  .process-grid { gap: 3.6rem; }
  .about-grid { gap: 3.2rem; }
  .contact-grid { gap: 3.1rem; }
}

@media (max-width: 900px) {
  .section { padding: 5.7rem 0; }
  .hero { min-height: auto; padding: 5.8rem 0 6rem; }
  .hero-grid, .process-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 4rem; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { display: none; }
  .availability-pill { width: fit-content; margin: 0 auto 1.1rem; padding: .43rem .72rem; display: inline-flex; align-items: center; gap: .48rem; color: #b9d5e3; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; background: rgba(255,255,255,.045); font-size: .68rem; }
  .availability-pill span { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(81,230,209,.1); }
  .hero-intro { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .trust-row { max-width: 680px; margin-inline: auto; }
  .hero-visual { min-height: 460px; }
  .support-window { transform: none; }
  .floating-card-one { left: 3%; }
  .floating-card-two { right: 3%; }
  .split-heading { grid-template-columns: 1fr; gap: 1.3rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-large { grid-column: span 2; }
  .about-copy { padding-top: 0; }
  .location-card { grid-template-columns: 1fr; }
  .location-map { min-height: 290px; }
  .contact-copy { max-width: 700px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 1.5rem), var(--max)); }
  .section { padding: 4.7rem 0; }
  .site-header { background: rgba(3,13,23,.93); }
  .nav-wrap { min-height: 67px; }
  .brand-mark { width: 33px; height: 33px; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: .75rem; right: .75rem; top: 66px; padding: .7rem; flex-direction: column; align-items: stretch; gap: .2rem; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(7,27,44,.98); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem .8rem; }
  .site-nav a::after { display: none; }
  .site-nav .button { margin-top: .25rem; }
  .hero { padding-top: 4.7rem; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { grid-template-columns: 1fr; gap: .72rem; }
  .trust-row div { padding: .65rem; border-radius: 10px; background: rgba(255,255,255,.035); }
  .hero-visual { min-height: 390px; }
  .support-window { border-radius: 18px; }
  .window-body { padding: 1rem; }
  .window-heading { align-items: flex-start; flex-direction: column; }
  .dash-card { min-height: 102px; }
  .floating-card { display: none; }
  .credibility-inner > span, .credibility-inner i { display: none; }
  .credibility-inner { gap: .6rem 1rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-large { grid-column: span 1; display: flex; }
  .service-card-large h3 { margin-top: 1.15rem; }
  .service-card { min-height: 230px; }
  .process-list li { grid-template-columns: 46px 1fr; }
  .about-panel { padding: 1.5rem; }
  .experience-stats div { grid-template-columns: 78px 1fr; }
  .location-copy { padding: 2rem 1.4rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 1.3rem; }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.5rem; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: .3rem; }
}

@media (max-width: 440px) {
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .dash-card { padding: .75rem; }
  .dash-card svg { margin-bottom: .62rem; }
  .response-strip { padding: .75rem; }
  .location-map { min-height: 245px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand-block { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Seamless server-side enquiry form */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-privacy {
  margin: .75rem 0 0;
  color: #64798a;
  font-size: .72rem;
  line-height: 1.55;
}

.form-privacy a {
  color: var(--blue-strong);
  font-weight: 750;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-status {
  min-height: 1.5em;
  margin: .8rem 0 0;
  padding: 0;
  border-radius: 10px;
  font-size: .77rem;
  line-height: 1.5;
}

.form-status-success,
.form-status-error {
  padding: .75rem .85rem;
}

.form-status-success {
  color: #075b4e;
  border: 1px solid rgba(9, 148, 122, .22);
  background: rgba(36, 205, 170, .1);
}

.form-status-error {
  color: #8c2430;
  border: 1px solid rgba(194, 48, 66, .2);
  background: rgba(218, 67, 84, .08);
}
