/*
Theme Name: Cipher Automotive
Theme URI: https://cipherauto.uk
Author: Cipher Automotive Ltd
Author URI: https://cipherauto.uk
Description: Custom professional theme for Cipher Automotive Ltd — specialist automotive locksmith serving BMW, Jaguar Land Rover, and VW Group vehicles across Berkshire and surrounding counties.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cipher-automotive
Tags: custom-theme, automotive, dark
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --cipher-black:   #060608;
  --cipher-dark:    #0a0a0e;
  --cipher-surface: #111116;
  --cipher-teal:    #28F0B4;
  --cipher-text:    #e8e8ec;
  --cipher-muted:   #9a9aaa;
  --cipher-border:  rgba(40, 240, 180, 0.15);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius: 2px;
  --transition: 0.3s ease;
  --section-pad: 80px;
  --section-pad-mobile: 40px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--cipher-black);
  color: var(--cipher-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

a {
  color: var(--cipher-teal);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: #fff;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cipher-text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cipher-text);
}

.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cipher-teal);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background-color: var(--cipher-dark);
}

.section--surface {
  background-color: var(--cipher-surface);
}

.section-header {
  margin-bottom: 56px;
  text-align: center;
}

.section-header .label {
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--cipher-muted);
  font-size: 1.0625rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  min-width: 200px;
}

.btn--primary {
  background-color: var(--cipher-teal);
  color: var(--cipher-black);
  font-weight: 600;
}

.btn--primary:hover {
  background-color: #fff;
  color: var(--cipher-black);
}

.btn--outline {
  background-color: transparent;
  color: var(--cipher-text);
  border: 1px solid rgba(232, 232, 236, 0.3);
}

.btn--outline:hover {
  border-color: var(--cipher-teal);
  color: var(--cipher-teal);
}

.btn--teal-outline {
  background-color: transparent;
  color: var(--cipher-teal);
  border: 1px solid var(--cipher-teal);
}

.btn--teal-outline:hover {
  background-color: var(--cipher-teal);
  color: var(--cipher-black);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(6, 6, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cipher-border);
  transition: background-color var(--transition);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  transition: opacity var(--transition);
  mix-blend-mode: screen;
}

.nav-logo img:hover {
  opacity: 0.85;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cipher-text);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--cipher-teal);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.current-menu-item {
  color: var(--cipher-teal);
}

.nav-link:hover::after,
.nav-link.current-menu-item::after {
  transform: scaleX(1);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background-color: var(--cipher-black);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(40, 240, 180, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 70%, rgba(40, 240, 180, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* --- Logo + Rings Assembly --- */
.hero-logo-assembly {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  width: 720px;
  height: 720px;
}

.hero-logo-img {
  width: 570px;
  height: 570px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  mix-blend-mode: screen;
}

/* Spinning Rings */
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
  transform-origin: center;
  pointer-events: none;
  z-index: 1;
}

.ring-1 {
  width: 630px;
  height: 630px;
  margin-top: -315px;
  margin-left: -315px;
  border-width: 1px;
  border-top-color: rgba(40, 240, 180, 0.7);
  border-right-color: rgba(40, 240, 180, 0.2);
  animation: ring-spin-cw 8s linear infinite;
}

.ring-2 {
  width: 675px;
  height: 675px;
  margin-top: -338px;
  margin-left: -338px;
  border-width: 1px;
  border-top-color: rgba(40, 240, 180, 0.4);
  border-left-color: rgba(40, 240, 180, 0.15);
  animation: ring-spin-ccw 12s linear infinite;
}

.ring-3 {
  width: 717px;
  height: 717px;
  margin-top: -359px;
  margin-left: -359px;
  border-width: 1px;
  border-bottom-color: rgba(40, 240, 180, 0.3);
  border-right-color: rgba(40, 240, 180, 0.1);
  animation: ring-spin-cw 18s linear infinite;
}

/* Ring tick dots removed */

@keyframes ring-spin-cw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes ring-spin-ccw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* --- Hero Text --- */
.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 3;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cipher-teal);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--cipher-text);
}

.hero-title span {
  color: var(--cipher-teal);
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--cipher-muted);
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 200px;
  flex: 0 0 200px;
}

/* ============================================================
   SECTION TRANSITION
   ============================================================ */
.section-transition {
  padding: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(40, 240, 180, 0.15) 20%,
    rgba(40, 240, 180, 0.5) 50%,
    rgba(40, 240, 180, 0.15) 80%,
    transparent 100%
  );
  position: relative;
}

.section-transition-line {
  display: none;
}

