/* =============================================
   CHIRP TELECOMS — Main Stylesheet
   Aesthetic: Deep cosmos · Fluid signals · Future-forward
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --c-void: #0a1830;
  --c-deep: #102240;
  --c-navy: #162e50;
  --c-teal-dark: #136075;
  --c-teal: #0f88a0;
  --c-teal-bright: #14c8e2;
  --c-teal-glow: #20eaff;
  --c-cyan: #00f5ff;
  --c-white: #f0f8ff;
  --c-grey: #9cb8ca;
  --c-grey-dim: #506a7c;
  --c-accent: #ff4d6d;
  --c-warn: #ffbe0b;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --blur: blur(16px);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 19px;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-void);
  color: var(--c-white);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Canvas Background ---- */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---- Noise Overlay ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

/* ---- Aurora Background ---- */
.aurora {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}

.aurora--1 {
  background: radial-gradient(circle, rgba(19, 96, 117, 0.5) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.aurora--2 {
  background: radial-gradient(circle, rgba(15, 136, 160, 0.25) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
  animation-delay: -9s;
  animation-direction: alternate-reverse;
}

@keyframes auroraDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.08); }
  100% { transform: translate(-40px, 60px) scale(0.95); }
}

/* ---- Page Wrapper ---- */
.page-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- Header / Nav ---- */
.site-header {
  --cursor-x: 50%;
  --cursor-y: 50%;
  --proximity: 0;
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.header-pill {
  --cursor-x: 50%;
  --cursor-y: 50%;
  --proximity: 0;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid transparent;
  border-radius: 3rem;
  box-shadow: none;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease,
    padding 0.4s ease,
    border-radius 0.4s ease;
}

.header-pill::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.09) 25%,
    rgba(255, 255, 255, 0.02) 52%,
    transparent 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.header-pill > * {
  position: relative;
  z-index: 1;
}

.header-pill--logo {
  padding: 0.55rem 1.25rem 0.55rem 0.95rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.header-pill--logo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.03) 34%,
    rgba(20, 200, 226, 0.10) 56%,
    rgba(255, 255, 255, 0.02) 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s ease;
}

.header-pill--right {
  padding: 0.45rem 0.4rem;
}

/* Top of page: keep original open layout with no blobs */
.site-header:not(.scrolled) .header-pill {
  transform: scale(1.04);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0.9rem;
}

.site-header:not(.scrolled) .header-pill--logo::before {
  opacity: 0;
}

.site-header:not(.scrolled) .header-pill::after {
  opacity: 0;
}

/* Scrolled: morph into liquid glass blobs */
.site-header.scrolled .header-pill {
  transform: translateY(calc(var(--proximity) * -1.5px)) scale(0.9);
  background: rgba(10, 24, 50, 0.32);
  border-color: rgba(20, 200, 226, 0.2);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-radius: 2.5rem;
  box-shadow:
    0 5px 18px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .header-pill--logo {
  padding: 0.7rem 1.95rem 0.7rem 1.4rem;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13) 0%,
      rgba(20, 200, 226, 0.06) 45%,
      transparent 100%
    ),
    rgba(10, 24, 50, 0.29);
  box-shadow:
    0 5px 18px rgba(0, 0, 0, 0.18),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.10);
}

.site-header.scrolled .header-pill--right {
  padding: 0.48rem 0.72rem 0.48rem 0.62rem;
}

.site-header.scrolled .header-pill--logo::before {
  opacity: 1;
}

.site-header.scrolled .header-pill::after {
  opacity: calc(0.72 + (0.22 * var(--proximity)));
  background-size: 170% 170%;
  background:
    radial-gradient(
      180px circle at var(--cursor-x) var(--cursor-y),
      rgba(255, 255, 255, calc(0.2 * var(--proximity))) 0%,
      rgba(32, 234, 255, calc(0.16 * var(--proximity))) 35%,
      rgba(32, 234, 255, 0) 74%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.09) 25%,
      rgba(255, 255, 255, 0.02) 52%,
      transparent 100%
    );
  animation: glossDrift 10s ease-in-out infinite;
}

