:root {
  --navy: #06151e;
  --navy2: #0a2430;
  --panel: #0c222c;
  --gold: #efbb16;
  --blue: #5ec4ed;
  --coral: #ff5962;
  --cream: #f7f5ef;
  --ink: #0b1a22;
  --muted: #627078;
  --line: rgba(255, 255, 255, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--navy);
  color: #fff;
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.55;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}
a {
  color: inherit;
}
.topbar {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: min(1080px, 92vw);
  height: 78px;
  padding: 0 18px 0 25px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background: rgba(4, 17, 24, 0.92);
  backdrop-filter: blur(15px);
}
.logo {
  width: 155px;
  margin-right: auto;
  text-decoration: none;
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  font-weight: 900;
  font-size: 1.08rem;
  line-height: 0.82;
  letter-spacing: 0.08em;
}
.wordmark > span {
  color: var(--gold);
  font-size: 0.72em;
  letter-spacing: 0.19em;
}
footer > .wordmark {
  font-size: 1.45rem;
}
.topbar nav {
  display: flex;
  gap: 20px;
}
.topbar nav a {
  text-decoration: none;
  font-size: 0.88rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 0;
  border-radius: 10px;
  background: var(--gold);
  color: #06151e;
  font-weight: 800;
  font-size: 0.78rem;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  filter: brightness(1.08);
}
.btn.small {
  border-radius: 12px;
  padding: 13px 22px;
}
.menu {
  display: none;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
}
.page-main {
  background: var(--cream);
  color: var(--ink);
  min-height: 75vh;
  padding-top: 145px;
}
.page-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 70px max(5vw, 24px) 55px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  max-width: 940px;
  margin: 0 auto 24px;
}
.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.16rem;
}
.content-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 55px max(5vw, 24px);
}
.content-section.narrow { max-width: 900px; }
.content-section h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 22px; }
.content-section h3 { font-size: 1.4rem; margin: 30px 0 10px; }
.content-section p, .content-section li { color: var(--muted); }
.content-section li { margin: 9px 0; }
.content-grid, .link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.content-card, .link-card {
  padding: 28px;
  border: 1px solid #ded8cb;
  border-radius: 16px;
  background: #fff;
}
.content-card h2, .content-card h3, .link-card h3 { font-size: 1.4rem; margin: 0 0 12px; }
.content-card p, .link-card p { margin-bottom: 0; }
.link-card { text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.link-card:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(5,20,26,.1); }
.link-card span { display: block; margin-top: 20px; color: #8f6910; font-weight: 800; font-size: .75rem; }
.content-band {
  background: var(--navy2);
  color: #fff;
}
.content-band .content-section p, .content-band .content-section li { color: #b8c4c9; }
.content-band .content-card { background: #102c39; border-color: rgba(255,255,255,.12); }
.content-band .content-card h3 { color: #fff; }
.check-list { padding-left: 22px; columns: 2; column-gap: 50px; }
.comparison-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }
.comparison-table th, .comparison-table td { padding: 16px; border-bottom: 1px solid #e1ddd4; text-align: left; vertical-align: top; }
.comparison-table th { background: var(--navy2); color: #fff; }
.comparison-table td { color: var(--muted); }
.faq-list details { border-bottom: 1px solid #d9d4c9; padding: 20px 0; }
.faq-list summary { cursor: pointer; font-weight: 800; font-size: 1.12rem; }
.faq-list details p { margin: 14px 0 0; }
.cta-panel { padding: 38px; border-radius: 18px; background: var(--navy2); color: #fff; text-align: center; }
.cta-panel p { color: #bdc8cc; max-width: 680px; margin: 0 auto 24px; }
.breadcrumb { max-width: 1120px; margin: 0 auto; padding: 22px max(5vw,24px) 0; color: var(--muted); font-size: .8rem; }
.breadcrumb a { color: #815f10; }
.inline-link { color: #78570a; font-weight: 700; }
.mini-proof { display:grid; grid-template-columns: 1fr 1fr; gap:24px; align-items:center; }
.mini-proof img { width:100%; border-radius:16px; border:1px solid #d8d2c5; }
.hero {
  height: min(850px, 100vh);
  min-height: 680px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
}
.hero:before,
.pricing:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: repeating-radial-gradient(
    ellipse at 50% 50%,
    transparent 0 13px,
    rgba(99, 198, 236, 0.25) 14px 15px
  );
}
.hero-art {
  position: absolute;
  inset: 115px 4vw 20px;
  opacity: 0.73;
}
.screen {
  position: absolute;
  object-fit: cover;
  border: 5px solid #172c35;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.main-screen {
  width: 65%;
  height: 72%;
  right: 4%;
  top: 2%;
}
.side-screen {
  width: 43%;
  height: 48%;
  left: 5%;
  bottom: 5%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 17, 24, 0.25),
    rgba(4, 17, 24, 0.8) 65%,
    var(--navy)
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 110px 20px 0;
}
.kicker {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}
.kicker.dark {
  color: #9b7012;
}
.hero h1 {
  font-size: clamp(3.4rem, 6.3vw, 6.6rem);
  margin-bottom: 22px;
}
.hero p {
  font-size: 1.12rem;
  max-width: 680px;
  margin: 0 auto 32px;
  color: #dce3e6;
}
.hero-actions {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
}
.text-btn {
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 4px;
}
.section {
  padding: 105px max(5vw, 24px);
}
.intro {
  background: var(--cream);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 600px);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  justify-content: center;
}
.intro h2,
.section-head h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
  margin-bottom: 25px;
}
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.video-card {
  position: relative;
  border: 1px solid #dbc271;
  border-radius: 18px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(5, 20, 26, 0.16);
}
.video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.972 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}
.video-card > span {
  position: absolute;
  top: 25px;
  left: 25px;
  background: var(--gold);
  padding: 7px 11px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 800;
}
.video-card > div {
  padding: 18px 10px 8px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.video-card small {
  color: var(--muted);
}
.benefits {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.benefits:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: repeating-radial-gradient(
    ellipse at 20% 50%,
    transparent 0 14px,
    rgba(94, 196, 237, 0.2) 15px 16px
  );
}
.section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 55px;
}
.section-head > p {
  color: #b7c1c5;
}
.section-head.compact {
  color: var(--ink);
}
.section-head.compact p {
  color: var(--muted);
}
.content-section > .section-head.compact {
  color: #fff;
}
.content-section > .section-head.compact p {
  color: #b7c1c5;
}
.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: auto;
}
.benefit-grid article {
  background: linear-gradient(
    145deg,
    rgba(22, 62, 76, 0.92),
    rgba(6, 21, 30, 0.96)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px;
  min-height: 245px;
}
.benefit-grid article > span {
  color: var(--blue);
  font-weight: 800;
}
.benefit-grid h3 {
  font-size: 1.45rem;
  margin: 28px 0 14px;
}
.benefit-grid p {
  color: #aebdc3;
  margin: 0;
}
.showcase {
  background: var(--cream);
  color: var(--ink);
}
.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(220px, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: auto;
  align-items: stretch;
}
.wide-shot {
  display: block;
  width: 100%;
  aspect-ratio: 1.972 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  border: 1px solid #d8d2c5;
}
.photo-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
}
.photo-stack img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  border-radius: 18px;
}
.project-facts {
  max-width: 1200px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ded8cb;
  border-radius: 14px;
  background: #fff;
}
.project-facts div {
  padding: 23px;
  text-align: center;
}
.project-facts div + div {
  border-left: 1px solid #ded8cb;
}
.project-facts b {
  display: block;
  color: #17476a;
  font-size: 1.2rem;
}
.project-facts span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.notice {
  max-width: 900px;
  text-align: center;
  margin: 35px auto 0;
  color: #758087;
  font-size: 0.8rem;
}
.steps {
  background: #0a1b24;
}
.step-list {
  max-width: 1000px;
  margin: auto;
  border-top: 1px solid var(--line);
}
.step-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.step-list article > b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
}
.step-list h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}
.step-list p {
  color: #aab9bf;
  margin: 0;
}
.pricing {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.pricing > * {
  position: relative;
  z-index: 1;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: auto;
}
.price {
  --accent: var(--blue);
  position: relative;
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--accent) 25%, var(--panel)) 0%,
    var(--panel) 28%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.price.gold {
  --accent: var(--gold);
}
.price.coral {
  --accent: var(--coral);
}
.price > span {
  color: var(--accent);
  font-weight: 800;
}
.price > p {
  color: #aeb8bd;
  min-height: 75px;
  margin-top: 25px;
}
.price h3 {
  color: var(--accent);
  font-size: 4rem;
  margin: 30px 0 0;
}
.price > small {
  color: var(--accent);
  font-size: 0.65rem;
}
.price > a {
  display: block;
  margin: 30px 0;
  padding: 13px;
  text-align: center;
  border-radius: 9px;
  background: var(--accent);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
}
.price h4 {
  font-size: 1.05rem;
}
.price ul {
  padding-left: 20px;
  color: #c0c9cd;
}
.price li {
  margin: 10px 0;
}
.price h4 {
  color: #fff;
}
.care {
  max-width: 1200px;
  margin: 24px auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(100deg, #102c39, #3b3214);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.4fr 0.5fr 1fr;
  gap: 30px;
  align-items: center;
}
.care span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}
.care h3 {
  margin: 7px 0 0;
  color: #fff;
}
.care strong {
  font-size: 2.8rem;
  color: var(--gold);
}
.care strong small {
  font-size: 0.7rem;
}
.care p {
  color: #bec6c9;
  margin: 0;
}
.enquiry {
  background: var(--cream);
  color: var(--ink);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
}
.enquiry-copy h2 {
  font-size: clamp(2.7rem, 4.5vw, 5rem);
}
.enquiry-copy p,
.enquiry-copy li {
  color: var(--muted);
}
.enquiry-copy li {
  margin: 10px 0;
}
form {
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(5, 20, 26, 0.13);
}
label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 16px;
}
label > span {
  display: block;
  font-weight: 400;
  color: var(--muted);
}
input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: 1px solid #cfd3d1;
  border-radius: 8px;
  background: #fff;
  font: inherit;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(94, 196, 237, 0.28);
  border-color: #349bc4;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.consent input {
  width: auto;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.turnstile-wrap {
  min-height: 65px;
  margin: 4px 0 14px;
}
.form-status.error {
  color: #a62828;
}
.form-status.success {
  color: #16805e;
}
footer {
  padding: 60px max(5vw, 24px);
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.6fr 0.9fr;
  gap: 40px;
  background: #041117;
  color: #fff;
  border-top: 1px solid var(--line);
}
footer img {
  width: 155px;
}
footer p {
  color: #c0c9cc;
}
footer div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer a {
  color: #c0c9cc;
  text-decoration: none;
}
footer small {
  color: #76858b;
  margin-top: 15px;
}
@media (max-width: 900px) {
  .topbar nav {
    display: none;
  }
  .topbar nav.open {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0;
    top: 72px;
    left: 0;
    right: 0;
    padding: 12px 18px;
    background: #06151e;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
  }
  .topbar nav.open a { padding: 11px 4px; }
  .topbar {
    gap: 18px;
  }
  .menu {
    display: block;
  }
  .hero-art {
    inset: 120px 0 20px;
  }
  .intro,
  .enquiry {
    grid-template-columns: 1fr;
  }
  .benefit-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .photo-stack {
    grid-template-columns: 1fr 1fr;
  }
  .care {
    grid-template-columns: 1fr 1fr;
  }
  .care p {
    grid-column: 1/-1;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  .content-grid, .link-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .topbar {
    top: 14px;
    height: 64px;
  }
  .logo {
    width: 112px;
  }
  .topbar .small {
    display: none;
  }
  .hero {
    min-height: 640px;
  }
  .hero h1 {
    font-size: 3.25rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .main-screen {
    width: 92%;
    right: 4%;
    height: 58%;
  }
  .side-screen {
    display: none;
  }
  .section {
    padding: 75px 20px;
  }
  .benefit-grid,
  .price-grid,
  .project-facts,
  .field-row {
    grid-template-columns: 1fr;
  }
  .project-facts div + div {
    border-left: 0;
    border-top: 1px solid #ded8cb;
  }
  .care {
    grid-template-columns: 1fr;
  }
  .photo-stack {
    grid-template-columns: 1fr;
  }
  .video-card > div {
    display: block;
  }
  .step-list article {
    grid-template-columns: 58px 1fr;
  }
  .price > p {
    min-height: 0;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .page-main { padding-top: 90px; }
  .page-hero { padding-top: 55px; }
  .content-grid, .link-grid, .mini-proof { grid-template-columns: 1fr; }
  .check-list { columns: 1; }
  .comparison-table { font-size: .86rem; }
}