/* ============================================================
   SERVICES GRID (Homepage 8-grid)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  background-color: var(--cipher-border);
}

/* Top row: 4 cards each span 3 of 12 columns */
.services-grid .service-card:nth-child(1) { grid-column: span 3; }
.services-grid .service-card:nth-child(2) { grid-column: span 3; }
.services-grid .service-card:nth-child(3) { grid-column: span 3; }
.services-grid .service-card:nth-child(4) { grid-column: span 3; }

/* Bottom row: 3 cards each span 4 of 12 columns — fills cleanly */
.services-grid .service-card:nth-child(5) { grid-column: span 4; }
.services-grid .service-card:nth-child(6) { grid-column: span 4; }
.services-grid .service-card:nth-child(7) { grid-column: span 4; }

.service-card {
  background-color: var(--cipher-surface);
  padding: 40px 32px;
  transition: background-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--cipher-teal);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  background-color: #16161c;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: block;
}

.service-card-tag {
  display: none;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--cipher-text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--cipher-muted);
  line-height: 1.65;
}

/* ============================================================
   WHATSAPP QUOTE FORM
   ============================================================ */
.quote-section {
  background-color: var(--cipher-dark);
  padding: var(--section-pad) 0;
}

.quote-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cipher-teal);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--cipher-surface);
  border: 1px solid rgba(232, 232, 236, 0.1);
  border-radius: var(--radius);
  color: var(--cipher-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--cipher-teal);
}

.form-control::placeholder {
  color: var(--cipher-muted);
}

select.form-control {
  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='%2328F0B4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-control option {
  background-color: var(--cipher-surface);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  min-width: unset;
  padding: 16px 32px;
  font-size: 0.875rem;
  gap: 10px;
}

.whatsapp-note {
  margin-top: 12px;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--cipher-muted);
}

/* ============================================================
   TRUST BAR / STATS
   ============================================================ */
.trust-bar {
  background-color: var(--cipher-surface);
  padding: 40px 0;
  border-top: 1px solid var(--cipher-border);
  border-bottom: 1px solid var(--cipher-border);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  text-align: center;
}

.trust-item-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--cipher-teal);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.trust-item-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cipher-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--cipher-dark);
  border-top: 1px solid var(--cipher-border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
  mix-blend-mode: screen;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--cipher-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cipher-teal);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--cipher-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--cipher-text);
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--cipher-muted);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--cipher-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--cipher-muted);
}

.footer-bottom a {
  color: var(--cipher-muted);
  font-size: 0.8125rem;
}

.footer-bottom a:hover {
  color: var(--cipher-teal);
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 64px;
  background-color: var(--cipher-black);
  border-bottom: 1px solid var(--cipher-border);
  text-align: center;
}

.page-hero .label {
  display: block;
  margin-bottom: 16px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--cipher-muted);
  font-size: 1.0625rem;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-tier {
  margin-bottom: 16px;
}

.tier-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.tier-badge--specialist {
  background-color: rgba(40, 240, 180, 0.12);
  color: var(--cipher-teal);
  border: 1px solid rgba(40, 240, 180, 0.3);
}

.tier-badge--standard {
  background-color: rgba(232, 232, 236, 0.06);
  color: var(--cipher-muted);
  border: 1px solid rgba(232, 232, 236, 0.12);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  background-color: var(--cipher-border);
}

.service-item {
  background-color: var(--cipher-surface);
  padding: 36px 32px;
  transition: background-color var(--transition);
}

.service-item:hover {
  background-color: #16161c;
}

.service-item-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.service-item-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cipher-text);
}

.service-item p {
  font-size: 0.9375rem;
  color: var(--cipher-muted);
  line-height: 1.7;
}

.service-item ul {
  margin-top: 12px;
}

.service-item ul li {
  font-size: 0.875rem;
  color: var(--cipher-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.service-item ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--cipher-teal);
  font-size: 0.75rem;
}

/* ============================================================
   MAKES PAGE
   ============================================================ */
.makes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background-color: var(--cipher-border);
}

.make-card {
  background-color: var(--cipher-surface);
  padding: 40px 24px;
  text-align: center;
  transition: background-color var(--transition);
  position: relative;
}

.make-card:hover {
  background-color: #16161c;
}

.make-card-specialist {
  border-top: 2px solid var(--cipher-teal);
}

.make-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(40, 240, 180, 0.06);
  border-radius: 50%;
  border: 1px solid var(--cipher-border);
}

.make-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.make-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cipher-text);
  letter-spacing: 0.05em;
}