@keyframes glossDrift {
  0% {
    background-position: 10% 0%;
    opacity: 0.8;
  }
  50% {
    background-position: 90% 100%;
    opacity: 0.9;
  }
  100% {
    background-position: 10% 0%;
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.scrolled .header-pill::after {
    animation: none;
  }

  [data-theme="light"] .site-header.scrolled .header-pill,
  [data-theme="light"] .site-header.scrolled .header-pill--logo::before,
  [data-theme="light"] .site-header.scrolled .header-pill--right::before {
    animation: none;
  }
}

@keyframes blobIn {
  from {
    transform: translateY(-8px) scale(1.04);
    border-radius: 1rem;
    box-shadow: none;
  }
  to {
    transform: translateY(0) scale(0.9);
    border-radius: 2.5rem;
  }
}

.site-header .logo {
  height: 46px;
  width: auto;
  transition: transform var(--transition), filter var(--transition), height var(--transition);
}

.site-header.scrolled .logo {
  height: 37px;
  filter: drop-shadow(0 0 7px rgba(32, 234, 255, 0.22));
}

.header-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-teal-bright);
  padding: 0.2rem 0.3rem;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}

.header-badge:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  text-align: center;
  position: relative;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-teal-bright);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s ease forwards;
}

.hero__eyebrow span {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--c-teal-bright);
  vertical-align: middle;
  margin: 0 0.75rem;
  opacity: 0.6;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.4s ease forwards;
}

.hero__headline .line--teal {
  display: block;
  font-size: 0.82em;
  font-weight: 800;
  color: var(--c-teal-glow);
  text-shadow:
    0 0 40px rgba(29, 212, 238, 0.4),
    0 0 80px rgba(29, 212, 238, 0.15);
}

.hero__headline .line--dim {
  display: block;
  font-size: 0.82em;
  font-weight: 600;
  color: rgba(240, 248, 255, 0.88);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--c-grey);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.6s ease forwards;
}

/* ---- Enquiry Pill / Search Box ---- */
.enquiry-pill {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(22, 46, 80, 0.7);
  border: 1px solid rgba(20, 200, 226, 0.3);
  border-radius: 3rem;
  padding: 6px;
  backdrop-filter: var(--blur);
  width: 100%;
  max-width: 700px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.8s ease forwards;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.enquiry-pill:focus-within {
  border-color: rgba(20, 200, 226, 0.7);
  box-shadow: 0 0 0 3px rgba(20, 200, 226, 0.1), 0 0 30px rgba(20, 200, 226, 0.08);
}

.enquiry-pill input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-white);
  border-radius: 2.5rem 0 0 2.5rem;
  min-width: 0;
}

/* Keep browser autofill aligned with the pill design instead of default blue/yellow fills. */
.enquiry-pill input[type="email"]:-webkit-autofill,
.enquiry-pill input[type="email"]:-webkit-autofill:hover,
.enquiry-pill input[type="email"]:-webkit-autofill:focus,
.enquiry-pill input[type="email"]:autofill {
  -webkit-text-fill-color: var(--c-white);
  caret-color: var(--c-white);
  background-color: transparent !important;
  -webkit-background-clip: text;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  transition: background-color 9999s ease-out 0s;
}

.enquiry-pill input::placeholder {
  color: var(--c-grey-dim);
}

.enquiry-pill .btn-enquire {
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-bright) 100%);
  color: var(--c-void);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 2.5rem;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.enquiry-pill .btn-enquire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-teal-bright), var(--c-cyan));
  opacity: 0;
  transition: opacity var(--transition);
}

.enquiry-pill .btn-enquire:hover::before { opacity: 1; }
.enquiry-pill .btn-enquire span { position: relative; z-index: 1; }

.enquiry-pill .btn-enquire:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(29, 212, 238, 0.4);
}

/* ---- Signal Lines (decorative) ---- */
.signal-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.signal-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(18, 181, 204, 0.15), transparent);
  height: 1px;
  width: 60%;
  animation: signalTravel 6s ease-in-out infinite;
  opacity: 0;
}

.signal-line:nth-child(1) { top: 30%; left: -10%; animation-delay: 0s; }
.signal-line:nth-child(2) { top: 55%; right: -10%; width: 40%; animation-delay: 2s; animation-direction: reverse; }
.signal-line:nth-child(3) { top: 72%; left: 5%; width: 50%; animation-delay: 4s; }

