
:root {
  --navy:#06182b;
  --navy2:#092743;
  --blue:#149fe3;
  --cyan:#2dc7ff;
  --text:#102033;
  --muted:#607086;
  --page:#eef6fb;
  --card:#fbfdff;
  --line:#d8e8f3;
  --white:#ffffff;
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  margin:0;
  font-family: Inter, "Aptos", "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--page);
  line-height:1.6;
}

.container {
  width:min(1120px, 92%);
  margin:0 auto;
}

.site-header {
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav {
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img {
  height:72px;
  width:auto;
  display:block;
  border-radius:14px;
}

nav {
  display:flex;
  align-items:center;
  gap:16px;
}

nav a {
  color:var(--text);
  text-decoration:none;
  font-weight: 700;
  font-size:.92rem;
}

.nav-cta { color:var(--blue); }

.lang-switch {
  display:flex;
  align-items:center;
  gap:8px;
  padding-left:14px;
  border-left:1px solid var(--line);
}

.lang-switch a {
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  font-size:1.15rem;
  border-radius:999px;
  background:#f4f8fc;
  border:1px solid var(--line);
  text-decoration:none;
}

.lang-switch a.active {
  background:#e6f5fd;
  border-color:#8fd4f4;
}

.hero {
  color:white;
  background:
    radial-gradient(circle at 78% 18%, rgba(45,199,255,.22), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy2));
  padding:92px 0;
}

.hero-grid {
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:54px;
  align-items:center;
}

.eyebrow {
  margin:0 0 12px;
  color:var(--cyan);
  font-size:.78rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight: 700;
}

h1 {
  font-size:clamp(2.35rem, 5vw, 4.6rem);
  line-height:1.02;
  margin:0 0 24px;
}

h2 {
  font-size:clamp(2rem, 3.4vw, 3rem);
  line-height:1.12;
  margin:0 0 18px;
}

h3 {
  font-size:1.32rem;
  margin:0 0 12px;
}

.lead {
  font-size:1.2rem;
  color:#d8eaf8;
  max-width:780px;
}

.trust-line {
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.24);
  border-radius:18px;
  padding:16px 18px;
  margin-top:24px;
  color:#eaf7ff;
}

.trust-line strong {
  display:block;
  margin-bottom:5px;
  color:white;
}

.actions {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.btn {
  display:inline-block;
  text-decoration:none;
  border:0;
  border-radius:999px;
  padding:14px 22px;
  font-weight: 700;
  cursor:pointer;
}

.btn.primary {
  background:linear-gradient(135deg, var(--blue), var(--cyan));
  color:white;
}

.btn.secondary {
  background:rgba(255,255,255,.08);
  color:white;
  border:1px solid rgba(255,255,255,.24);
}

.micro-copy {
  color:#b9dff4;
  font-weight: 700;
  margin-top:18px;
}

.hero-card {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:30px;
  padding:34px;
  box-shadow:0 30px 80px rgba(0,0,0,.24);
}

.logo-motion-card {
  text-align:center;
  overflow:hidden;
}

.logo-light-wrap {
  position:relative;
  min-height:230px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:26px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:26px;
}

.motion-logo {
  width:min(270px, 82%);
  max-height:155px;
  object-fit:contain;
  border-radius:18px;
  position:relative;
  z-index:2;
  filter:drop-shadow(0 18px 34px rgba(0,0,0,.28));
  animation:logoPulse 3.5s ease-in-out infinite;
}

.light-line {
  position:absolute;
  left:-48%;
  width:44%;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, rgba(45,199,255,.95), transparent);
  box-shadow:0 0 18px rgba(45,199,255,.88);
  animation:lightTravel 2.6s linear infinite;
}

.line-one { top:34%; animation-delay:0s; }
.line-two { top:50%; animation-delay:.65s; }
.line-three { top:66%; animation-delay:1.3s; }

@keyframes lightTravel {
  0% { transform:translateX(0); opacity:0; }
  12% { opacity:1; }
  88% { opacity:1; }
  100% { transform:translateX(365%); opacity:0; }
}

@keyframes logoPulse {
  0%,100% { transform:scale(1); }
  50% { transform:scale(1.025); }
}

.hero-service-list {
  text-align:left;
  margin:0;
  padding-left:1.2rem;
}

.hero-service-list li {
  color:#eaf7ff;
  font-weight:850;
  margin-bottom:10px;
}

.section {
  padding:84px 0;
  background:var(--page);
}

.section-intro {
  font-size:1.12rem;
  color:var(--muted);
  max-width:870px;
}

.quick-strip {
  background:var(--page);
  border-bottom:1px solid var(--line);
}

.strip-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  padding:22px 0;
}

.strip-grid div,
.service-card,
.selector-card,
.analysis-card,
.price-card,
.card,
.terms-box,
.form-card,
.payment-box,
.single-price > div {
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
}

.strip-grid strong {
  display:block;
  color:var(--blue);
  font-size:1.35rem;
}

.strip-grid span,
.service-card p,
.service-card li,
.selector-card p,
.selector-card li,
.analysis-card p,
.card p,
.price-card p,
.terms-box p,
.note {
  color:var(--muted);
}

.service-stack {
  display:grid;
  gap:22px;
  margin-top:36px;
}

.service-card {
  display:grid;
  grid-template-columns:80px 1fr;
  gap:24px;
}

.service-card.premium,
.selector-card.highlighted,
.analysis-card.highlight,
.price-card.highlighted {
  background:linear-gradient(135deg, #ffffff, #f3fbff);
  border-color:#8fd4f4;
  box-shadow:0 18px 50px rgba(6,24,43,.07);
}

.service-number,
.analysis-icon {
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(135deg, var(--navy), var(--blue));
  color:white;
  font-weight: 700;
  font-size:1.22rem;
}

.service-number { border-radius:50%; }

.disclaimer {
  background:white;
  border-left:4px solid var(--blue);
  padding:14px 16px;
  border-radius:12px;
  color:var(--text)!important;
}

.selector-grid,
.analysis-grid,
.pricing-grid,
.cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:34px;
}

.selector-card {
  display:flex;
  flex-direction:column;
  gap:10px;
}

