/* ============================================================
   WaveTech Exteriors — Master Stylesheet
   Brand: Navy #000333, Cyan #00F0FF, Fonts: Zen Dots + Montserrat
   ============================================================ */

/* Resets & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  background: #000333;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #00F0FF; }
a:hover { text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Zen Dots', cursive; color: #FFFFFF; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 16px; }
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 24px; }
h3 { font-size: 22px; color: #00F0FF; margin-bottom: 12px; }
h4 { font-size: 18px; color: #FFFFFF; }
p { margin: 0 0 16px; }

/* Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* Sections */
section { padding: 80px 0; position: relative; }
.section-dark { background: #050535; }
.section-darker { background: #000222; }
.section-glow { background: #050535; position: relative; overflow: hidden; }
.section-glow::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,243,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.section-glow > * { position: relative; z-index: 1; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* Top utility bar */
.utility-bar {
  background: #000222;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(0,243,255,0.08);
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.utility-bar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.utility-bar a:hover { color: #00F0FF; }

/* Sticky nav */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,3,51,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,243,255,0.08);
}
.site-nav .container { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; padding-bottom: 16px; gap: 16px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
.nav-links a { color: #FFFFFF; text-decoration: none; font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: #00F0FF; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: #00F0FF; font-family: 'Zen Dots', cursive; font-size: 18px; text-decoration: none; white-space: nowrap; }
.nav-phone:hover { text-shadow: 0 0 12px rgba(0,240,255,0.4); }
.nav-toggle { display: none; background: none; border: 1px solid rgba(0,243,255,0.25); color: #FFFFFF; padding: 8px 12px; border-radius: 8px; cursor: pointer; font-size: 18px; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #000333; border-bottom: 1px solid rgba(0,243,255,0.1);
    padding: 12px 24px;
  }
  .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links.open a { display: block; padding: 12px 0; }
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background:
    linear-gradient(180deg, rgba(0,3,51,0.55) 0%, rgba(0,3,51,0.85) 100%),
    url('assets/hero-bg.jpg') center/cover no-repeat,
    #000333;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(0,243,255,0.08), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-card {
  background: rgba(0,3,51,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid rgba(0,243,255,0.12);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  padding: 56px 48px;
  max-width: 760px;
}
.hero-card h1 { margin-top: 0; }
.hero-card .subtitle { font-size: clamp(16px, 1.4vw, 20px); color: rgba(255,255,255,0.9); margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .hero { padding: 80px 0 64px; }
  .hero-card { padding: 32px 24px; }
  .hero-ctas { width: 100%; }
}

/* Buttons */
.btn { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; padding: 14px 32px; border-radius: 50px; text-decoration: none; display: inline-block; transition: transform 0.18s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease; cursor: pointer; border: none; transform-origin: center; }
.btn:hover { transform: scale(0.97); }
.btn:active { transform: scale(0.94); }
.btn-primary { background: #00F0FF; color: #000333; }
.btn-primary:hover { background: #00d4e0; color: #000333; box-shadow: 0 0 20px rgba(0,240,255,0.35); }
.btn-secondary { background: transparent; color: #FFFFFF; border: 1px solid #00F0FF; }
.btn-secondary:hover { background: rgba(0,240,255,0.1); color: #FFFFFF; box-shadow: 0 0 16px rgba(0,240,255,0.15); }

/* Force button text colours to win against section context (e.g. .section-light a { color: ... }) */
.section-light .btn-primary,
.section-light a.btn-primary { color: #000333; }
.section-light .btn-primary:hover,
.section-light a.btn-primary:hover { color: #000333; }
.section-light .btn-secondary,
.section-light a.btn-secondary { color: #000333; border-color: #00B8C4; }
.section-light .btn-secondary:hover,
.section-light a.btn-secondary:hover { color: #000333; background: rgba(0,184,196,0.08); }
@media (max-width: 480px) { .btn { width: 100%; text-align: center; padding: 12px 24px; font-size: 14px; } }

/* Trust bar (standalone — used on hub / Arbroath / thank-you) */
.trust-bar { background: #0a0a33; border-top: 1px solid rgba(0,243,255,0.35); border-bottom: 1px solid rgba(0,243,255,0.35); padding: 20px 0; }
.trust-bar .container { display: flex; justify-content: space-around; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 14px; }
.trust-icon { color: #00F0FF; font-size: 22px; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: rgba(255,255,255,0.03); border: 1px solid rgba(0,243,255,0.08); border-radius: 16px; padding: 32px; transition: all 0.3s ease; }
.card:hover { box-shadow: 0 0 24px rgba(0,243,255,0.12); border-color: rgba(0,243,255,0.2); transform: translateY(-2px); }
.card h3 { color: #00F0FF; }
.card p { color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.card .card-link { color: #00F0FF; font-weight: 600; text-decoration: none; font-size: 14px; }
.card .card-link:hover { text-decoration: underline; }
.card-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(0,243,255,0.1); border: 1px solid rgba(0,243,255,0.2); border-radius: 12px; color: #00F0FF; font-size: 24px; margin-bottom: 16px; }
@media (max-width: 480px) { .card { padding: 20px; border-radius: 12px; } }

/* Section header */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-header .eyebrow { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 13px; color: #00F0FF; margin-bottom: 12px; }
.section-header p { color: rgba(255,255,255,0.8); font-size: 17px; }

/* Two-column split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split img, .split .split-img { border-radius: 16px; border: 1px solid rgba(0,243,255,0.1); }

/* Process steps */
.steps { display: grid; gap: 24px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-number { width: 48px; height: 48px; border-radius: 50%; border: 2px solid #00F0FF; background: #000333; display: flex; align-items: center; justify-content: center; font-family: 'Zen Dots', cursive; color: #00F0FF; font-size: 18px; flex-shrink: 0; }
.step h4 { margin: 4px 0 8px; }

/* Areas list */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.areas-grid a { background: rgba(255,255,255,0.04); border: 1px solid rgba(0,243,255,0.08); border-radius: 10px; padding: 12px 16px; color: #FFFFFF; text-decoration: none; font-size: 14px; transition: all 0.25s; }
.areas-grid a:hover { background: rgba(0,243,255,0.08); border-color: rgba(0,243,255,0.3); color: #00F0FF; }

/* Areas grouped (3-column) with neighbourhood lists */
.areas-grouped { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
@media (max-width: 900px) { .areas-grouped { grid-template-columns: 1fr; gap: 28px; } }
.area-group h3 { font-family: 'Zen Dots', cursive; color: #00F0FF; font-size: 18px; margin: 0 0 14px; }
.area-group .area-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.area-group .area-links a { background: rgba(255,255,255,0.04); border: 1px solid rgba(0,243,255,0.15); border-radius: 8px; padding: 8px 14px; color: #FFFFFF; text-decoration: none; font-size: 14px; transition: all 0.2s; }
.area-group .area-links a:hover { background: rgba(0,243,255,0.1); border-color: rgba(0,243,255,0.4); color: #00F0FF; }
.area-group .area-neighbourhoods { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; }

/* FAQ accordion */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-item summary { padding: 20px 24px; cursor: pointer; font-family: 'Zen Dots', cursive; color: #FFFFFF; font-size: 16px; list-style: none; position: relative; padding-right: 56px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); color: #00F0FF; font-size: 24px; font-family: 'Montserrat', sans-serif; line-height: 1; transition: transform 0.3s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] { border-left: 3px solid #00F0FF; }
.faq-item .faq-body { padding: 0 24px 20px; color: rgba(255,255,255,0.85); }

/* Form */
.quote-form { display: grid; gap: 16px; }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 14px 18px; color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-size: 16px; width: 100%;
  transition: border-color 0.3s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #00F0FF; outline: none; box-shadow: 0 0 12px rgba(0,240,255,0.1); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: rgba(255,255,255,0.6); }

/* Footer */
.site-footer { background: #000222; padding: 64px 0 24px; border-top: 1px solid rgba(0,243,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-col h4 { font-family: 'Zen Dots', cursive; color: #FFFFFF; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: #00F0FF; }
.footer-logo img { height: 56px; margin-bottom: 16px; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 320px; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* Eyebrow utility */
.eyebrow { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; color: #00F0FF; margin-bottom: 12px; }

/* Highlight blocks for inline emphasis paragraphs */
.benefit { padding: 0; }
.benefit strong { color: #FFFFFF; }

/* Prose container for long page content */
.prose h2 { margin-top: 48px; }
.prose h3 { margin-top: 28px; }
.prose ul { padding-left: 20px; }
.prose ul li { margin-bottom: 6px; }
.prose blockquote { border-left: 3px solid #00F0FF; padding-left: 20px; color: rgba(255,255,255,0.85); font-style: italic; margin: 24px 0; }

/* Phone large */
.phone-large { font-family: 'Zen Dots', cursive; font-size: 28px; color: #00F0FF; text-decoration: none; }
.phone-large:hover { text-shadow: 0 0 16px rgba(0,240,255,0.4); }

/* Skip link for accessibility */
.skip-link { position: absolute; left: -9999px; top: 0; background: #00F0FF; color: #000333; padding: 12px 16px; z-index: 100; }
.skip-link:focus { left: 16px; top: 16px; }

/* ============================================================
   Light Sections — for long-form reading and trust content
   ============================================================ */
.section-light { background: #F6F8FB; color: #1A1F36; }
.section-light h1, .section-light h2 { color: #000333; }
.section-light h3 { color: #00B8C4; } /* darker cyan, AA contrast on light bg */
.section-light h4 { color: #000333; }
.section-light p { color: #2F3445; }
.section-light .eyebrow { color: #00B8C4; }
.section-light a { color: #00B8C4; }
.section-light a:hover { color: #009BA8; }
.section-light .section-header p { color: #4A5468; }
.section-light blockquote { border-left-color: #00B8C4; color: #2F3445; }

/* Light section: FAQ accordion */
.section-light .faq-item { background: #FFFFFF; border-bottom: 1px solid rgba(0,3,51,0.08); border-radius: 0; }
.section-light .faq-item summary { color: #000333; font-family: 'Zen Dots', cursive; }
.section-light .faq-item summary::after { color: #00B8C4; }
.section-light .faq-item[open] { border-left: 3px solid #00B8C4; background: #FFFFFF; }
.section-light .faq-item .faq-body { color: #2F3445; }

/* Light section: benefit & generic cards */
.section-light .card { background: #FFFFFF; border: 1px solid rgba(0,3,51,0.06); box-shadow: 0 2px 8px rgba(0,3,51,0.04); }
.section-light .card:hover { box-shadow: 0 8px 24px rgba(0,3,51,0.08); border-color: rgba(0,184,196,0.3); }
.section-light .card h3 { color: #00B8C4; }
.section-light .card h3 + p strong, .section-light .card p strong { color: #000333; }
.section-light .card p { color: #2F3445; }

/* ============================================================
   Benefit Grid — replaces dense prose "why upgrade" sections
   ============================================================ */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.benefit-card { background: #FFFFFF; border: 1px solid rgba(0,3,51,0.06); border-radius: 14px; padding: 24px; box-shadow: 0 2px 8px rgba(0,3,51,0.04); transition: all 0.25s ease; }
.benefit-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,3,51,0.08); border-color: rgba(0,184,196,0.3); }
.benefit-card .benefit-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,184,196,0.1); border: 1px solid rgba(0,184,196,0.2); display: flex; align-items: center; justify-content: center; color: #00B8C4; font-size: 22px; margin-bottom: 14px; }
.benefit-card h4 { font-family: 'Zen Dots', cursive; color: #000333; font-size: 16px; margin: 0 0 8px; line-height: 1.3; }
.benefit-card p { color: #4A5468; font-size: 15px; margin: 0; line-height: 1.55; }

/* Dark section variant of benefit cards (for cases we keep dark) */
.section-dark .benefit-card, section:not(.section-light):not(.section-dark):not(.section-glow) .benefit-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(0,243,255,0.08); }
.section-dark .benefit-card h4 { color: #FFFFFF; }
.section-dark .benefit-card p { color: rgba(255,255,255,0.8); }
.section-dark .benefit-card .benefit-icon { background: rgba(0,243,255,0.1); border-color: rgba(0,243,255,0.2); color: #00F0FF; }

/* ============================================================
   Sticky Mobile Bottom CTA Bar
   ============================================================ */
.mobile-cta { display: none; }
@media (max-width: 768px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: #000333; border-top: 1px solid rgba(0,243,255,0.2);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
    padding: env(safe-area-inset-bottom, 0) 0 0 0;
  }
  .mobile-cta a {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 16px 6px; font-family: 'Montserrat', sans-serif; font-weight: 700;
    text-decoration: none; font-size: 14px;
  }
  .mobile-cta .mc-call { color: #00F0FF; border-right: 1px solid rgba(0,243,255,0.15); }
  .mobile-cta .mc-whatsapp { color: #25D366; border-right: 1px solid rgba(0,243,255,0.15); }
  .mobile-cta .mc-quote { background: #00F0FF; color: #000333; }
  body { padding-bottom: 64px; } /* offset for the bar */
}

/* ============================================================
   Compact hero form (above-the-fold variant)
   ============================================================ */
.wt-form-hero {
  background: rgba(0,3,51,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,243,255,0.18);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  gap: 12px;
  max-width: 380px;
  margin-top: 8px;
}
.wt-form-hero .wt-hero-form-title {
  font-family: 'Zen Dots', cursive;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #00F0FF; margin: 0 0 4px;
}
.wt-form-hero .form-input,
.wt-form-hero .form-select {
  padding: 12px 14px; font-size: 15px;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}
.wt-form-hero .btn { margin-top: 4px; }
.wt-form-hero .form-note { margin: 0; font-size: 12px; }
@media (max-width: 768px) {
  .wt-form-hero { max-width: none; margin-top: 16px; padding: 20px 18px; }
}

/* ============================================================
   Google Maps Embed
   ============================================================ */
.map-embed { position: relative; padding-bottom: 50%; height: 0; overflow: hidden; border-radius: 16px; border: 1px solid rgba(0,243,255,0.1); margin-top: 24px; }
.section-light .map-embed { border-color: rgba(0,3,51,0.1); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }

/* ============================================================
   Trust / Proof Bar (with logos + Dane card)
   ============================================================ */
.proof-bar-detailed { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; align-items: center; }
.proof-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; color: rgba(255,255,255,0.9); }
.proof-item strong { font-family: 'Zen Dots', cursive; color: #00F0FF; font-size: 24px; }
.proof-item span { font-size: 13px; color: rgba(255,255,255,0.7); }
.proof-logos { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.proof-logos img { height: 44px; opacity: 0.85; filter: brightness(1.2); }
.section-light .proof-item { color: #1A1F36; }
.section-light .proof-item strong { color: #00B8C4; }
.section-light .proof-item span { color: #4A5468; }
.section-light .proof-logos img { filter: none; opacity: 1; }

/* ============================================================
   Dane / Owner Card — face + name + reassurance
   ============================================================ */
.owner-card { display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: center; background: #FFFFFF; border-radius: 16px; padding: 24px; box-shadow: 0 4px 16px rgba(0,3,51,0.08); }
.owner-card img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 3px solid #00B8C4; }
.owner-card .owner-name { font-family: 'Zen Dots', cursive; color: #000333; font-size: 20px; margin: 0 0 6px; }
.owner-card .owner-role { color: #00B8C4; font-size: 13px; text-transform: uppercase; letter-spacing: 0.15em; margin: 0 0 12px; font-weight: 700; }
.owner-card p { color: #2F3445; margin: 0; font-size: 15px; line-height: 1.55; }
@media (max-width: 480px) { .owner-card { grid-template-columns: 1fr; text-align: center; } .owner-card img { margin: 0 auto; } }

/* ============================================================
   Image slots — pretty fallback if file not present yet
   ============================================================ */
.img-slot { background: rgba(255,255,255,0.04); border: 1px dashed rgba(0,243,255,0.25); border-radius: 16px; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 13px; text-align: center; padding: 16px; }
.section-light .img-slot { background: rgba(0,3,51,0.04); border-color: rgba(0,3,51,0.15); color: rgba(0,3,51,0.5); }
.img-slot.has-img { padding: 0; border: 1px solid rgba(0,243,255,0.1); overflow: hidden; }
.img-slot.has-img img { width: 100%; height: 100%; object-fit: cover; }

/* Hero with image: right-side photo on desktop (legacy — kept for fallback) */
.hero-with-image .hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.hero-with-image .hero-photo { aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,243,255,0.15); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.hero-with-image .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-with-image .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-with-image .hero-photo { display: none; }
}

/* ============================================================
   Hero with background image
   Usage: <section class="hero hero-bg" style="--hero-image: url('assets/hero-home.webp');">
   Gradient: heavier on left (text legibility) → lighter on right (photo visibility)
   Plus subtle bottom-fade for clean transition into next section
   ============================================================ */
.hero.hero-bg {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(0, 3, 51, 0.55) 0%,
      rgba(0, 3, 51, 0.45) 35%,
      rgba(0, 3, 51, 0.50) 100%
    ),
    var(--hero-image) center/cover no-repeat,
    #000333;
  min-height: 0;            /* let content size it */
  height: calc(100vh - 110px); /* viewport minus utility-bar + sticky nav */
  max-height: 760px;        /* don't go ridiculous on huge screens */
  padding: 0 0 80px;        /* room for the wave divider at bottom */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.hero.hero-bg::after { display: none; }

/* Hero text floats directly on the overlay — no card */
.hero.hero-bg .hero-inner { display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.hero.hero-bg .hero-text { max-width: 760px; }
.hero.hero-bg .hero-text h1 { margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0, 3, 51, 0.6); }
.hero.hero-bg .hero-text .subtitle { color: rgba(255, 255, 255, 0.92); text-shadow: 0 1px 8px rgba(0, 3, 51, 0.6); margin-bottom: 28px; max-width: 640px; }
.hero.hero-bg .hero-text .cta-trust { text-shadow: 0 1px 6px rgba(0, 3, 51, 0.6); }

/* ============================================================
   Hero — split layout: copy LEFT, form RIGHT, trust strip full-width below
   Used by: <section class="hero hero-bg hero-split">
   Overrides the single-column hero-bg defaults above.
   ============================================================ */
.hero.hero-bg.hero-split {
  /* Form column makes content taller — relax the desktop height cap */
  height: auto;
  min-height: calc(100vh - 110px);
  max-height: none;
  padding: 60px 0 100px;
}
.hero.hero-bg.hero-split .hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.hero.hero-bg.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero.hero-bg.hero-split .hero-col-left { display: flex; flex-direction: column; gap: 24px; }
.hero.hero-bg.hero-split .hero-text { max-width: none; }
.hero.hero-bg.hero-split .hero-text .subtitle { max-width: none; }

/* Form column: let the GHL form be the only glass card. Make the slot fill the column edge-to-edge
   and vertically centre it within the row (overrides the grid's default item stretch). */
.hero.hero-bg.hero-split .hero-col-right {
  width: 100%;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero.hero-bg.hero-split .hero-col-right > [data-wavetech-form] { width: 100%; max-width: none; }

@media (max-width: 980px) {
  .hero.hero-bg.hero-split .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Eyebrow pill (like the live site) */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 14px;
  border: 1px solid rgba(0, 243, 255, 0.55);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 13px;
  color: #00F0FF; letter-spacing: 0.04em;
  background: rgba(0, 3, 51, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 20px;
}
.eyebrow-pill::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #00F0FF; box-shadow: 0 0 10px rgba(0, 243, 255, 0.7);
  flex-shrink: 0;
}

/* Trust strip inside the hero, sits at the bottom */
.hero-trust {
  margin-top: 28px;
  padding: 18px 24px;
  background: rgba(0, 3, 51, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 243, 255, 0.35);
  border-radius: 14px;
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  justify-content: space-between;
}
.hero-trust .trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.92); font-size: 14px; }
.hero-trust .trust-icon { color: #00F0FF; font-size: 18px; }

/* Curved wave divider at the bottom of the hero */
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 70px; display: block; pointer-events: none;
}

@media (max-width: 900px) {
  .hero.hero-bg {
    height: auto;
    min-height: calc(100vh - 110px);
    max-height: none;
    padding: 40px 0 90px;
    background:
      linear-gradient(
        180deg,
        rgba(0, 3, 51, 0.55) 0%,
        rgba(0, 3, 51, 0.45) 35%,
        rgba(0, 3, 51, 0.65) 100%
      ),
      var(--hero-image) center/cover no-repeat,
      #000333;
  }
  .hero-trust { gap: 14px; padding: 14px 18px; }
  .hero-trust .trust-item { font-size: 13px; }
}

/* Risk-reversal microcopy under CTAs */
.cta-trust { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 12px; }
.section-light .cta-trust { color: #4A5468; }

/* ============================================================
   Dual-phone display (Dundee primary + Angus secondary)
   ============================================================ */
.phone-pair { display: inline-flex; flex-direction: column; gap: 10px; line-height: 1.2; }
.phone-pair .phone-line { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.phone-pair .phone-label { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); min-width: 56px; font-weight: 600; }
/* Equal-weight phone numbers in CTA sections */
.phone-pair .phone-primary,
.phone-pair .phone-secondary {
  font-family: 'Zen Dots', cursive;
  font-size: 26px;
  color: #00F0FF;
  text-decoration: none;
}
.phone-pair a:hover { text-shadow: 0 0 14px rgba(0,240,255,0.35); }
.section-light .phone-pair .phone-primary,
.section-light .phone-pair .phone-secondary { color: #00B8C4; }
.section-light .phone-pair .phone-label { color: #4A5468; }

/* Inline (single-line, comma-separated) version for utility bar */
.phone-inline { display: inline-flex; gap: 18px; align-items: center; font-size: 13px; }
.phone-inline a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; }
.phone-inline a:hover { color: #00F0FF; }
.phone-inline .phone-label { color: rgba(255,255,255,0.55); margin-right: 6px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; }
@media (max-width: 600px) { .phone-inline { flex-direction: column; gap: 4px; align-items: flex-start; } }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: #FFFFFF; border: 1px solid rgba(0,3,51,0.06); border-radius: 16px; padding: 28px; box-shadow: 0 4px 16px rgba(0,3,51,0.05); display: flex; flex-direction: column; gap: 16px; }
.testimonial-card .stars { color: #FFB400; font-size: 18px; letter-spacing: 2px; }
.testimonial-card blockquote { margin: 0; padding: 0; border: none; color: #1A1F36; font-size: 16px; line-height: 1.6; font-style: normal; position: relative; }
.testimonial-card blockquote::before { content: '\201C'; font-family: Georgia, serif; font-size: 48px; color: rgba(0,184,196,0.25); line-height: 0.8; position: absolute; top: -2px; left: -6px; }
.testimonial-card blockquote p { padding-left: 18px; margin: 0; }
.testimonial-card .testimonial-meta { display: flex; flex-direction: column; gap: 2px; padding-top: 12px; border-top: 1px solid rgba(0,3,51,0.06); }
.testimonial-card .testimonial-name { font-family: 'Zen Dots', cursive; color: #000333; font-size: 14px; }
.testimonial-card .testimonial-location { font-size: 13px; color: #4A5468; }
/* Dark-section variant if we ever need it */
.section-dark .testimonial-card { background: rgba(255,255,255,0.04); border-color: rgba(0,243,255,0.1); }
.section-dark .testimonial-card blockquote { color: #FFFFFF; }
.section-dark .testimonial-card .testimonial-name { color: #00F0FF; }
.section-dark .testimonial-card .testimonial-location { color: rgba(255,255,255,0.65); }