@keyframes signalTravel {
  0% { opacity: 0; transform: translateX(-20%); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateX(30%); }
}

/* ---- Scroll indicator ---- */
.scroll-hint {
  position: absolute;
  bottom: clamp(2rem, 4vh, 3rem);
  left: 0;
  right: 0;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.36rem;
  text-align: center;
  opacity: 0;
  animation: fadeSlideUp 1s 1.5s ease forwards;
}

.scroll-hint__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  padding-left: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-grey-dim);
}

.scroll-hint__chevron {
  width: 100%;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.scroll-hint__chevron svg {
  width: 12px;
  height: 9px;
  display: block;
  animation: scrollChevronBounce 1.8s ease-in-out infinite;
  opacity: 0.9;
  transform-origin: 50% 50%;
}

.scroll-hint__chevron path {
  stroke: var(--c-teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes scrollChevronBounce {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(8px); opacity: 0.35; }
}

/* ---- Feature Strips ---- */
.features {
  padding: clamp(3rem, 7vh, 7rem) 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(20, 200, 226, 0.08);
  border-top: 1px solid rgba(20, 200, 226, 0.1);
  border-bottom: 1px solid rgba(20, 200, 226, 0.1);
}

@media (max-width: 1180px) {
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .features { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--c-deep);
  padding: clamp(2.5rem, 5vh, 5rem) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
}

.feature-card:hover {
  background: rgba(22, 46, 80, 0.95);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 200, 226, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-teal-bright);
  background: rgba(20, 200, 226, 0.05);
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-white);
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--c-grey);
  line-height: 1.7;
  font-weight: 300;
}

/* ---- Enquiry Form Section ---- */
.enquiry-section {
  padding: clamp(4rem, 9vh, 9rem) 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--c-grey);
  text-align: center;
  max-width: 760px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ---- Form ---- */
.enquiry-form {
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-panel {
  background: rgba(16, 34, 64, 0.8);
  border: 1px solid rgba(20, 200, 226, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.form-panel__header {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-teal-bright);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-panel__header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(20, 200, 226, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10, 24, 48, 0.6);
  border: 1px solid rgba(20, 200, 226, 0.15);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(20, 200, 226, 0.5);
  box-shadow: 0 0 0 3px rgba(20, 200, 226, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-grey-dim);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230f88a0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--c-deep);
  color: var(--c-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

#form-info {
  min-height: 8.4em;
}

/* Service type toggle */
.service-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-option {
  display: none;
}

.service-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(20, 200, 226, 0.15);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  background: rgba(10, 24, 48, 0.4);
}

.service-label:hover {
  border-color: rgba(20, 200, 226, 0.35);
  background: rgba(20, 200, 226, 0.05);
}

.service-option:checked + .service-label {
  border-color: var(--c-teal-bright);
  background: rgba(20, 200, 226, 0.1);
  box-shadow: 0 0 16px rgba(20, 200, 226, 0.1);
}

.service-label svg {
  color: var(--c-teal);
  transition: color var(--transition);
}

.service-option:checked + .service-label svg {
  color: var(--c-teal-glow);
}

.service-label__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-label__desc {
  font-size: 0.75rem;
  color: var(--c-grey);
  font-weight: 300;
}

/* Customer type toggle */
.customer-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.customer-option {
  display: none;
}

.customer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(20, 200, 226, 0.15);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(10, 24, 48, 0.4);
}

.customer-label:hover {
  border-color: rgba(20, 200, 226, 0.35);
}

.customer-option:checked + .customer-label {
  border-color: var(--c-teal-bright);
  background: rgba(20, 200, 226, 0.1);
}

/* Form submit */
.btn-submit {
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-bright) 100%);
  color: var(--c-void);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius);
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-teal-bright), var(--c-cyan));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-submit:hover::before { opacity: 1; }
.btn-submit span { position: relative; z-index: 1; }

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(18, 181, 204, 0.3);
}

/* Success State */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 4rem 2rem;
}

.form-success.active { display: flex; }
.enquiry-form.submitted { display: none; }

.success-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--c-teal-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-teal-glow);
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-teal-glow);
}