.selector-tag,
.badge {
  width:max-content;
  background:var(--blue);
  color:white;
  border-radius:999px;
  padding:6px 10px;
  font-size:.78rem;
  font-weight: 700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.selector-price,
.price {
  font-size:1.85rem;
  color:var(--blue);
  font-weight: 700;
  margin:.25rem 0;
}

.selector-card .btn {
  width:max-content;
  margin-top:auto;
}

.analysis-icon {
  margin-bottom:16px;
}

.single-price {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin:34px 0;
}

.price span {
  font-size:1rem;
  color:var(--muted);
}

.payment-box {
  margin-top:28px;
}

.buy-section, .terms, .contact, .analyse-section, .pricing-section, .selector-section {
  background:var(--page);
}

.notice.dark-notice {
  margin-top:28px;
  background:var(--card);
  border:1px solid var(--line);
  color:var(--text);
}

.dual-forms {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  margin-top:34px;
}

.form-card {
  box-shadow:0 24px 70px rgba(6,24,43,.07);
}

form {
  display:grid;
  gap:16px;
}

label {
  font-weight: 700;
}

input, textarea, select {
  width:100%;
  margin-top:7px;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #d4e1ee;
  font:inherit;
  background:white;
}

button.btn {
  width:fit-content;
}

.center-note {
  text-align:center;
  margin-top:24px;
}

footer {
  background:#03111f;
  color:white;
  padding:34px 0;
}

.footer-grid {
  display:flex;
  justify-content:space-between;
  gap:24px;
}

footer p {
  color:#b9cada;
  margin:.35rem 0;
}

@media(max-width:960px) {
  nav { display:none; }
  .nav { min-height:88px; }
  .brand img { height:66px; }
  .hero-grid,
  .service-card,
  .single-price,
  .dual-forms {
    grid-template-columns:1fr;
  }
  .strip-grid,
  .selector-grid,
  .analysis-grid,
  .cards,
  .pricing-grid {
    grid-template-columns:1fr;
  }
  .hero { padding:72px 0; }
  .footer-grid { flex-direction:column; }
}

/* Round 2 updates */
.section,.selector-section,.analyse-section,.buy-section,.contact,.quick-strip{background:var(--page)!important}
.strip-grid div,.service-card,.selector-card,.analysis-card,.price-card,.card,.form-card,.payment-box,.single-price>div,.compact-terms{background:var(--card)!important}
.lang-switch a img{width:24px;height:16px;display:block;border-radius:2px;object-fit:cover}
.four-grid{grid-template-columns:repeat(4,1fr)}
.compact-terms{margin-top:24px;border:1px solid var(--line);border-radius:24px;padding:24px 28px}
.compact-terms p{color:var(--muted);margin-bottom:0}
@media(max-width:1100px){.four-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){.four-grid{grid-template-columns:1fr}}




/* Fibre exact hero redesign */
body {
  background: #eef6fb;
}

.site-header {
  background: #041024 !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  max-width: 1500px;
}

.site-header nav a {
  color: #ffffff !important;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: #159cff !important;
}

.site-header .nav-cta {
  background: #159cff;
  color: #ffffff !important;
  border-radius: 10px;
  padding: 13px 22px;
}

.site-header .lang-switch {
  border-left: 0 !important;
}

.site-header .lang-switch a {
  color: #ffffff !important;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.25);
}

.fibre-exact-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: #031020;
  min-height: 675px;
  padding: 72px 0 58px;
}

.fibre-exact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3,16,32,.98) 0%, rgba(3,16,32,.94) 36%, rgba(3,16,32,.50) 58%, rgba(3,16,32,.78) 100%),
    url("/assets/fibre-hero-bg.svg") center center / cover no-repeat;
}

.fibre-exact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 54%, rgba(0,140,255,.20), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.08));
}

.fibre-exact-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 475px;
  gap: 86px;
  align-items: center;
}

.fibre-exact-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.35rem, 6.95vw, 7.05rem);
  line-height: .95;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.fibre-exact-copy h1 span {
  color: #159cff;
}

.fibre-exact-rule {
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: #159cff;
  margin: 28px 0 26px;
}

.fibre-exact-lead {
  max-width: 720px;
  color: #ffffff;
  font-size: 1.34rem;
  line-height: 1.6;
  margin: 0 0 18px;
}

.fibre-exact-sub {
  max-width: 675px;
  color: #cbd8e8;
  font-size: 1.23rem;
  line-height: 1.58;
  margin: 0;
}

.fibre-exact-actions {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.fibre-exact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.04rem;
}

.fibre-exact-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fibre-exact-primary {
  background: linear-gradient(180deg, #28aaff, #128ee9);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0,145,255,.28);
}

.fibre-exact-secondary {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.42);
  color: #ffffff;
}

.fibre-exact-trust {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  margin-top: 42px;
}

.fibre-exact-trust div {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.fibre-exact-trust div:first-child {
  padding-left: 0;
}

.fibre-exact-trust div:last-child {
  border-right: 0;
}

.fibre-exact-trust svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  fill: none;
  stroke: #159cff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(21,156,255,.11);
  border: 1px solid rgba(21,156,255,.38);
}

.fibre-exact-trust strong {
  color: #ffffff;
  line-height: 1.25;
  font-size: .98rem;
}

.fibre-exact-panel {
  background: rgba(9, 32, 58, .78);
  border: 1px solid rgba(175,218,248,.34);
  border-radius: 18px;
  padding: 32px 34px;
  box-shadow: 0 30px 95px rgba(0,0,0,.33);
  backdrop-filter: blur(9px);
}

.fibre-exact-panel h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.fibre-exact-help {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.fibre-exact-help:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fibre-exact-help > span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(21,156,255,.82);
  background: rgba(21,156,255,.11);
  display: grid;
  place-items: center;
}

