/* ==========================================================================
   AE REFRIGERATION — Core Stylesheet
   Design system: Dark Navy / Royal Blue / White / Light Grey / Orange accent
   Sharp-edged cards, thin borders, soft shadows, generous whitespace.
   Signature: monospace "readout" numerals for stats & specs — a nod to
   digital thermostat displays.
   ========================================================================== */

:root {
  /* Colour tokens */
  --navy: #0A1B2E;
  --navy-deep: #06111D;
  --royal: #1E4FA3;
  --royal-light: #3568C4;
  --white: #FFFFFF;
  --grey-50: #F5F7F9;
  --grey-100: #EAEDF1;
  --grey-300: #C7CFD8;
  --grey-500: #6B7686;
  --grey-700: #3A4451;
  --orange: #E4611C;
  --orange-dark: #C24E12;

  /* Typography */
  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --container: 1240px;
  --radius: 0px;
  /* sharp corners, by design */
  --shadow-sm: 0 1px 3px rgba(10, 27, 46, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 27, 46, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 27, 46, 0.16);
  --border: 1px solid var(--grey-100);
  --transition: 220ms cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 1em;
  color: var(--grey-700);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 20px;
  color: var(--royal);
  font-weight: 600;
  display: inline-block;
  margin-bottom: .9em;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--royal);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo span {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .16em;
  color: var(--royal);
  font-weight: 500;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav>ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav>ul>li {
  position: relative;
}

.main-nav>ul>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  transition: color var(--transition);
}

.main-nav>ul>li>a:hover {
  color: var(--royal);
}

.caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform var(--transition);
}

.has-dropdown:hover .caret {
  transform: rotate(225deg);
  margin-top: 4px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  padding: 8px 0;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 22px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--grey-700);
  border-left: 2px solid transparent;
}

.dropdown a:hover {
  background: var(--grey-50);
  color: var(--royal);
  border-left-color: var(--orange);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: .82rem;
}

.header-phone strong {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--navy);
}

.header-phone small {
  color: var(--grey-500);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 17, 29, .75) 0%, rgba(10, 27, 46, .67) 42%, rgba(10, 27, 46, .67) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:940px;
  margin:0 auto;          
}
.hero-actions{
  display:flex; gap:16px; flex-wrap:wrap;
  margin-top:2em;
  justify-content:center;  
}
.hero-stats{
  display:flex; gap:36px; flex-wrap:wrap;
  margin-top:3em;
  justify-content:center;  
}
.hero-stat{
  display:flex; flex-direction:column;
  align-items:center;    
}

.hero .eyebrow {
  color: #8FB3EE;
}

.hero h1 {
  color: var(--white);
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

.hero p.lead {
  color: #D7E0EC;
  font-size: 1.15rem;
  text-align: center;
}

.hero-actions .btn,
.cta-actions .btn{
  min-width:230px;
  padding-left:44px;
  padding-right:44px;
}

.hero-stat b {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  color: var(--orange);
}

.hero-stat span {
  font-size: .78rem;
  color: #B7C6DB;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- Quick Quote Form ---------- */
.quote-strip {
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-100);
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-md);
  margin-top: -70px;
  position: relative;
  z-index: 5;
  padding: 36px;
}

.quote-card-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 36px;
  align-items: center;
}

.quote-card h2 {
  margin-bottom: .25em;
}

.quote-card .eyebrow {
  margin-bottom: .4em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--grey-300);
  background: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--navy);
  transition: border-color var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--royal);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: .78rem;
  color: var(--grey-500);
  margin-top: 10px;
}

.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  font-size: .9rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #EAF6EE;
  border-left: 3px solid #2E9E4C;
  color: #1F6E36;
}

.form-status.error {
  display: block;
  background: #FCEBEA;
  border-left: 3px solid #D64545;
  color: #A3312F;
}

/* ---------- Sections ---------- */
section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy p {
  color: #C4D0E0;
}

.section-grey {
  background: var(--grey-50);
}

.section-head {
  max-width: 680px;
  margin-bottom: 3.2em;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Alternating media/text layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split+.split {
  margin-top: 96px;
}

.split.reverse .split-media {
  order: 2;
}

.split.reverse .split-text {
  order: 1;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.split-media {
  position: relative;
}

.split-media::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 2px solid var(--royal);
  z-index: -1;
}

.split-text .eyebrow {
  margin-bottom: .6em;
}

.check-list {
  margin-top: 1.4em;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--grey-700);
  font-weight: 500;
  border-bottom: 1px solid var(--grey-100);
}

.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  background-color: var(--royal);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 28px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  padding: 32px 28px;
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--royal);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}

.card h3 {
  margin-bottom: .5em;
}

.card a.card-link {
  display: inline-block;
  margin-top: 1em;
  font-weight: 700;
  color: var(--royal);
  font-size: .88rem;
}

.card a.card-link::after {
  content: ' →';
}

.service-card {
  display: flex;
  flex-direction: column;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card-body {
  padding: 26px 26px 30px;
}

/* Trust indicators */
.trust-strip {
  background: var(--navy);
  padding: 34px 0;
}

.trust-strip .grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.trust-item b {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--orange);
}

.trust-item span {
  font-size: .82rem;
  color: #B7C6DB;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Brand strip */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.brand-chip {
  border: 1px solid var(--grey-300);
  padding: 14px 26px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
}

.brand-chip:hover {
  border-color: var(--royal);
  color: var(--royal);
}

/* Areas list */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-100);
  border: 1px solid var(--grey-100);
}

.areas-grid a {
  background: var(--white);
  padding: 16px 18px;
  font-weight: 600;
  font-size: .92rem;
  transition: var(--transition);
}