.success-msg {
  color: var(--c-grey);
  max-width: 380px;
  line-height: 1.7;
  font-weight: 300;
}

/* ---- Marquee strip ---- */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(20, 200, 226, 0.08);
  border-bottom: 1px solid rgba(20, 200, 226, 0.08);
  padding: 1rem 0;
  background: rgba(16, 34, 64, 0.4);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

@media (hover: none) and (pointer: coarse) {
  .marquee-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .marquee-wrap::-webkit-scrollbar {
    display: none;
  }

  .marquee-track {
    width: max-content;
    padding: 0 1rem;
    animation: none;
  }
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-teal-dark);
}

.marquee-track .sep {
  color: var(--c-teal);
  opacity: 0.6;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Footer ---- */
.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(20, 200, 226, 0.1);
  background: rgba(16, 34, 64, 0.95);
  padding: clamp(3rem, 5vh, 5rem) 2rem clamp(2rem, 3vh, 3rem);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(20, 200, 226, 0.08);
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 45px;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--c-grey-dim);
  max-width: 280px;
  line-height: 1.6;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--c-grey-dim);
  transition: color var(--transition);
  font-weight: 300;
}

.footer-col ul li a:hover { color: var(--c-teal-bright); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--c-grey-dim);
  line-height: 1.6;
  font-weight: 300;
  max-width: min(980px, 100%);
}

.footer-legal a {
  color: var(--c-grey);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

main.policy-page + .site-footer .footer-legal {
  max-width: 100%;
}

.footer-legal a:hover { color: var(--c-teal-bright); }

.footer-reg {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(58, 78, 94, 0.8);
  letter-spacing: 0.05em;
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 3rem));
  z-index: 200;
  background: rgba(16, 34, 64, 0.96);
  border: 1px solid rgba(20, 200, 226, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 680px;
  width: calc(100% - 3rem);
  backdrop-filter: var(--blur);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
  font-size: 0.82rem;
  color: var(--c-grey);
  line-height: 1.6;
  flex: 1;
  font-weight: 300;
}

.cookie-banner p a {
  color: var(--c-teal-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--c-teal);
  color: var(--c-void);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background: var(--c-teal-bright);
}

.btn-cookie-decline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-grey-dim);
  padding: 0.6rem 0.75rem;
  transition: color var(--transition);
}

.btn-cookie-decline:hover { color: var(--c-grey); }

