:root {
  --ink: #092033;
  --ink-2: #12324a;
  --muted: #5a6b79;
  --line: #dce8ef;
  --soft: #f3f9fb;
  --white: #ffffff;
  --navy: #061926;
  --navy-2: #08263a;
  --cyan: #26d9f2;
  --cyan-2: #159bd7;
  --green: #69d85f;
  --green-2: #05a86b;
  --blue: #1768ff;
  --shadow: 0 28px 80px rgba(6, 25, 38, 0.16);
  --shadow-soft: 0 18px 44px rgba(9, 32, 51, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(38, 217, 242, 0.06), transparent 520px),
    var(--white);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 50;
  padding: 10px;
  background: var(--ink);
  color: white;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 16px clamp(20px, 4vw, 64px);
  color: white;
  background: rgba(6, 25, 38, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(38, 217, 242, 0.28);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  color: white;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.header-cta,
.button.primary {
  color: #041522;
  background: linear-gradient(135deg, var(--green), #1fd3a5 48%, var(--cyan));
  box-shadow: 0 16px 34px rgba(38, 217, 242, 0.26);
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 850;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.9fr);
  gap: 56px;
  align-items: center;
  min-height: min(760px, calc(100vh - 72px));
  padding: clamp(78px, 8vw, 126px) clamp(20px, 5vw, 80px) clamp(66px, 7vw, 98px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 75% 24%, rgba(38, 217, 242, 0.24), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(105, 216, 95, 0.16), transparent 28%),
    linear-gradient(135deg, #061926 0%, #082235 48%, #04121d 100%);
}

@media (min-width: 1500px) and (max-height: 920px) {
  .hero {
    min-height: 700px;
    padding-top: 70px;
    padding-bottom: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 4.7vw, 76px);
  }

  .hero-visual {
    min-height: 0;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy h1 {
  max-width: 940px;
  margin: 0 0 24px;
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy p {
  max-width: 730px;
  margin: 0 0 32px;
  color: rgba(230, 246, 250, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.trust-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.trust-rail span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(235, 252, 255, 0.78);
  font-size: 13px;
  font-weight: 760;
}

.trust-rail span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(105, 216, 95, 0.75);
}

.hero-visual {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.hero-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.signal-card {
  position: absolute;
  width: min(282px, 74%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.signal-card span {
  display: block;
  color: rgba(236, 251, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin: 4px 0;
  color: white;
  font-size: 28px;
  line-height: 1.1;
}

.signal-card small {
  color: rgba(236, 251, 255, 0.74);
}

.visual-map i,
.visual-social i {
  display: block;
  width: 100%;
  height: 58px;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-map i {
  background:
    radial-gradient(circle at 26% 42%, #ff685c 0 5px, transparent 6px),
    radial-gradient(circle at 70% 30%, #ff685c 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(212, 246, 251, 0.78));
}

.visual-map i::after {
  content: "";
  display: block;
  width: 78%;
  height: 2px;
  margin: 28px auto 0;
  background: linear-gradient(90deg, transparent, rgba(8, 38, 58, 0.28), transparent);
  transform: rotate(-12deg);
}

.visual-social i {
  background:
    linear-gradient(135deg, rgba(38, 217, 242, 0.8), rgba(105, 216, 95, 0.72)),
    linear-gradient(90deg, transparent 0 32%, rgba(255, 255, 255, 0.9) 33% 34%, transparent 35% 66%, rgba(255, 255, 255, 0.9) 67% 68%, transparent 69%);
}

.signal-card.search {
  left: 26px;
  top: 54px;
}

.signal-card.ads {
  right: 24px;
  top: 126px;
}

.signal-card.social {
  left: 40px;
  bottom: 72px;
}

.signal-card.leads {
  right: 46px;
  bottom: 36px;
}

.section {
  padding: clamp(66px, 8vw, 108px) clamp(20px, 5vw, 80px);
}

.section.tint {
  background:
    linear-gradient(180deg, #f7fbfd, #eef8fb);
}

.section-head {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.section h2,
.contact-band h2,
.industry-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead,
.wide-copy p {
  max-width: 930px;
  color: var(--muted);
  font-size: 19px;
}

.section > .lead {
  margin: 0 auto 30px;
  text-align: center;
}

.section-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.86fr);
  gap: 34px;
  align-items: start;
}

.section-showcase > img,
.industry-band > img,
.section-image {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section-image {
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-showcase .lead {
  margin: 0 0 26px;
  text-align: left;
}

.quick-answer,
.content-block {
  max-width: 980px;
  margin: 0 auto 34px;
  padding: 26px;
  border: 1px solid rgba(9, 32, 51, 0.09);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.quick-answer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-answer p,
.content-block p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.service-grid,
.package-grid,
.audience-grid,
.proof-list,
.feature-list,
.decision-grid,
.case-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.package-card,
.feature-list article,
.steps article,
.audience-grid div,
.proof-list div,
.decision-grid article,
.case-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(9, 32, 51, 0.09);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 300px;
  padding: 28px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 217, 242, 0.18), transparent 66%);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border-radius: 14px;
  color: #031622;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(38, 217, 242, 0.22);
}

.service-card h3,
.package-card h3,
.feature-list h3,
.steps h3,
.audience-grid h3,
.proof-list h3,
.decision-grid h3,
.case-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.service-card p,
.package-card p,
.feature-list p,
.steps p,
.audience-grid p,
.proof-list p,
.decision-grid p,
.case-grid p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-card a,
.text-cta,
.decision-grid a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.industry-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.05fr);
  gap: 40px;
  align-items: center;
  padding: clamp(58px, 7vw, 88px) clamp(20px, 5vw, 80px);
  color: white;
  background:
    radial-gradient(circle at 78% 24%, rgba(38, 217, 242, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.industry-band h2 {
  color: white;
}

.industry-band p {
  max-width: 720px;
  color: rgba(232, 248, 252, 0.78);
  font-size: 19px;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.industry-list span {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 253, 255, 0.92);
  font-weight: 850;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 980px;
  margin: -8px auto 34px;
  color: var(--muted);
  text-align: left;
}

.package-intro img {
  width: 220px;
  max-width: 42vw;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.package-intro p {
  max-width: 560px;
  margin: 0;
  font-size: 18px;
}

.package-card {
  padding: 28px;
}

.package-card h4 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
}

.package-card:nth-child(2) {
  border-color: rgba(23, 104, 255, 0.32);
  box-shadow: 0 28px 70px rgba(23, 104, 255, 0.13);
}

.package-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #031622;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
}

.feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.decision-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list article,
.audience-grid div,
.proof-list div,
.decision-grid article,
.case-grid article {
  padding: 24px;
}

.wide-copy {
  max-width: 980px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 clamp(20px, 5vw, 80px) clamp(66px, 8vw, 108px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(105, 216, 95, 0.22), transparent 28%),
    linear-gradient(135deg, #062033, #061926);
  box-shadow: var(--shadow);
}

.contact-band h2 {
  color: white;
}

.contact-band p {
  max-width: 760px;
  color: rgba(232, 248, 252, 0.78);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  max-width: 860px;
  color: var(--muted);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.enquiry-form .full,
.form-status {
  grid-column: 1 / -1;
}

.form-status:not(:empty) {
  padding: 14px 16px;
  border-radius: 12px;
  color: #064b33;
  background: #eafff4;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 56px clamp(20px, 5vw, 80px);
  color: white;
  background: #04121d;
}

.site-footer p {
  max-width: 560px;
  color: rgba(232, 248, 252, 0.68);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(232, 248, 252, 0.82);
  text-decoration: none;
}

.footer-brand {
  color: white;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 0;
  }

  .section-showcase {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .audience-grid,
  .proof-list,
  .feature-list,
  .decision-grid,
  .case-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(6, 25, 38, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 15px;
    flex: 0 0 auto;
    min-height: 40px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 780px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 18px;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav,
  .site-nav.open {
    display: flex;
    position: static;
    order: 3;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    overflow: visible;
    padding: 4px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    font-size: 13px;
  }

  .nav-toggle {
    display: none !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 15px;
    flex: 0 0 auto;
    min-height: 40px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: block;
    padding: 42px 18px 50px;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p,
  .hero-actions,
  .hero-visual {
    width: 100%;
    max-width: 354px;
  }

  .hero-copy h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-rail {
    display: grid;
  }

  .hero-visual {
    display: block;
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin-top: 44px;
    border-radius: 24px;
  }

  .section h2,
  .contact-band h2,
  .industry-band h2 {
    max-width: 354px;
    font-size: 26px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .section-head {
    width: 100%;
    max-width: 354px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .section {
    padding: 56px 18px;
    max-width: 100vw;
    overflow: hidden;
  }

  .service-grid,
  .package-grid,
  .audience-grid,
  .proof-list,
  .feature-list,
  .decision-grid,
  .case-grid,
  .steps,
  .enquiry-form,
  .site-footer,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .industry-band {
    padding: 56px 18px;
  }

  .section-showcase {
    display: block;
    width: 100%;
    max-width: 354px;
  }

  .section-showcase > img,
  .industry-band > img,
  .section-image {
    max-width: 354px;
    border-radius: 18px;
  }

  .lead,
  .wide-copy p,
  .section-showcase .lead {
    width: 100%;
    max-width: 354px;
    font-size: 17px;
    text-align: left;
    overflow-wrap: break-word;
  }

  .section > .lead {
    max-width: 354px;
    margin: 0 0 26px;
    text-align: left;
  }

  .service-card,
  .package-card,
  .feature-list article,
  .steps article,
  .audience-grid div,
  .proof-list div,
  .decision-grid article,
  .case-grid article,
  .quick-answer,
  .content-block {
    max-width: 354px;
  }

  .package-intro {
    display: grid;
    text-align: center;
  }

  .package-intro img {
    justify-self: center;
  }

  .contact-band {
    display: block;
    margin: 0 18px 56px;
    padding: 28px;
  }
}