.fibre-exact-help svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fibre-exact-help h3 {
  color: #ffffff;
  margin: 0 0 5px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.fibre-exact-help p {
  margin: 0;
  color: #d7e5f2;
  font-size: .98rem;
  line-height: 1.45;
}

.fibre-exact-who {
  background: linear-gradient(180deg, #ffffff 0%, #edf6fb 100%);
  color: #07172a;
  padding: 35px 0 52px;
  border-bottom: 1px solid rgba(8,35,61,.08);
}

.fibre-exact-who-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 66px;
  text-align: center;
}

.fibre-exact-who h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.fibre-exact-who-inner > p {
  max-width: 730px;
  margin: 0 auto 30px;
  color: #405067;
}

.fibre-exact-who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.fibre-exact-who-grid article {
  padding: 0 27px;
  border-right: 1px solid rgba(8,35,61,.14);
}

.fibre-exact-who-grid article:last-child {
  border-right: 0;
}

.fibre-exact-who-grid span {
  display: inline-grid;
  place-items: center;
  color: #159cff;
  margin-bottom: 16px;
}

.fibre-exact-who-grid svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fibre-exact-who-grid h3 {
  font-size: 1.03rem;
  margin: 0 0 8px;
  line-height: 1.25;
}

.fibre-exact-who-grid p {
  color: #405067;
  margin: 0;
  line-height: 1.45;
  font-size: .94rem;
}

@media(max-width: 1180px) {
  .fibre-exact-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .fibre-exact-panel {
    max-width: 760px;
  }

  .fibre-exact-trust {
    grid-template-columns: repeat(2, max-content);
    gap: 18px 0;
  }

  .fibre-exact-trust div:nth-child(2) {
    border-right: 0;
  }

  .fibre-exact-who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .fibre-exact-who-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media(max-width: 760px) {
  .fibre-exact-hero {
    min-height: auto;
    padding: 46px 0 54px;
  }

  .fibre-exact-inner,
  .fibre-exact-who-inner {
    padding: 0 22px;
  }

  .fibre-exact-copy h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .fibre-exact-lead {
    font-size: 1.08rem;
  }

  .fibre-exact-sub {
    font-size: 1rem;
  }

  .fibre-exact-actions {
    gap: 14px;
  }

  .fibre-exact-btn {
    width: 100%;
  }

  .fibre-exact-trust {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fibre-exact-trust div {
    border-right: 0;
    padding: 0;
  }

  .fibre-exact-panel {
    padding: 24px;
  }

  .fibre-exact-help {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .fibre-exact-help > span {
    width: 44px;
    height: 44px;
  }

  .fibre-exact-help svg {
    width: 24px;
    height: 24px;
  }

  .fibre-exact-who-grid {
    grid-template-columns: 1fr;
  }

  .fibre-exact-who-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(8,35,61,.12);
    padding: 20px 8px;
  }

  .fibre-exact-who-grid article:last-child {
    border-bottom: 0;
  }
}




/* Typography matched to optitest_mock_design_update */

body,
button,
input,
textarea,
select {
  font-family: Inter, "Aptos", "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.fibre-exact-copy h1 {
  font-weight: 700 !important;
  letter-spacing: -0.045em !important;
  line-height: 1.02 !important;
}

.fibre-exact-copy h1 span {
  font-weight: 700 !important;
}

.fibre-exact-lead {
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

.fibre-exact-sub {
  font-weight: 400 !important;
  color: #d5deea !important;
  line-height: 1.7 !important;
}

.fibre-exact-panel h2 {
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

.fibre-exact-help h3,
.fibre-exact-who h2,
.fibre-exact-who-grid h3 {
  font-weight: 600 !important;
  letter-spacing: -0.02em;
}

.fibre-exact-help p,
.fibre-exact-who-grid p {
  font-weight: 400 !important;
  line-height: 1.6;
}

.site-header nav a {
  font-weight: 600 !important;
  letter-spacing: -0.01em;
}

.fibre-exact-btn {
  font-weight: 600 !important;
}

.fibre-exact-trust strong {
  font-weight: 500 !important;
}

.fibre-exact-who h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.fibre-exact-copy h1 {
  font-size: clamp(3.8rem, 6.4vw, 6.3rem) !important;
}


/* Definitive final requested updates */
.fibre-exact-bg {
  background:
    linear-gradient(90deg, rgba(3,16,32,.99) 0%, rgba(3,16,32,.94) 33%, rgba(3,16,32,.62) 55%, rgba(3,16,32,.80) 100%),
    url("/assets/hero-fibre-strands.png") center center / cover no-repeat !important;
}

.fibre-exact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 72% 48%, rgba(0,168,255,.26), transparent 30%);
}

.cookie-preferences-link {
  text-align: center !important;
  margin: 26px auto 0 !important;
  width: 100% !important;
}
.cookie-preferences-link a,
#open_preferences_center {
  display: inline-block !important;
  margin: 0 auto !important;
  color: #9fd3ff !important;
  text-align: center !important;
}

.general-contact-box {
  width: 100%;
  box-sizing: border-box;
  margin: 24px auto 0;
  padding: 22px 28px;
  border-radius: 18px;
  background: #dfeef7;
  border: 1px solid #b9d8ea;
  text-align: center;
  color: #4d6578;
  font-size: 1.05rem;
}
.general-contact-box a {
  color: #006fa8;
  font-weight: 700;
  text-decoration: none;
}

.hidden,
.netlify-honeypot {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  line-height: 1.45 !important;
}
.consent-label input[type="checkbox"] {
  flex: 0 0 auto !important;
  margin: 3px 0 0 0 !important;
}
.consent-label span {
  display: inline !important;
}

.cert-section-polished {
  padding: clamp(34px, 5vw, 56px) !important;
}
.cert-card-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
  margin-top: 36px !important;
}
.cert-item-card {
  background: #fff;
  border: 1px solid #d8e8f2;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 14px 34px rgba(5, 28, 48, .055);
}
.cert-item-card strong {
  display: block;
  color: #04244b;
  font-size: 1.95rem;
  line-height: 1;
  margin-bottom: 18px;
}
.cert-item-card p {
  color: #567086;
  margin: 0;
  line-height: 1.65;
}
.vat-note {
  text-align: center !important;
  margin: 10px auto 0 !important;
  color: #5c7387 !important;
}
@media(max-width: 900px){
  .cert-card-grid{grid-template-columns:1fr !important;}
}


/* Privacy consent line fix */
.privacy-consent,
.form-consent,
.consent-line,
label.privacy-consent,
label.form-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr !important;
  column-gap: 10px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 18px 0 22px !important;
  line-height: 1.45 !important;
  font-size: 0.95rem !important;
  color: #06162b !important;
  font-weight: 600 !important;
  white-space: normal !important;
}

.privacy-consent input[type="checkbox"],
.form-consent input[type="checkbox"],
.consent-line input[type="checkbox"],
label.privacy-consent input[type="checkbox"],
label.form-consent input[type="checkbox"] {
  grid-column: 1 !important;
  margin: 3px 0 0 0 !important;
  width: 14px !important;
  height: 14px !important;
  position: static !important;
  opacity: 1 !important;
}

.privacy-consent span,
.form-consent span,
.consent-line span,
label.privacy-consent span,
label.form-consent span {
  grid-column: 2 !important;
  display: inline !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.privacy-consent a,
.form-consent a,
.consent-line a {
  display: inline !important;
  white-space: nowrap !important;
  font-weight: 700 !important;
}

/* Prevent form cards from crushing consent text */
.forms-grid,
.contact-forms-grid {
  align-items: start !important;
}

.form-card,
.request-card,
.contact-card {
  min-width: 0 !important;
  overflow: visible !important;
}


/* Final definitive fixes: hero background and consent layout */
.fibre-exact-hero {
  background:
    linear-gradient(90deg, rgba(3,16,32,.99) 0%, rgba(3,16,32,.94) 34%, rgba(3,16,32,.56) 58%, rgba(3,16,32,.78) 100%),
    url("assets/hero-fibre-strands.png") center center / cover no-repeat !important;
}

.fibre-exact-bg {
  background:
    linear-gradient(90deg, rgba(3,16,32,.99) 0%, rgba(3,16,32,.94) 34%, rgba(3,16,32,.56) 58%, rgba(3,16,32,.78) 100%),
    url("assets/hero-fibre-strands.png") center center / cover no-repeat !important;
  opacity: 1 !important;
}

.fibre-exact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 48%, rgba(0,168,255,.22), transparent 34%),
    linear-gradient(90deg, rgba(3,16,32,.15), transparent 56%, rgba(3,16,32,.20));
}