/* ---- Animations ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.25rem; }
  .hero { padding: 5rem 1.25rem 3rem; }
  .hero__eyebrow {
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-wrap: balance;
  }
  .hero__eyebrow span { display: none; }
  .enquiry-pill { flex-direction: column; border-radius: var(--radius-lg); padding: 0.5rem; gap: 0.5rem; }
  .enquiry-pill input[type="email"] { text-align: center; padding: 0.85rem 1rem; border-radius: var(--radius); }
  #form-info {
    min-height: 10.5em;
    line-height: 1.55;
  }
  .enquiry-pill input[type="email"]:-webkit-autofill,
  .enquiry-pill input[type="email"]:-webkit-autofill:hover,
  .enquiry-pill input[type="email"]:-webkit-autofill:focus,
  .enquiry-pill input[type="email"]:autofill {
    border-radius: var(--radius);
  }
  .enquiry-pill .btn-enquire { border-radius: var(--radius); width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .features { padding: 2rem 0; }
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand p {
    max-width: 34ch;
    text-align: center;
  }
  .footer-links {
    gap: 2rem;
    width: 100%;
    justify-content: center;
  }
  .footer-col { text-align: center; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-legal,
  .footer-reg {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 0;
    padding: 0.62rem 1rem;
    align-items: center;
    pointer-events: auto;
    background: rgba(10, 24, 50, 0.36);
    backdrop-filter: blur(13px) saturate(140%);
    -webkit-backdrop-filter: blur(13px) saturate(140%);
    border-bottom: 1px solid rgba(20, 200, 226, 0.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transition: padding 0.32s ease, background-color 0.32s ease, box-shadow 0.32s ease, backdrop-filter 0.32s ease;
  }

  .site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
      260px circle at var(--cursor-x) var(--cursor-y),
      rgba(132, 234, 255, calc(0.18 * var(--proximity))) 0%,
      rgba(132, 234, 255, calc(0.08 * var(--proximity))) 36%,
      rgba(132, 234, 255, 0) 72%
    );
    z-index: 0;
  }

  .site-header > * {
    position: relative;
    z-index: 1;
  }

  .site-header.scrolled {
    padding: 0.36rem 0.82rem;
    background: rgba(10, 24, 50, 0.32);
    backdrop-filter: blur(12px) saturate(138%);
    -webkit-backdrop-filter: blur(12px) saturate(138%);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .header-pill {
    transform: none !important;
    animation: none !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0.75rem !important;
  }

  .header-pill::after,
  .header-pill--logo::before,
  .header-pill--right::before {
    opacity: 0 !important;
    animation: none !important;
  }

  .header-pill--logo {
    padding: 0.34rem 0.5rem 0.34rem 0.12rem;
  }

  .site-header.scrolled .header-pill--logo {
    padding: 0.2rem 0.28rem 0.2rem 0.06rem;
  }

  .header-pill--right {
    padding: 0.18rem 0;
    gap: 0.35rem;
  }

  .site-header.scrolled .header-pill--right {
    padding: 0.1rem 0;
  }

  .site-header .logo {
    height: 35px;
    filter: none;
  }

  .site-header.scrolled .logo {
    height: 30px;
    filter: none;
  }

  .theme-toggle {
    padding: 0.34rem;
  }

  .site-header.scrolled .theme-toggle {
    padding: 0.26rem;
  }

  .header-badge {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    padding: 0.16rem 0.22rem;
  }

  .site-header.scrolled .header-badge {
    font-size: 0.52rem;
    padding: 0.13rem 0.18rem;
  }

  .hero {
    padding-top: 6.45rem;
  }

  [data-theme="dark"] .site-header {
    background: rgba(10, 24, 50, 0.5);
    border-bottom-color: rgba(20, 200, 226, 0.22);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  }

  [data-theme="dark"] .site-header.scrolled {
    background: rgba(10, 24, 50, 0.44);
    border-bottom-color: rgba(20, 200, 226, 0.2);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  [data-theme="dark"] .site-header .theme-toggle {
    color: #84eaff;
    opacity: 0.98;
  }

  [data-theme="dark"] .site-header .header-badge {
    color: #84eaff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    background: rgba(7, 22, 45, 0.52);
    border: 1px solid rgba(32, 234, 255, 0.3);
    border-radius: 999px;
  }

  [data-theme="dark"] .site-header.scrolled .header-badge {
    background: rgba(7, 22, 45, 0.6);
  }

  [data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.74);
    border-bottom-color: rgba(14, 165, 192, 0.18);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.93);
  }

  [data-theme="light"] .site-header::before {
    background: radial-gradient(
      260px circle at var(--cursor-x) var(--cursor-y),
      rgba(14, 165, 192, calc(0.15 * var(--proximity))) 0%,
      rgba(14, 165, 192, calc(0.07 * var(--proximity))) 36%,
      rgba(14, 165, 192, 0) 72%
    );
  }

  [data-theme="light"] .site-header.scrolled {
    background: rgba(255, 255, 255, 0.66);
    border-bottom-color: rgba(14, 165, 192, 0.16);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  [data-theme="light"] .site-header .theme-toggle {
    color: #0a6075;
    opacity: 0.96;
  }

  [data-theme="light"] .site-header .header-badge {
    color: #0a6075;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(11, 116, 138, 0.24);
    border-radius: 999px;
  }

  [data-theme="light"] .site-header.scrolled .header-badge {
    background: rgba(255, 255, 255, 0.44);
  }
}

/* ---- Square / Foldable screens ---- */
@media (max-aspect-ratio: 1/1) and (max-width: 600px) {
  .hero__headline { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero { min-height: 100svh; padding: 6.45rem 1.25rem 3rem; }
  .enquiry-section { padding: 4rem 1.25rem; }
  .form-panel { padding: 1.5rem 1.25rem; }
  .service-toggle, .customer-toggle { grid-template-columns: 1fr; }
}

/* ---- Theme Toggle ---- */
.theme-toggle {
  color: var(--c-teal-bright);
  padding: 0.4rem;
  border-radius: 0.5rem;
  transition: color var(--transition), opacity var(--transition);
  display: flex;
  align-items: center;
  opacity: 0.72;
}

.theme-toggle:hover { opacity: 1; }

[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }

/* ---- Dual theme logos ---- */
.logo--light { display: none; }
[data-theme="light"] .logo--dark { display: none; }
[data-theme="light"] .logo--light { display: block; }

/* ====================================================
   LIGHT MODE
   ==================================================== */
[data-theme="light"] {
  --c-void: #f0f5fa;
  --c-deep: #e4eef8;
  --c-navy: #d0deed;
  --c-teal-dark: #0a5a6e;
  --c-teal: #0b748a;
  --c-teal-bright: #0ea5c0;
  --c-teal-glow: #0b748a;
  --c-cyan: #007a8f;
  --c-white: #0d1d2e;
  --c-grey: #2e4a62;
  --c-grey-dim: #5a7890;
}

[data-theme="light"] body {
  background-color: var(--c-void);
  background-image:
    radial-gradient(120% 85% at 8% -10%, rgba(162, 216, 238, 0.28) 0%, rgba(162, 216, 238, 0.07) 42%, transparent 72%),
    radial-gradient(100% 75% at 92% 118%, rgba(120, 195, 222, 0.22) 0%, rgba(120, 195, 222, 0.06) 46%, transparent 74%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(240, 245, 250, 0) 38%, rgba(200, 232, 246, 0.12) 100%);
  background-attachment: fixed;
  color: var(--c-white);
}

[data-theme="light"] body::before { opacity: 0.16; }

[data-theme="light"] #starfield {
  opacity: 0.16;
  mix-blend-mode: multiply;
}

