/* ============================================================
   PRETORIA REPAIRS – SHARED PREMIUM STYLESHEET
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --ink: #0f172a;
  --navy: #1e293b;
  --blue: #1e40af;
  --sky: #3b82f6;
  --accent: #136dec;
  --gold: #c9a84c;
  --ice: #eff6ff;
  --white: #ffffff;
  --off: #f6f7f8;
  --line: #e2e8f0;
  --muted: #475569;
  --text: #0f172a;
  --wa: #25d366;
  --r: 8px;
  --shadow: 0 4px 16px rgba(15, 23, 42, .08);
  --shadow-lg: 0 10px 40px rgba(15, 23, 42, .12);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ── TOPBAR ── */
.topbar {
  background: var(--ink);
  color: #7a9bbf;
  font-size: 12.5px;
  letter-spacing: .02em;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.topbar-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar a {
  color: #7a9bbf;
  transition: color .2s;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar-right {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 400;
  box-shadow: 0 1px 20px rgba(11, 22, 35, .07);
}

.header-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--navy) 0%, var(--sky) 100%);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(15, 36, 68, .25);
}

.logo-mark svg {
  width: 26px;
  height: 26px;
}

.logo-name {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.logo-name em {
  display: block;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 1px;
}

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

nav.main-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all .2s;
  position: relative;
}

nav.main-nav a:hover {
  color: var(--sky);
  background: var(--ice);
}

nav.main-nav a.active {
  color: var(--sky);
  font-weight: 600;
}

nav.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .22s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 36, 68, .3);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
}

.btn-wa:hover {
  background: #1eb354;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, .35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--text);
}

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

.btn-ghost {
  background: transparent;
  color: var(--sky);
  padding: 10px 16px;
}

.btn-ghost:hover {
  background: var(--ice);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--white);
  z-index: 350;
  overflow-y: auto;
  flex-direction: column;
  padding: 24px 28px 40px;
  border-top: 1px solid var(--line);
  animation: slideDown .28s ease;
}

.mobile-nav.open {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-radius: 10px;
  border-bottom: 1px solid var(--line);
  transition: all .2s;
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--sky);
  background: var(--ice);
}

.mobile-nav .mob-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.mobile-nav .mob-ctas .btn {
  justify-content: center;
  font-size: 15px;
  padding: 14px;
}

/* ── SIDE QUOTE PANEL ── */
.side-quote {
  position: fixed;
  right: -340px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  background: var(--white);
  border-radius: 16px 0 0 16px;
  box-shadow: -6px 0 48px rgba(11, 22, 35, .16);
  z-index: 300;
  transition: right .42s cubic-bezier(.25, .8, .25, 1);
  border: 1px solid var(--line);
  border-right: none;
}

.side-quote.open {
  right: 0;
}

.sq-tab {
  position: absolute;
  left: -46px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--navy);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 20px 11px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  box-shadow: -4px 0 20px rgba(15, 36, 68, .2);
}

.sq-inner {
  padding: 28px 22px 22px;
}

.sq-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.sq-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  margin-bottom: 20px;
}

/* ── FORM ELEMENTS ── */
.step-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
}

.step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all .3s;
}

.step-dot.active {
  background: var(--sky);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(26, 111, 196, .15);
}

.step-dot.done {
  background: #16a34a;
  color: #fff;
}

.step-dot.pending {
  background: var(--line);
  color: var(--muted);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 1px;
  transition: background .3s;
}

.step-line.done {
  background: #16a34a;
}

.step-panel {
  display: none;
  animation: fadeUp .25s ease;
}

.step-panel.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fg {
  margin-bottom: 14px;
}

.fg label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.fg select,
.fg input,
.fg textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.fg select:focus,
.fg input:focus,
.fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, .1);
}

.fg textarea {
  resize: vertical;
  min-height: 80px;
}

/* ── Field validation */
.fg.has-error input,
.fg.has-error select,
.fg.has-error textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

.field-error {
  display: block;
  font-size: 11px;
  color: #ef4444;
  font-weight: 500;
  margin-top: 4px;
}

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

.fnav {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.fnav .btn-outline {
  font-size: 13px;
  padding: 9px 14px;
}

.success-card {
  text-align: center;
  padding: 16px 0;
}

.success-card .s-icon {
  font-size: 44px;
  margin-bottom: 8px;
}

.success-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
}

.success-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* ── FLOATING BUTTONS ── */
.floaters {
  position: fixed;
  bottom: 28px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 250;
}

.fl-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(11, 22, 35, .2);
  transition: all .22s;
  white-space: nowrap;
}

.fl-wa {
  background: var(--wa);
  color: #fff;
}

.fl-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .35);
}

.fl-call {
  background: var(--navy);
  color: #fff;
}

.fl-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(15, 36, 68, .3);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .9
  }

  50% {
    transform: scale(1.5);
    opacity: .4
  }
}