.privacy-consent,
label.privacy-consent {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 18px 0 22px !important;
  white-space: normal !important;
  line-height: 1.45 !important;
  font-size: 0.95rem !important;
  color: #06162b !important;
  font-weight: 600 !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

.privacy-consent input[type="checkbox"],
label.privacy-consent input[type="checkbox"] {
  flex: 0 0 14px !important;
  width: 14px !important;
  height: 14px !important;
  margin: 3px 0 0 0 !important;
  position: static !important;
  opacity: 1 !important;
  display: inline-block !important;
}

.privacy-consent span,
label.privacy-consent span {
  display: inline !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.privacy-consent a,
label.privacy-consent a {
  display: inline !important;
  white-space: nowrap !important;
}

/* Keep form cards wide enough for the consent sentence */
.dual-forms {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 32px !important;
}

.form-card {
  min-width: 0 !important;
  overflow: visible !important;
}

@media (max-width: 900px) {
  .dual-forms {
    grid-template-columns: 1fr !important;
  }
}


/* FINAL FIX: privacy consent line and hero fibre image */
.fibre-exact-hero {
  background:
    linear-gradient(90deg, rgba(3,16,32,.99) 0%, rgba(3,16,32,.94) 34%, rgba(3,16,32,.56) 58%, rgba(3,16,32,.78) 100%),
    url("assets/hero-fibre-strands.png") center center / cover no-repeat !important;
}

.fibre-exact-bg {
  background:
    linear-gradient(90deg, rgba(3,16,32,.99) 0%, rgba(3,16,32,.94) 34%, rgba(3,16,32,.56) 58%, rgba(3,16,32,.78) 100%),
    url("assets/hero-fibre-strands.png") center center / cover no-repeat !important;
  opacity: 1 !important;
}

.privacy-consent,
label.privacy-consent {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 18px 0 22px !important;
  white-space: normal !important;
  line-height: 1.45 !important;
  font-size: 0.95rem !important;
  color: #06162b !important;
  font-weight: 600 !important;
}

.privacy-consent input[type="checkbox"],
label.privacy-consent input[type="checkbox"] {
  flex: 0 0 14px !important;
  width: 14px !important;
  height: 14px !important;
  margin: 3px 0 0 0 !important;
  position: static !important;
  opacity: 1 !important;
  display: inline-block !important;
}

.privacy-consent span,
label.privacy-consent span {
  display: inline !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.privacy-consent a,
label.privacy-consent a {
  display: inline !important;
  white-space: nowrap !important;
}

.dual-forms {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 32px !important;
}

.form-card {
  min-width: 0 !important;
  overflow: visible !important;
}

.netlify-honeypot,
.hidden.netlify-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .dual-forms {
    grid-template-columns: 1fr !important;
  }
}


/* Norwegian consent inline fix */
.no-page .privacy-consent,
html[lang="no"] .privacy-consent,
body .privacy-consent {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
}

.no-page .privacy-consent input[type="checkbox"],
html[lang="no"] .privacy-consent input[type="checkbox"],
body .privacy-consent input[type="checkbox"] {
  flex: 0 0 14px !important;
  width: 14px !important;
  height: 14px !important;
  margin: 3px 0 0 0 !important;
}

.no-page .privacy-consent span,
html[lang="no"] .privacy-consent span,
body .privacy-consent span {
  flex: 1 1 auto !important;
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}


/* ===== MOBILE HEADER FIX ===== */
@media (max-width: 900px) {

  header,
  .site-header,
  .navbar {
    position: relative !important;
    z-index: 9999 !important;
    background: #031326 !important;
  }

  header .container,
  .site-header .container,
  .navbar .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 14px 18px !important;
  }

  .logo,
  .brand,
  .site-logo {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .logo img,
  .brand img,
  .site-logo img {
    max-width: 180px !important;
    height: auto !important;
    display: block !important;
  }

  nav,
  .nav-links,
  .navbar-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  nav a,
  .nav-links a,
  .navbar-nav a {
    display: inline-flex !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    padding: 8px 10px !important;
    white-space: nowrap !important;
  }

  .language-switcher,
  .lang-switch,
  .language-selector {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .language-switcher img,
  .lang-switch img,
  .language-selector img {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
  }

  .hero,
  .hero-section {
    padding-top: 30px !important;
  }
}

@media (max-width: 480px) {
  nav a,
  .nav-links a,
  .navbar-nav a {
    font-size: 0.78rem !important;
    padding: 6px 7px !important;
  }

  .logo img,
  .brand img,
  .site-logo img {
    max-width: 150px !important;
  }
}


/* Legal page polish */
.legal-content ul { margin: 0 0 1.25rem 1.25rem; padding-left: 1.1rem; }
.legal-content li { margin: .45rem 0; line-height: 1.6; }
.legal-content h2 { margin-top: 2rem; }
.legal-content p { line-height: 1.7; }
.footer-grid a { text-decoration: none; }


/* Pricing structure update: keeps existing card design, only adds spacing for new pricing groups */
.pricing-subhead {
  margin: 46px 0 0;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.compact-intro {
  margin-top: 8px;
  max-width: 900px;
}
.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media(max-width: 900px) {
  .support-grid { grid-template-columns: 1fr; }
}


/* Clean pricing layout update - focused fibre analysis only */
.pricing-clean-layout {
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:22px;
  margin-top:34px;
}
.pricing-panel {
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:0 18px 50px rgba(6,24,43,.06);
}
.panel-head {
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  border-bottom:1px solid var(--line);
  padding-bottom:18px;
  margin-bottom:18px;
}
.panel-head p { margin:0; color:var(--muted); max-width:430px; }
.pricing-levels { display:grid; gap:14px; }
.pricing-level {
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:white;
}
.pricing-level.recommended {
  border-color:#8fd4f4;
  background:linear-gradient(135deg, #ffffff, #f3fbff);
}
.pricing-level h4 { margin:10px 0 4px; font-size:1.08rem; }
.pricing-level strong { color:var(--blue); font-size:1.28rem; display:block; margin-bottom:4px; }
.pricing-level p { margin:0; color:var(--muted); }
.clean-pricing-table { width:100%; border-collapse:separate; border-spacing:0 10px; }
.clean-pricing-table th {
  text-align:left;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  padding:0 12px 4px;
}
.clean-pricing-table td {
  background:white;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:15px 12px;
  vertical-align:top;
}
.clean-pricing-table td:first-child {
  border-left:1px solid var(--line);
  border-radius:16px 0 0 16px;
}
.clean-pricing-table td:last-child {
  border-right:1px solid var(--line);
  border-radius:0 16px 16px 0;
  text-align:right;
  color:var(--blue);
  font-weight:800;
  white-space:nowrap;
}
.clean-pricing-table span { display:block; color:var(--muted); font-size:.92rem; margin-top:3px; }
.pricing-support-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:22px;
}
.compact-service h3 { margin-bottom:8px; }
.compact-service .selector-price { margin:.15rem 0 .35rem; }
.pricing-note-block {
  margin-top:22px;
  display:grid;
  gap:10px;
}
.pricing-note-block .note {
  background:white;
  border:1px solid var(--line);
  border-left:4px solid var(--blue);
  border-radius:14px;
  padding:14px 16px;
  margin:0;
  text-align:left;
}
.single-support-form {
  max-width:760px;
  margin:34px auto 0;
}
@media(max-width:960px) {
  .pricing-clean-layout,
  .pricing-support-row {
    grid-template-columns:1fr;
  }
  .panel-head { display:block; }
  .clean-pricing-table { border-spacing:0 12px; }
  .clean-pricing-table thead { display:none; }
  .clean-pricing-table tr,
  .clean-pricing-table td { display:block; width:100%; }
  .clean-pricing-table td { border-left:1px solid var(--line); border-right:1px solid var(--line); }
  .clean-pricing-table td:first-child { border-radius:16px 16px 0 0; border-bottom:0; }
  .clean-pricing-table td:nth-child(2) { border-top:0; border-bottom:0; }
  .clean-pricing-table td:last-child { border-radius:0 0 16px 16px; text-align:left; border-top:0; }
}


/* Final OptiTest pricing and content refinement */
.site-header .nav nav {
  gap: 18px;
}
.site-header .nav nav > a {
  white-space: nowrap;
}
.lang-switch a img {
  width: 24px;
  height: 16px;
  display: block;
  border-radius: 2px;
  object-fit: contain;
}
.service-stack-polished .service-card {
  align-items: start;
}
.service-stack-polished .service-card p:last-child {
  margin-bottom: 0;
}
.cert-strip-updated {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: 34px;
  align-items: center;
}
.cert-strip-updated .cert-card-grid {
  margin-top: 0 !important;
}
.cert-intro-block .section-intro {
  max-width: 720px;
}
.pricing-three-column {
  display: grid;
  grid-template-columns: minmax(520px, 1.55fr) minmax(260px, .85fr) minmax(260px, .85fr);
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}
.pricing-three-column .pricing-panel {
  height: 100%;
}
.panel-head.stacked {
  display: block;
}
.panel-head.stacked h3 {
  margin-bottom: 8px;
}
.panel-head.stacked p {
  max-width: none;
}
.otdr-table th:nth-child(3),
.otdr-table th:nth-child(4) {
  text-align: right;
}
.otdr-table td:nth-child(3),
.otdr-table td:nth-child(4) {
  color: var(--blue);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}
.otdr-table td:last-child {
  text-align: right;
}
.inline-price-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #bfe7f8;
  background: #f2fbff;
  color: #31556f;
  line-height: 1.55;
}
.pricing-service-tall {
  display: flex;
  flex-direction: column;
}
.pricing-service-tall h3 {
  margin-top: 12px;
}
.pricing-service-tall p {
  color: var(--muted);
}
.pricing-service-tall p:last-child {
  margin-bottom: 0;
}
.combined-notes {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.checkbox-row,
.bidi-checkbox {
  display: grid !important;
  grid-template-columns: 18px 1fr !important;
  gap: 10px !important;
  align-items: start !important;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fcff;
  color: var(--text);
  font-weight: 700;
}
.checkbox-row input,
.bidi-checkbox input {
  margin: 4px 0 0 !important;
}
.single-support-form select,
.single-support-form input,
.single-support-form textarea {
  margin-top: 6px;
}
@media(max-width: 1180px) {
  .pricing-three-column {
    grid-template-columns: 1fr 1fr;
  }
  .otdr-pricing-card {
    grid-column: 1 / -1;
  }
}
@media(max-width: 900px) {
  .cert-strip-updated,
  .pricing-three-column,
  .combined-notes {
    grid-template-columns: 1fr;
  }
  .otdr-table th:nth-child(3),
  .otdr-table th:nth-child(4),
  .otdr-table td:nth-child(3),
  .otdr-table td:nth-child(4) {
    text-align: left;
  }
  .clean-pricing-table td:nth-child(3)::before { content: "Price: "; color: var(--muted); font-weight: 700; }
  .clean-pricing-table td:nth-child(4)::before { content: "BiDi add-on price: "; color: var(--muted); font-weight: 700; }
}
@media(max-width: 720px) {
  .site-header .nav {
    min-height: 78px;
  }
  .brand img {
    height: 58px;
  }
}


/* Polished support form implementation */
.polished-support-form {
  max-width: 1180px !important;
  margin: 38px auto 0 !important;
  padding: 34px 36px 42px !important;
  border-radius: 28px !important;
  border: 1px solid #cfe2f2 !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(21,156,255,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow: 0 24px 70px rgba(6,24,43,.08) !important;
}
.support-form-hero {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 30px;
  margin-bottom: 32px;
  border-bottom: 1px solid #cfe2f2;
}
.support-form-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #dcecff, #eef7ff);
  color: #0f66ca;
}
.support-form-icon svg,
.form-section-title svg,
.polished-submit svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.polished-support-form h3 {
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 1.05;
  margin: 0 0 14px;
  color: #06182b;
  letter-spacing: -0.035em;
}
.polished-support-form .support-form-hero p {
  margin: 0;
  max-width: 820px;
  font-size: 1.18rem;
  color: #11233d;
}
.polished-support-form form {
  gap: 0 !important;
}
.form-section-block {
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid #cfe2f2;
}
.form-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: #0f66ca;
}
.form-section-title span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e9f5ff;
}
.form-section-title svg {
  width: 22px;
  height: 22px;
}
.form-section-title h4 {
  margin: 0;
  color: #0f66ca;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: 1.05rem;
}
.form-field-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px 26px;
  align-items: center;
}
.form-field-grid label,
.polished-support-form .form-section-block > label {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  align-items: center;
  margin: 0;
  font-size: 1rem;
  color: #071831;
}
.polished-support-form input,
.polished-support-form select,
.polished-support-form textarea {
  margin-top: 0 !important;
  min-height: 58px;
  border-radius: 12px !important;
  border: 1px solid #bdcfe0 !important;
  background: #ffffff !important;
  color: #071831;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.polished-support-form input:focus,
.polished-support-form select:focus,
.polished-support-form textarea:focus {
  outline: 0;
  border-color: #159cff !important;
  box-shadow: 0 0 0 4px rgba(21,156,255,.12);
}
.polished-support-form textarea {
  min-height: 220px;
  resize: vertical;
  line-height: 1.55;
}
.polished-support-form .form-section-block > label textarea {
  grid-column: 1 / -1;
  margin-top: 8px !important;
}
.analysis-field-grid {
  grid-template-columns: 220px 1fr;
}
.modern-check {
  display: grid !important;
  grid-template-columns: 22px 1fr !important;
  gap: 16px !important;
  align-items: start !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  font-weight: 700 !important;
  color: #071831 !important;
}
.modern-check input {
  width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  margin: 4px 0 0 !important;
  padding: 0 !important;
  accent-color: #159cff;
}
.modern-check span {
  display: block;
}
.modern-check em {
  display: block;
  margin-top: 4px;
  color: #607086;
  font-style: normal;
  font-weight: 500;
}
.privacy-modern {
  margin: 0 0 28px !important;
  font-size: 1.02rem;
}
.privacy-modern span {
  color: #11233d;
  font-weight: 500;
}
.polished-submit {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 28px !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 28px rgba(21, 115, 225, .25);
}
.polished-submit svg {
  width: 24px;
  height: 24px;
}
@media(max-width: 780px) {
  .polished-support-form {
    padding: 26px 20px 32px !important;
    border-radius: 22px !important;
  }
  .support-form-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .support-form-icon {
    width: 74px;
    height: 74px;
  }
  .form-field-grid,
  .analysis-field-grid,
  .form-field-grid label,
  .polished-support-form .form-section-block > label {
    display: block;
  }
  .form-field-grid label,
  .polished-support-form .form-section-block > label {
    margin-bottom: 18px;
  }
  .polished-support-form input,
  .polished-support-form select,
  .polished-support-form textarea {
    margin-top: 8px !important;
  }
  .modern-check {
    display: grid !important;
    margin-top: 10px !important;
  }
}

/* Full body polish update: apply the premium form design language to all non-header / non-hero sections */
:root {
  --polish-blue:#0f66ca;
  --polish-blue-2:#159cff;
  --polish-border:#cfe2f2;
  --polish-soft:#f7fbff;
  --polish-panel:#ffffff;
  --polish-shadow:0 24px 70px rgba(6,24,43,.08);
  --polish-shadow-card:0 14px 34px rgba(6,24,43,.06);
}

/* Keep header and hero intact. Everything below the hero uses the cleaner white-card UI. */
.fibre-exact-who,
main .section,
.certifications-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(21,156,255,.08), transparent 30%),
    linear-gradient(180deg, #eef7fd 0%, #f6fbff 100%) !important;
}