[data-theme="light"] .aurora--1 {
  background: radial-gradient(circle, rgba(160, 210, 232, 0.42) 0%, transparent 70%);
}

[data-theme="light"] .aurora--2 {
  background: radial-gradient(circle, rgba(120, 190, 220, 0.3) 0%, transparent 70%);
}

[data-theme="light"] .header-pill {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

[data-theme="light"] .site-header.scrolled .header-pill {
  background:
    radial-gradient(140% 120% at -10% -24%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.08) 36%, transparent 70%),
    radial-gradient(120% 120% at 110% 130%, rgba(14, 165, 192, 0.12) 0%, rgba(14, 165, 192, 0.025) 44%, transparent 74%),
    rgba(255, 255, 255, 0.21);
  border-color: rgba(14, 165, 192, 0.16);
  backdrop-filter: blur(9px) saturate(120%);
  -webkit-backdrop-filter: blur(9px) saturate(120%);
  background-size: 165% 165%, 155% 155%, auto;
  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  animation: liquidLightShift 22s ease-in-out infinite;
}

[data-theme="light"] .site-header.scrolled .header-pill::after {
  opacity: calc(0.44 + (0.2 * var(--proximity)));
  background-size: 180% 180%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.14) 26%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  background:
    radial-gradient(
      180px circle at var(--cursor-x) var(--cursor-y),
      rgba(255, 255, 255, calc(0.18 * var(--proximity))) 0%,
      rgba(14, 165, 192, calc(0.14 * var(--proximity))) 35%,
      rgba(14, 165, 192, 0) 74%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.14) 26%,
      rgba(255, 255, 255, 0.03) 60%,
      transparent 100%
    );
}

[data-theme="light"] .site-header.scrolled .header-pill--right::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.06) 32%,
    rgba(14, 165, 192, 0.14) 56%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 170% 170%;
  opacity: 0.32;
  pointer-events: none;
  animation: lightRefractionSweep 16s ease-in-out infinite;
}

[data-theme="light"] .site-header.scrolled .header-pill--logo {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.44) 0%,
      rgba(200, 235, 248, 0.15) 50%,
      rgba(255, 255, 255, 0.22) 100%
    ),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.045),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05),
    inset 1px 0 0 rgba(255, 255, 255, 0.60);
}