.make-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--cipher-text);
}

.make-card p {
  font-size: 0.9375rem;
  color: var(--cipher-muted);
  line-height: 1.65;
}

.make-card .tier-badge {
  margin-bottom: 16px;
}

.make-card-placeholder {
  opacity: 0.4;
  border: 1px dashed rgba(40, 240, 180, 0.2);
}

.make-card-placeholder h3 {
  color: var(--cipher-muted);
}

/* ============================================================
   AREAS PAGE
   ============================================================ */
.map-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 64px;
}

.berkshire-map {
  width: 100%;
  height: auto;
}

.berkshire-map .county-other {
  fill: rgba(232, 232, 236, 0.04);
  stroke: rgba(232, 232, 236, 0.12);
  stroke-width: 1;
}

.berkshire-map .county-berkshire {
  fill: rgba(40, 240, 180, 0.15);
  stroke: var(--cipher-teal);
  stroke-width: 1.5;
  transition: fill var(--transition);
}

.berkshire-map .county-berkshire:hover {
  fill: rgba(40, 240, 180, 0.25);
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cipher-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot--teal {
  background-color: var(--cipher-teal);
}

.legend-dot--grey {
  background-color: var(--cipher-muted);
  opacity: 0.4;
}

.towns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background-color: var(--cipher-border);
  margin-bottom: 64px;
}

.town-item {
  background-color: var(--cipher-surface);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.town-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--cipher-teal);
  flex-shrink: 0;
}

.town-item-name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cipher-text);
  font-weight: 500;
}

.town-item-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--cipher-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-lead {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-lead p {
  font-size: 1.125rem;
  color: var(--cipher-text);
  line-height: 1.8;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--cipher-border);
}

.equipment-item {
  background-color: var(--cipher-surface);
  padding: 32px 28px;
}

.equipment-item-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cipher-teal);
  margin-bottom: 8px;
  display: block;
}

.equipment-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.equipment-item p {
  font-size: 0.9rem;
  color: var(--cipher-muted);
  line-height: 1.65;
}

.process-steps {
  counter-reset: process-counter;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background-color: var(--cipher-border);
}

.process-step {
  background-color: var(--cipher-surface);
  padding: 36px 28px;
  counter-increment: process-counter;
  position: relative;
}

.process-step::before {
  content: counter(process-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(40, 240, 180, 0.12);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  position: relative;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--cipher-muted);
  line-height: 1.65;
}

/* ============================================================
   CTA BLOCK (shared across pages)
   ============================================================ */
.cta-block {
  background-color: var(--cipher-surface);
  border: 1px solid var(--cipher-border);
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cipher-teal), transparent);
}

.cta-block .label {
  display: block;
  margin-bottom: 16px;
}

.cta-block h2 {
  margin-bottom: 16px;
}

.cta-block p {
  color: var(--cipher-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.0625rem;
}

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

/* Coverage section — larger label */
#coverage {
  padding: 80px 0 !important;
  margin-top: 0 !important;
}

section#coverage,
.section#coverage,
.section--surface#coverage {
  margin-top: 0 !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

#coverage .label {
  font-size: 1rem !important;
}
.divider {
  border: none;
  border-top: 1px solid var(--cipher-border);
  margin: 0;
}

.about-teal-divider {
  width: 80px;
  height: 2px;
  background: var(--cipher-teal);
  margin: 40px auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reset custom spans at tablet — all cards equal width */
  .services-grid .service-card:nth-child(n) {
    grid-column: span 1;
  }

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

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

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

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

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

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .nav-inner {
    grid-template-columns: 1fr;
    height: auto;
    padding: 16px 20px;
    gap: 12px;
  }

  .nav-left, .nav-right {
    justify-content: center;
    gap: 24px;
  }

  .nav-logo img {
    height: 44px;
    width: 44px;
    object-fit: contain;
  }

  .hero-logo-assembly {
    width: 340px;
    height: 340px;
  }

  .hero-logo-img {
    width: 260px;
    height: 260px;
  }

  .ring-1 {
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
  }

  .ring-2 {
    width: 320px;
    height: 320px;
    margin-top: -160px;
    margin-left: -160px;
  }

  .ring-3 {
    width: 338px;
    height: 338px;
    margin-top: -169px;
    margin-left: -169px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

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

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

  .services-list {
    grid-template-columns: 1fr;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

  .cta-block {
    padding: 40px 24px;
  }

  .trust-bar-inner {
    gap: 24px;
  }
}

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

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

  .cta-block-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-block-buttons .btn {
    width: 100%;
  }
}