.fibre-exact-who-inner,
main .section > .container,
.certifications-section > .container {
  max-width: 1180px;
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--polish-border) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 96% 6%, rgba(21,156,255,.075), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow: var(--polish-shadow) !important;
  padding: clamp(30px, 4vw, 46px) !important;
}

main .section.contact > .container {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* The contact form already has the premium container, so avoid nesting another big card around it. */
.section.contact {
  background:
    radial-gradient(circle at 100% 0%, rgba(21,156,255,.08), transparent 30%),
    linear-gradient(180deg, #eef7fd 0%, #f6fbff 100%) !important;
}

/* More premium section headers, inspired by the form mock-up */
main .section .eyebrow,
.certifications-section .eyebrow,
.fibre-exact-who h2 + p,
.fibre-exact-who .eyebrow {
  color: var(--polish-blue) !important;
}

main .section h2,
.certifications-section h2,
.fibre-exact-who h2 {
  color:#06182b !important;
  letter-spacing:-.035em;
}

main .section .section-intro,
.certifications-section .section-intro,
.fibre-exact-who > p,
.fibre-exact-who-inner > p {
  color:#314a64 !important;
  font-size:1.08rem;
  max-width:900px;
}

.section-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(15,102,202,.24), rgba(207,226,242,1), rgba(15,102,202,.18));
  margin: 30px 0 34px !important;
}