[data-theme="light"] .site-header.scrolled .header-pill--logo::before {
  opacity: 0.46;
  background-size: 175% 175%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.66) 0%,
    rgba(255, 255, 255, 0.15) 32%,
    rgba(14, 165, 192, 0.18) 58%,
    rgba(255, 255, 255, 0.04) 100%
  );
  animation: lightRefractionDrift 15s ease-in-out infinite;
}

@keyframes liquidLightShift {
  0% {
    background-position: 0% 8%, 100% 92%, 0 0;
  }
  50% {
    background-position: 100% 92%, 0% 8%, 0 0;
  }
  100% {
    background-position: 0% 8%, 100% 92%, 0 0;
  }
}

@keyframes lightRefractionDrift {
  0% {
    background-position: 12% 0%;
  }
  50% {
    background-position: 88% 100%;
  }
  100% {
    background-position: 12% 0%;
  }
}

@keyframes lightRefractionSweep {
  0% {
    background-position: 0% 15%;
  }
  50% {
    background-position: 100% 85%;
  }
  100% {
    background-position: 0% 15%;
  }
}

[data-theme="light"] .site-header.scrolled .logo {
  filter: drop-shadow(0 0 6px rgba(14, 165, 192, 0.16));
}

[data-theme="light"] .hero__headline .line--dim {
  color: rgba(13, 29, 46, 0.9);
}

[data-theme="light"] .hero__headline .line--teal {
  color: var(--c-teal-dark);
  text-shadow: 0 0 20px rgba(10, 90, 110, 0.15), 0 0 40px rgba(10, 90, 110, 0.08);
}

[data-theme="light"] .enquiry-pill {
  background: rgba(240, 245, 250, 0.85);
  border-color: rgba(14, 165, 192, 0.3);
}

[data-theme="light"] .enquiry-pill input[type="email"]:-webkit-autofill,
[data-theme="light"] .enquiry-pill input[type="email"]:-webkit-autofill:hover,
[data-theme="light"] .enquiry-pill input[type="email"]:-webkit-autofill:focus,
[data-theme="light"] .enquiry-pill input[type="email"]:autofill {
  -webkit-text-fill-color: #0d1d2e;
  caret-color: #0d1d2e;
}

[data-theme="light"] .features {
  background: rgba(14, 165, 192, 0.05);
  border-top-color: rgba(14, 165, 192, 0.12);
  border-bottom-color: rgba(14, 165, 192, 0.12);
}

[data-theme="light"] .feature-card {
  background: var(--c-deep);
}

[data-theme="light"] .feature-card:hover {
  background: var(--c-navy);
}

[data-theme="light"] .marquee-wrap {
  background: rgba(224, 238, 248, 0.6);
  border-top-color: rgba(14, 165, 192, 0.1);
  border-bottom-color: rgba(14, 165, 192, 0.1);
}

[data-theme="light"] .form-panel {
  background: rgba(240, 245, 250, 0.95);
  border-color: rgba(14, 165, 192, 0.15);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background-color: rgba(255, 255, 255, 0.85);
  border-color: rgba(14, 165, 192, 0.22);
  color: var(--c-white);
}

[data-theme="light"] .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230b748a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

[data-theme="light"] .form-group select option {
  background: #fff;
  color: #0d1d2e;
}

[data-theme="light"] .service-label,
[data-theme="light"] .customer-label {
  background: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .service-label:hover {
  border-color: rgba(14, 165, 192, 0.35);
  background: rgba(14, 165, 192, 0.06);
}

[data-theme="light"] .customer-label:hover {
  border-color: rgba(14, 165, 192, 0.35);
}

[data-theme="light"] .service-option:checked + .service-label,
[data-theme="light"] .customer-option:checked + .customer-label {
  background: rgba(14, 165, 192, 0.12);
}

[data-theme="light"] .site-footer {
  background: rgba(224, 238, 248, 0.98);
  border-top-color: rgba(14, 165, 192, 0.12);
}

[data-theme="light"] .footer-top {
  border-bottom-color: rgba(14, 165, 192, 0.08);
}

[data-theme="light"] .footer-brand img { filter: none; }

[data-theme="light"] .footer-reg {
  color: rgba(90, 120, 144, 0.8);
}

[data-theme="light"] .cookie-banner {
  background: rgba(240, 245, 250, 0.98);
  border-color: rgba(14, 165, 192, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