/* ── MODAL ── */
.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 22, 35, .6);
  z-index: 500;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal-bg.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: 18px;
  padding: 38px 34px;
  max-width: 480px;
  width: 92%;
  position: relative;
  animation: modalPop .28s ease;
  box-shadow: 0 24px 80px rgba(11, 22, 35, .25);
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(.93)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  line-height: 1;
  border-radius: 6px;
  transition: color .2s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: var(--ice);
  color: var(--sky);
}

/* ── SECTION COMMONS ── */
.section {
  padding: 88px 0;
}

.section-sm {
  padding: 60px 0;
}

.wrap {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
}

.sh {
  margin-bottom: 52px;
}

.sh-center {
  text-align: center;
}

.sh-center .section-sub {
  margin: 0 auto;
}

.sh-center .section-eyebrow {
  justify-content: center;
}

/* ── SERVICE CARD – PREMIUM BORDERED ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(14, 165, 233, .12), 0 2px 8px rgba(11, 22, 35, .06);
  transform: translateY(-4px);
}

.svc-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.svc-body {
  padding: 24px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid;
}

.tag-fridge {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.tag-aircon {
  background: #ecfdf5;
  color: #166534;
  border-color: #bbf7d0;
}

.tag-appliance {
  background: #fffbeb;
  color: #92400e;
  border-color: #fde68a;
}

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.svc-from {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.svc-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.btn-quote {
  background: var(--navy);
  color: #fff;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-quote:hover {
  background: var(--sky);
  transform: scale(1.02);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--off);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.trust-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
}

.trust-ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(125deg, var(--ink) 0%, var(--navy) 55%, #1a3f7a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 22, 35, .92) 40%, rgba(11, 22, 35, .3) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: auto;
  padding: 72px 28px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, .15);
  border: 1px solid rgba(14, 165, 233, .3);
  color: #7dd3fc;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 680px;
}

.hero h1 span {
  color: #7dd3fc;
}

.hero-tagline {
  font-size: 17px;
  color: #94b4cc;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.hs {}

.hs-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hs-lbl {
  font-size: 12px;
  color: #7a9bbf;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(125deg, var(--ink) 0%, var(--navy) 60%, #1a3f7a 100%);
  padding: 72px 28px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1400&q=80') center/cover;
  opacity: .07;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: auto;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 17px;
  color: #94b4cc;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: #7a9bbf;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #7a9bbf;
  transition: color .2s;
}

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

.breadcrumb span {
  color: var(--accent);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-top {
  max-width: 1280px;
  margin: auto;
  padding: 64px 28px 48px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--blue) 0%, var(--sky) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-mark svg {
  width: 24px;
  height: 24px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.footer-brand-name em {
  display: block;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #506882;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-tagline {
  font-size: 13.5px;
  color: #506882;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #7a9bbf;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  transition: all .2s;
}

.social-pill:hover {
  background: rgba(14, 165, 233, .12);
  border-color: rgba(14, 165, 233, .25);
  color: var(--accent);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #506882;
  margin-bottom: 10px;
  transition: color .2s;
}

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

.footer-col a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .6;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}

.fci-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.fci-icon svg {
  width: 16px;
  height: 16px;
}

.fci-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #506882;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.fci-value {
  font-size: 13.5px;
  color: #a8bece;
  font-weight: 500;
}

.fci-value a {
  color: #a8bece;
}

.fci-value a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1280px;
  margin: auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: #2e4257;
}

.footer-bottom a {
  color: #2e4257;
  transition: color .2s;
}

.footer-bottom a:hover {
  color: #506882;
}

.footer-cert {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #2e4257;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  padding: 5px 12px;
  border-radius: 6px;
}

.cert-badge svg {
  width: 14px;
  height: 14px;
  opacity: .5;
}

/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 28px 22px;
  transition: all .25s;
  text-align: left;
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 32px rgba(14, 165, 233, .1);
}

.why-ico {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.why-ico svg {
  width: 100%;
  height: 100%;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}

.why-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.proc-card {
  background: var(--off);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 30px 24px;
  position: relative;
  transition: all .25s;
}

.proc-card:hover {
  border-color: var(--accent);
  background: var(--white);
}

.proc-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  opacity: .2;
  line-height: 1;
  margin-bottom: -8px;
}

.proc-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.proc-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.testi-card {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
}

.testi-card::before {
  display: none;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testi-stars svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
}

.testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testi-loc {
  font-size: 12px;
  color: var(--muted);
}

/* ── UTILITIES ── */
.bg-off {
  background: var(--off);
}

.bg-navy {
  background: var(--navy);
}

.bg-ink {
  background: var(--ink);
}

.gold-line::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 18px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav.main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .hero-inner {
    padding: 52px 20px;
  }

  .section {
    padding: 60px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 20px 36px;
  }

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

@media (max-width: 560px) {
  .header-inner {
    padding: 0 18px;
  }

  .wrap {
    padding: 0 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 24px;
  }

  .trust-inner {
    gap: 20px;
  }
}