/* Card system: consistent with the generated form style */
.service-card,
.analysis-card,
.pricing-panel,
.cert-item-card,
.fibre-exact-who-grid article,
.pricing-note-block .note,
.inline-price-note {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  border: 1px solid var(--polish-border) !important;
  border-radius: 18px !important;
  box-shadow: var(--polish-shadow-card) !important;
}

.service-card,
.analysis-card,
.fibre-exact-who-grid article,
.cert-item-card {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service-card:hover,
.analysis-card:hover,
.fibre-exact-who-grid article:hover,
.cert-item-card:hover {
  transform: translateY(-2px);
  border-color: rgba(21,156,255,.42) !important;
  box-shadow: 0 18px 44px rgba(6,24,43,.09) !important;
}

/* Solutions cards: cleaner, less heavy, better aligned */
.service-stack {
  gap: 18px !important;
}
.service-card {
  grid-template-columns: 64px 1fr !important;
  padding: 24px 26px !important;
  align-items: start;
}
.service-card.premium {
  background:
    radial-gradient(circle at 100% 0%, rgba(21,156,255,.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%) !important;
  border-color: #96d6f5 !important;
}
.service-number,
.analysis-icon,
.fibre-exact-who-grid article span {
  background: linear-gradient(135deg, #07365b, var(--polish-blue-2)) !important;
  box-shadow: 0 10px 24px rgba(21,156,255,.22);
}
.service-card h3,
.analysis-card h3,
.cert-item-card strong,
.fibre-exact-who-grid article h3,
.pricing-panel h3 {
  color:#06182b !important;
}
.service-card p,
.analysis-card p,
.cert-item-card p,
.fibre-exact-who-grid article p,
.pricing-panel p {
  color:#314a64 !important;
}
.disclaimer {
  background:#f4fbff !important;
  border:1px solid #cfe2f2 !important;
  border-left:4px solid var(--polish-blue-2) !important;
  color:#11233d !important;
  box-shadow:none !important;
}

/* What we analyse: tidy icon cards */
.analysis-grid {
  gap: 18px !important;
}
.analysis-card {
  padding: 24px !important;
  min-height: 185px;
}
.analysis-card.highlight {
  border-color: #8fd4f4 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f3fbff 100%) !important;
}
.analysis-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  margin-bottom: 18px !important;
  font-size: 1rem !important;
}

/* Certification strip: turn into a credibility panel */
.certifications-section {
  padding: 48px 0 84px !important;
}
.cert-strip-updated {
  align-items: stretch !important;
}
.cert-intro-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cert-card-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: 18px !important;
}
.cert-item-card {
  padding: 28px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 170px;
}
.cert-item-card strong {
  display:inline-block;
  font-size: 1.45rem !important;
  letter-spacing: .01em;
  margin-bottom: 8px;
}
.cert-item-card strong::before {
  content:"✓";
  display:inline-grid;
  place-items:center;
  width:30px;
  height:30px;
  margin-right:10px;
  border-radius:999px;
  background:#e9f5ff;
  color:var(--polish-blue);
  font-size:.95rem;
  vertical-align:middle;
}

/* Pricing: more polished but keep the user-approved layout */
.pricing-three-column {
  gap: 20px !important;
}
.pricing-panel {
  padding: 26px !important;
  border-radius: 22px !important;
}
.otdr-pricing-card {
  border-color: #9bd8f3 !important;
  background:
    radial-gradient(circle at 98% 0%, rgba(21,156,255,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
}
.panel-head {
  border-bottom: 1px solid #cfe2f2 !important;
}
.panel-head.stacked h3 {
  font-size: clamp(1.42rem, 2vw, 1.78rem);
}
.clean-pricing-table {
  border-spacing: 0 12px !important;
}
.clean-pricing-table td {
  border-color:#cfe2f2 !important;
  background:#ffffff !important;
}
.clean-pricing-table tr:hover td {
  background:#f7fcff !important;
}
.clean-pricing-table th {
  color:#42617c !important;
}
.inline-price-note {
  background: #f3fbff !important;
  border-color: #aee0f6 !important;
  box-shadow: none !important;
}
.selector-tag {
  background: linear-gradient(135deg, var(--polish-blue), var(--polish-blue-2)) !important;
  box-shadow: 0 10px 22px rgba(21,156,255,.18);
}
.selector-price,
.price {
  color: var(--polish-blue-2) !important;
}
.combined-notes {
  gap: 16px !important;
}
.pricing-note-block .note {
  border-left: 4px solid var(--polish-blue-2) !important;
  padding: 18px 18px !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

/* Who we support: align with the same card treatment */
.fibre-exact-who {
  padding: 84px 0 !important;
}
.fibre-exact-who-inner {
  text-align: left !important;
}
.fibre-exact-who-grid {
  gap: 18px !important;
}
.fibre-exact-who-grid article {
  padding: 24px !important;
  text-align: center;
}
.fibre-exact-who-grid article span {
  margin: 0 auto 16px !important;
}

/* Contact form stays as the highest-polish reference and gets minor consistency tweaks */
.polished-support-form {
  border-color: var(--polish-border) !important;
  box-shadow: var(--polish-shadow) !important;
}
.form-section-block {
  border-bottom-color: var(--polish-border) !important;
}
.general-contact-box,
.center-note {
  background:#ffffff;
  border:1px solid var(--polish-border);
  border-radius:16px;
  padding:16px 18px;
  box-shadow:0 10px 28px rgba(6,24,43,.04);
}

@media(max-width: 960px) {
  .fibre-exact-who-inner,
  main .section > .container,
  .certifications-section > .container {
    padding: 26px 20px !important;
    border-radius: 22px !important;
  }
  .service-card {
    grid-template-columns: 1fr !important;
  }
  .cert-card-grid {
    grid-template-columns: 1fr !important;
  }
}


/* Revert "Who we support" to the previous cleaner inline style while keeping the premium body design elsewhere */
.fibre-exact-who {
  background: linear-gradient(180deg, #ffffff 0%, #edf6fb 100%) !important;
  color: #07172a !important;
  padding: 35px 0 52px !important;
  border-bottom: 1px solid rgba(8,35,61,.08) !important;
}
.fibre-exact-who-inner {
  max-width: 1500px !important;
  width: auto !important;
  margin: 0 auto !important;
  padding: 0 66px !important;
  text-align: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.fibre-exact-who h2 {
  margin: 0 0 8px !important;
  color: #07172a !important;
  font-size: 2rem !important;
  letter-spacing: -0.045em !important;
}
.fibre-exact-who-inner > p {
  max-width: 730px !important;
  margin: 0 auto 30px !important;
  color: #405067 !important;
  font-size: 1rem !important;
}
.fibre-exact-who-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 0 !important;
}
.fibre-exact-who-grid article,
.fibre-exact-who-grid article:hover {
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid rgba(8,35,61,.14) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 27px !important;
  text-align: center !important;
  transform: none !important;
}
.fibre-exact-who-grid article:last-child,
.fibre-exact-who-grid article:last-child:hover {
  border-right: 0 !important;
}
.fibre-exact-who-grid span,
.fibre-exact-who-grid article span {
  display: inline-grid !important;
  place-items: center !important;
  color: #159cff !important;
  margin: 0 auto 16px !important;
  background: transparent !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}
.fibre-exact-who-grid svg {
  width: 50px !important;
  height: 50px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.fibre-exact-who-grid h3,
.fibre-exact-who-grid article h3 {
  color: #07172a !important;
  font-size: 1.03rem !important;
  margin: 0 0 8px !important;
  line-height: 1.25 !important;
}
.fibre-exact-who-grid p,
.fibre-exact-who-grid article p {
  color: #405067 !important;
  margin: 0 !important;
  line-height: 1.45 !important;
  font-size: .94rem !important;
}
@media(max-width: 1180px) {
  .fibre-exact-who-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 0 !important;
  }
  .fibre-exact-who-grid article:nth-child(2n),
  .fibre-exact-who-grid article:nth-child(2n):hover {
    border-right: 0 !important;
  }
  .fibre-exact-who-grid article:last-child,
  .fibre-exact-who-grid article:last-child:hover {
    border-right: 0 !important;
  }
}
@media(max-width: 760px) {
  .fibre-exact-who-inner {
    padding: 0 22px !important;
  }
  .fibre-exact-who-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .fibre-exact-who-grid article,
  .fibre-exact-who-grid article:hover {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(8,35,61,.12) !important;
    padding: 20px 8px !important;
  }
  .fibre-exact-who-grid article:last-child,
  .fibre-exact-who-grid article:last-child:hover {
    border-bottom: 0 !important;
  }
}


/* ==========================================================
   Typography refinement update
   Purpose: reduce heavy/bold typography across the site while
   preserving the existing header, hero layout and visual design.
   ========================================================== */
body,
button,
input,
textarea,
select {
  font-family: Inter, "Aptos", "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p,
li,
.section-intro,
.fibre-exact-lead,
.fibre-exact-sub,
.fibre-exact-help p,
.fibre-exact-who-grid p,
.service-card p,
.analysis-card p,
.pricing-panel p,
.cert-item-card p,
.form-card p,
.polished-support-form .support-form-hero p,
.clean-pricing-table span,
.note {
  font-weight: 400 !important;
  letter-spacing: -0.004em;
}

h1,
h2,
h3,
h4,
.polished-support-form h3,
.fibre-exact-copy h1,
.fibre-exact-panel h2,
.fibre-exact-who h2,
main .section h2,
.certifications-section h2 {
  font-weight: 600 !important;
  letter-spacing: -0.038em !important;
}

.fibre-exact-copy h1 span {
  font-weight: 600 !important;
}

h3,
h4,
.fibre-exact-help h3,
.fibre-exact-who-grid h3,
.service-card h3,
.analysis-card h3,
.pricing-panel h3,
.cert-item-card strong {
  font-weight: 600 !important;
  letter-spacing: -0.024em !important;
}

strong,
b,
label,
.privacy-consent,
label.privacy-consent,
.privacy-modern span,
.modern-check,
.checkbox-row,
.bidi-checkbox {
  font-weight: 500 !important;
}

.site-header nav a,
.fibre-exact-btn,
.btn,
button.btn,
.polished-submit {
  font-weight: 500 !important;
  letter-spacing: -0.012em !important;
}

.eyebrow,
.selector-tag,
.badge,
.form-section-title h4,
.clean-pricing-table th {
  font-weight: 600 !important;
  letter-spacing: 0.055em !important;
}

.selector-price,
.price,
.pricing-level strong,
.clean-pricing-table td:last-child,
.otdr-table td:nth-child(3),
.otdr-table td:nth-child(4),
.strip-grid strong {
  font-weight: 600 !important;
}

.fibre-exact-trust strong,
.fibre-exact-help h3,
.fibre-exact-who-grid h3 {
  font-weight: 500 !important;
}

.service-number,
.analysis-icon {
  font-weight: 600 !important;
}

input::placeholder,
textarea::placeholder {
  font-weight: 400 !important;
  color: #6f7f91;
}

/* Keep large hero readable without the previous heavy block feel */
.fibre-exact-copy h1 {
  font-size: clamp(3.7rem, 6.25vw, 6.15rem) !important;
  line-height: 1.02 !important;
}

/* Slightly lighter body text colour for the premium white-card sections */
main .section p,
.certifications-section p,
.pricing-panel p,
.analysis-card p,
.service-card p,
.cert-item-card p {
  color: #344f67 !important;
}

/* ==========================================================
   Desktop compact / wider layout refinement
   Purpose: make the 100% desktop view feel less oversized while
   leaving mobile and tablet breakpoints unchanged.
   ========================================================== */
@media (min-width: 1000px) {
  .container {
    width: min(1360px, 94%) !important;
    max-width: 1360px !important;
  }

  main .section {
    padding: 48px 0 !important;
  }

  .fibre-exact-who {
    padding: 30px 0 42px !important;
  }

  .fibre-exact-who-inner,
  main .section > .container,
  .certifications-section > .container {
    width: min(1360px, 94%) !important;
    max-width: 1360px !important;
  }

  main .section > .container,
  .certifications-section > .container {
    padding: 28px 36px !important;
    border-radius: 22px !important;
  }

  .section-divider {
    margin: 22px 0 26px !important;
  }

  main .section h2,
  .certifications-section h2,
  .fibre-exact-who h2 {
    font-size: clamp(1.85rem, 2.35vw, 2.55rem) !important;
    margin-bottom: 10px !important;
  }

  main .section .section-intro,
  .certifications-section .section-intro,
  .fibre-exact-who-inner > p {
    font-size: 1rem !important;
    max-width: 950px !important;
  }

  .service-stack {
    gap: 14px !important;
    margin-top: 24px !important;
  }

  .service-card {
    grid-template-columns: 52px 1fr !important;
    gap: 18px !important;
    padding: 18px 22px !important;
  }

  .service-number {
    width: 44px !important;
    height: 44px !important;
    font-size: .9rem !important;
  }

  .analysis-grid,
  .cert-card-grid,
  .fibre-exact-who-grid {
    gap: 14px !important;
  }

  .analysis-card {
    padding: 18px !important;
    min-height: 142px !important;
  }

  .analysis-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 12px !important;
    border-radius: 12px !important;
  }

  .certifications-section {
    padding: 38px 0 58px !important;
  }

  .cert-item-card {
    min-height: 130px !important;
    padding: 20px 22px !important;
  }

  .cert-item-card strong {
    font-size: 1.22rem !important;
  }

  .pricing-three-column {
    display: grid !important;
    grid-template-columns: minmax(560px, 1.2fr) minmax(290px, .75fr) minmax(290px, .75fr) !important;
    gap: 16px !important;
    align-items: stretch !important;
  }

  .pricing-panel {
    padding: 20px !important;
    border-radius: 20px !important;
  }

  .panel-head {
    padding-bottom: 14px !important;
    margin-bottom: 16px !important;
  }

  .panel-head.stacked h3,
  .pricing-panel h3 {
    font-size: clamp(1.18rem, 1.55vw, 1.45rem) !important;
  }

  .pricing-panel p {
    font-size: .94rem !important;
    line-height: 1.55 !important;
  }

  .clean-pricing-table {
    border-spacing: 0 9px !important;
  }

  .clean-pricing-table th {
    font-size: .68rem !important;
  }

  .clean-pricing-table td {
    padding: 10px 9px !important;
    font-size: .88rem !important;
    line-height: 1.38 !important;
  }

  .inline-price-note {
    padding: 11px 13px !important;
    font-size: .88rem !important;
    line-height: 1.45 !important;
  }

  .combined-notes {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .pricing-note-block .note {
    padding: 13px 14px !important;
    font-size: .9rem !important;
  }

  .section.contact > .container > h2 {
    font-size: clamp(1.9rem, 2.4vw, 2.65rem) !important;
  }

  .polished-support-form {
    max-width: 1360px !important;
    padding: 24px 30px 30px !important;
    border-radius: 22px !important;
    margin-top: 26px !important;
  }

  .support-form-hero {
    grid-template-columns: 64px 1fr !important;
    gap: 18px !important;
    padding-bottom: 20px !important;
    margin-bottom: 24px !important;
  }

  .support-form-icon {
    width: 64px !important;
    height: 64px !important;
  }

  .support-form-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .polished-support-form h3 {
    font-size: clamp(1.7rem, 2vw, 2.25rem) !important;
    margin-bottom: 8px !important;
  }

  .polished-support-form .support-form-hero p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .form-section-block {
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
  }

  .form-section-title {
    margin-bottom: 12px !important;
  }

  .form-section-title h4 {
    font-size: .94rem !important;
  }

  .form-field-grid {
    grid-template-columns: 145px 1fr !important;
    gap: 10px 18px !important;
  }

  .analysis-field-grid {
    grid-template-columns: 190px 1fr !important;
  }

  .polished-support-form input,
  .polished-support-form select,
  .polished-support-form textarea {
    min-height: 46px !important;
    font-size: .96rem !important;
  }

  .polished-support-form textarea {
    min-height: 145px !important;
  }

  .modern-check {
    gap: 12px !important;
  }

  .privacy-modern {
    margin-bottom: 16px !important;
    font-size: .96rem !important;
  }

  .polished-submit {
    min-height: 50px !important;
    padding: 0 22px !important;
    border-radius: 12px !important;
  }

  .general-contact-box,
  .center-note {
    padding: 12px 14px !important;
    font-size: .9rem !important;
  }
}

/* Google Calendar booking CTA integration */
.booking-inline-cta,
.booking-cta-card {
  margin: 30px 0 0;
  padding: 26px 30px;
  border: 1px solid #b9d8ea;
  border-radius: 22px;
  background: linear-gradient(135deg, #f7fcff 0%, #e5f5ff 100%);
  box-shadow: 0 16px 34px rgba(6,24,43,.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.booking-cta-card {
  margin: 0 0 26px;
}

.booking-kicker {
  margin: 0 0 6px;
  color: var(--blue);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.booking-inline-cta h3,
.booking-cta-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.02em;
}

.booking-inline-cta p,
.booking-cta-card p {
  margin: 0;
  color: #40566d;
  max-width: 760px;
}

.booking-link-button,
.booking-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(20,159,227,.23);
}

.booking-link-button:hover,
.booking-card-button:hover,
.footer-booking-link:hover {
  text-decoration: none;
  opacity: .92;
}

.footer-booking-link {
  color: #9fd3ff !important;
  font-weight: 800;
}

@media(max-width:760px) {
  .booking-inline-cta,
  .booking-cta-card {
    grid-template-columns: 1fr;
    padding: 22px 20px;
    gap: 18px;
  }

  .booking-link-button,
  .booking-card-button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