.areas-grid a:hover {
  background: var(--navy);
  color: var(--white);
}

/* Testimonials */
.testimonial-card {
  border-left: 3px solid var(--orange);
  background: var(--white);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--orange);
  font-family: var(--font-mono);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-name {
  font-weight: 700;
  margin-top: 16px;
  color: var(--navy);
}

.testimonial-loc {
  font-size: .82rem;
  color: var(--grey-500);
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--grey-100);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
}

.faq-q .plus {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--royal);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-a p {
  padding: 0 4px 22px;
}

.faq-item.open .faq-a {
  max-height: 500px;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(30, 79, 163, .35), transparent 55%);
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: #C4D0E0;
  max-width: 560px;
  margin: 0 auto 1.8em;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #AAB8CA;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.2em;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: .92rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-row a:hover {
  background: var(--royal);
  border-color: var(--royal);
}

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
}

/* Breadcrumb */
.breadcrumb {
  padding: 18px 0;
  font-size: .82rem;
  color: var(--grey-500);
  border-bottom: 1px solid var(--grey-100);
}

.breadcrumb a {
  color: var(--royal);
}

.breadcrumb span {
  margin: 0 8px;
}

/* Page intro (no image hero variant not used, kept for uniformity) */
.intro-block {
  max-width: 760px;
}

/* Fault grid for service pages */
.fault-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--grey-100);
  border: 1px solid var(--grey-100);
}

.fault-item {
  background: var(--white);
  padding: 26px 28px;
}

.fault-item h4 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fault-item h4::before {
  content: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: var(--orange);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0Z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0Z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Process steps */
.process-row {
  display: flex;
  gap: 0;
  counter-reset: step;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  padding: 28px 24px;
  border-top: 3px solid var(--royal);
  position: relative;
}

.process-step .num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--royal);
  font-weight: 700;
}

.process-step h4 {
  color: var(--white)
}

/* Table (for equipment specs where useful) */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--grey-100);
  font-size: .92rem;
}

.info-table th {
  font-family: var(--font-display);
  color: var(--navy);
  background: var(--grey-50);
}

/* ---------- Responsive ---------- */
@media (max-width:1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split.reverse .split-media {
    order: 1;
  }

  .split.reverse .split-text {
    order: 2;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .quote-card-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width:820px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--white);
    top: 73px;
    height: calc(100% - 73px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav>ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav>ul>li>a {
    padding: 16px 8px;
    border-bottom: 1px solid var(--grey-100);
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 14px;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: hidden;
  }

  .has-dropdown.open:hover .dropdown {
    visibility: visible;
  }

  .nav-toggle {
    display: block;
  }

  .header-phone {
    display: none;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .quote-card {
    margin-top: -40px;
    padding: 26px;
  }

  .trust-strip .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .fault-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  section {
    padding: 64px 0;
  }

  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--navy);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .2);
  }

  .mobile-call-bar a {
    flex: 1;
    text-align: center;
    padding: 16px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--white);
  }

  .mobile-call-bar a:first-child {
    background: var(--orange);
  }

  body {
    padding-bottom: 55px;
  }
}

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

  .hero-stats {
    gap: 22px;
  }

  .header-cta a{
    display: none;
  }
}

.signal-strip{
  display:flex;
  flex-wrap:wrap;
  border:1px solid var(--grey-100);
  background:var(--navy);
  box-shadow:var(--shadow-sm);
}
.signal-strip-item{
  flex:1 1 0;
  min-width:180px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 24px;
  border-right:1px solid var(--grey-100);
}
.signal-strip-item:last-child{ border-right:none; }
.signal-strip-icon{
  width:38px; height:38px; flex-shrink:0;
  background:var(--grey-50);
  display:flex; align-items:center; justify-content:center;
  color:var(--royal);
  font-size:1.05rem;
}
.signal-strip-text b{
  display:block;
  font-family:var(--font-display);
  font-size:.92rem;
  color:var(--white);
}
.signal-strip-text span{
  font-size:.78rem;
  color:var(--white);
}
@media (max-width:820px){
  .signal-strip{ flex-direction:column; }
  .signal-strip-item{ border-right:none; border-bottom:1px solid var(--grey-100); }
  .signal-strip-item:last-child{ border-bottom:none; }
}

  .brands-section {
    padding: 80px 0;
    background: #ffffff;
  }
 
  .brands-section .section-head {
    max-width: 640px;
    margin: 0 auto 44px;
    text-align: center;
  }
 
  .brands-section .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1f6f5c;
    margin-bottom: 12px;
  }
 
  .brands-section h2 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    margin: 0;
    color: #10241f;
  }
 
  .brand-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
 
  .brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e6e9e7;
    border-radius: 14px;
    padding: 24px 20px;
    height: 110px;
    box-shadow: 0 2px 8px rgba(16, 36, 31, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
 
  .brand-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(16, 36, 31, 0.1);
    border-color: #cfe0da;
  }
 
  .brand-logo img {
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* full colour, full opacity, no greyscale filter applied */
  }
 
  @media (max-width: 900px) {
    .brand-strip {
      grid-template-columns: repeat(3, 1fr);
    }
  }
 
  @media (max-width: 480px) {
    .brand-strip {
      grid-template-columns: repeat(2, 1fr);
    }
    .brand-logo {
      height: 90px;
      padding: 16px;
    }
    .brand-logo img {
      max-height: 42px;
    }
  }

  .google-badge{
  display:flex; align-items:center; gap:8px;
  margin-bottom:14px;
  font-family:var(--font-mono);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--grey-500);
}