/* ==========================================================================
   Snowdonia Auto Locksmith — modern sleek stylesheet
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-mute: #eef2f7;
  --ink: #0a1422;
  --ink-2: #1c2940;
  --text: #2a3849;
  --text-soft: #5a6b80;
  --line: #e3e8ef;
  --line-soft: #eef1f6;

  --navy: #0a1f3d;
  --navy-2: #143a64;
  --blue: #2563eb;
  --blue-2: #1d4ed8;
  --blue-l: #93c5fd;
  --sky: #dbeafe;

  --amber: #f59e0b;
  --amber-2: #d97706;
  --green: #10b981;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(10, 20, 34, .04);
  --shadow-sm: 0 1px 3px rgba(10, 20, 34, .05), 0 1px 2px rgba(10, 20, 34, .04);
  --shadow-md: 0 4px 12px rgba(10, 20, 34, .06), 0 2px 4px rgba(10, 20, 34, .04);
  --shadow-lg: 0 24px 50px -12px rgba(10, 20, 34, .15);
  --shadow-xl: 0 40px 80px -20px rgba(10, 20, 34, .25);

  --maxw: 1240px;
  --header-h: 72px;
  --topbar-h: 38px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--blue); }

h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.25rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: .9375rem; font-weight: 700; letter-spacing: -0.01em; }
h5 { font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); }
p { margin: 0 0 1em; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--blue);
}

.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  margin-right: .6rem;
  flex-shrink: 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9375rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .18s var(--ease);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.005em;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 1px 2px rgba(10, 31, 61, .2), inset 0 1px 0 rgba(255,255,255,.1);
}
.btn-primary:hover { background: var(--navy-2); color: #fff; box-shadow: 0 8px 20px rgba(10, 31, 61, .25); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-amber {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(245, 158, 11, .3);
}
.btn-amber:hover { background: var(--amber-2); color: #fff; box-shadow: 0 8px 20px rgba(245, 158, 11, .35); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ----- Top bar ----- */
.topbar {
  background: var(--ink);
  color: #c9d4e2;
  font-size: .8125rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-h);
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 8px; opacity: .88; }
.topbar-phone { color: #fff; font-weight: 600; opacity: 1; }
.topbar-phone:hover { color: var(--amber); }
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(16, 185, 129, .7); }
.dot-pulse { animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .6); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ----- Header ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(10, 20, 34, .15));
}
.footer .brand-mark { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brand-name .accent { color: var(--blue); }
.brand-tag {
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: .9375rem;
  position: relative;
  padding: 6px 0;
  transition: color .15s var(--ease);
}
.nav a:hover { color: var(--blue); }

.btn-call { padding: 9px 18px; font-size: .875rem; }

.burger {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----- Hero ----- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(37, 99, 235, .35), transparent 50%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(20, 58, 100, .4), transparent 50%),
    linear-gradient(180deg, #0a1422 0%, #0a1f3d 50%, #102a4d 100%);
}
.hero-mountains { position: absolute; inset: auto 0 0 0; width: 100%; height: 38%; opacity: .55; }
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 88px 24px 110px;
}
.hero-content .eyebrow {
  color: var(--amber);
  background: rgba(245, 158, 11, .1);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, .25);
  margin-bottom: 1.5rem;
}
.hero-content .eyebrow::before { display: none; }
.hero h1 {
  color: #fff;
  margin: 0 0 1.25rem;
  max-width: 16ch;
}
.hero h1 .hl {
  color: var(--blue-l);
  font-weight: 800;
}
.hero h1 .hl-red {
  color: var(--amber);
  display: inline-block;
}
.lede {
  font-size: 1.125rem;
  color: #b8c5d6;
  max-width: 56ch;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.lede strong { color: #fff; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2.5rem; }
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: .875rem;
  color: #94a3b8;
}
.hero-badges li { display: inline-flex; align-items: center; }
.hero-badges .tick { width: 18px; height: 18px; font-size: .65rem; background: rgba(16, 185, 129, .15); color: var(--green); }

/* Hero card */
.hero-card {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #94a3b8;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .6);
  animation: pulse 1.8s infinite;
}
.hero-phone {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}
.hero-phone:hover { color: var(--amber); }
.hero-card-sub { color: #94a3b8; font-size: .875rem; margin: 0 0 20px; }
.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  font-size: .8125rem;
  color: #c9d4e2;
}
.hero-card-list li::before {
  content: '— ';
  color: var(--blue-l);
  margin-right: 4px;
}
.hero-card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  color: #94a3b8;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.star { color: var(--amber); letter-spacing: 1px; font-size: .875rem; }

/* ----- Trust strip ----- */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 24px;
}
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-mute);
  color: var(--navy);
  flex-shrink: 0;
  border: 1px solid var(--line-soft);
}
.trust-item h3 { font-size: .9375rem; margin: 0 0 2px; color: var(--ink); font-weight: 700; }
.trust-item p { font-size: .8125rem; color: var(--text-soft); margin: 0; line-height: 1.5; }

/* ----- Sections ----- */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--text-soft); font-size: 1.0625rem; max-width: 60ch; margin: 0 auto; }
.section-head.left p { margin: 0; }

/* ----- Services ----- */
.services { background: var(--bg-soft); padding: 96px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .2s var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-l);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  margin-bottom: 20px;
  transition: background .2s var(--ease);
}
.service-card:hover .service-icon { background: var(--blue); }
.service-card h3 { margin-bottom: 8px; color: var(--ink); }
.service-card p { color: var(--text-soft); font-size: .9375rem; margin: 0; line-height: 1.55; }

/* ----- About ----- */
.about { padding: 96px 0; background: #fff; position: relative; overflow: hidden; }
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .eyebrow { color: var(--blue); }
.about-text p { color: var(--text); font-size: 1.0625rem; line-height: 1.7; max-width: 56ch; }
.about-text strong { color: var(--ink); font-weight: 600; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 28px;
  display: grid;
  gap: 10px;
}
.check-list li { display: flex; align-items: center; color: var(--text); font-size: .9375rem; }
.check-list .tick { background: var(--ink); }
.about-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all .2s var(--ease);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-1 { background: var(--ink); border-color: var(--ink); }
.stat-1 .stat-num, .stat-1 .stat-label { color: #fff; }
.stat-2 { background: var(--bg-soft); }
.stat-3 { background: var(--ink); border-color: var(--ink); }
.stat-3 .stat-num, .stat-3 .stat-label { color: #fff; }
.stat-4 { background: #fff; }
.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ----- Areas ----- */
.areas { background: var(--bg-soft); padding: 96px 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.area-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .2s var(--ease);
}
.area-col:hover { border-color: var(--blue-l); transform: translateY(-2px); }
.area-col h4 {
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.area-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-col li {
  font-size: .9375rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-col li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.area-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.area-cta::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, .3), transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.area-cta h4 { color: #fff; border-bottom-color: rgba(255,255,255,.1); }
.area-cta p { color: #94a3b8; font-size: .9375rem; position: relative; }
.area-cta .btn { margin-top: 12px; position: relative; }

/* ----- Testimonials ----- */
.testimonials { padding: 96px 0; background: #fff; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .2s var(--ease);
}
.testi:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--amber); font-size: .9375rem; margin-bottom: 16px; letter-spacing: 1px; }
.testi p { color: var(--ink-2); font-size: 1rem; line-height: 1.65; font-weight: 500; }
.testi footer { color: var(--text-soft); font-size: .875rem; margin-top: 20px; }
.testi footer strong { color: var(--ink); font-weight: 600; }

/* ----- Process ----- */
.process {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(37, 99, 235, .15), transparent 60%);
}
.process .section-head h2 { color: #fff; }
.process .section-head p { color: #94a3b8; }
.process .eyebrow { color: var(--amber); }
.process .eyebrow::before { background: var(--amber); }
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .2s var(--ease);
}
.step:hover { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .15); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.step h3 { color: #fff; font-size: 1.125rem; margin-bottom: 8px; }
.step p { color: #94a3b8; font-size: .9375rem; margin: 0; line-height: 1.6; }
.step a { color: var(--amber); font-weight: 600; }
.step a:hover { color: #fff; }

/* ----- FAQ ----- */
.faq { padding: 96px 0; background: var(--bg-soft); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: all .15s var(--ease);
}
.faq-item[open] { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-right: 56px;
  font-size: .9375rem;
  transition: color .15s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-65%) rotate(45deg);
  border-right: 2px solid var(--text-soft);
  border-bottom: 2px solid var(--text-soft);
  transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(225deg); }
.faq-item summary:hover { color: var(--blue); }
.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--text-soft);
  font-size: .9375rem;
  line-height: 1.65;
}
.faq-item p strong { color: var(--ink); font-weight: 600; }

/* ----- Contact ----- */
.contact { padding: 96px 0; background: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text h2 { color: var(--ink); margin-bottom: 1rem; }
.contact-text p { color: var(--text-soft); font-size: 1.0625rem; }
.big-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  background: var(--ink);
  padding: 20px 28px;
  border-radius: var(--radius);
  margin: 16px 0 28px;
  letter-spacing: -0.02em;
  transition: all .2s var(--ease);
  border: 1.5px solid var(--ink);
}
.big-phone:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-1px); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--text);
}
.contact-list li { display: flex; gap: 10px; font-size: .9375rem; }
.contact-list li span { color: var(--blue); font-weight: 700; }

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form h3 { margin-bottom: 20px; font-size: 1.125rem; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: .9375rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: all .15s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10, 31, 61, .08);
}
.field textarea { resize: vertical; }
.form-note { font-size: .8125rem; color: var(--text-soft); margin: 14px 0 0; }
.form-success {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, .1);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, .25);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
}
.form-success-inline {
  margin: 0;
  padding: 28px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(16, 185, 129, .12) 0%, rgba(16, 185, 129, .04) 100%);
  border: 1px solid rgba(16, 185, 129, .35);
  text-align: center;
}
.form-success-inline a { color: #047857; }
.form-success-inline strong { color: #065f46; }

/* ----- CTA banner ----- */
.cta-banner {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(37, 99, 235, .3), transparent 50%),
    radial-gradient(ellipse 40% 60% at 0% 50%, rgba(245, 158, 11, .15), transparent 50%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 24px;
  position: relative;
}
.cta-inner h2 { color: #fff; margin: 0 0 4px; font-size: 1.5rem; }
.cta-inner p { color: #94a3b8; margin: 0; font-size: .9375rem; }

/* ----- Footer ----- */
.footer { background: #060a13; color: #94a3b8; padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer .brand-name { color: #fff; }
.footer .brand-tag { color: var(--blue-l); }
.footer-col p { font-size: .875rem; color: #94a3b8; max-width: 32ch; line-height: 1.6; }
.footer-col h5 { color: #fff; margin-bottom: 16px; font-size: .8125rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col li { font-size: .875rem; color: #94a3b8; }
.footer-col a { color: #c9d4e2; }
.footer-col a:hover { color: var(--amber); }
.footer-brand .brand { margin-bottom: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  background: #04070d;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  color: #5a6b80;
  gap: 12px;
  flex-wrap: wrap;
}

/* ----- Floating call button ----- */
.float-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(245, 158, 11, .4);
  transition: all .2s var(--ease);
  border: 2px solid #fff;
}
.float-call:hover { transform: scale(1.06); background: var(--amber-2); color: #fff; }
.float-call::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, .4);
  animation: ring 1.8s infinite;
}
@keyframes ring {
  0% { transform: scale(.95); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ==========================================================================
   NEW SECTION — fills in styles for redesigned classes
   ========================================================================== */

/* Gallery / Our Work */
.gallery { background: #fff; padding: 96px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 20, 34, .85) 100%);
  z-index: 1;
  pointer-events: none;
}
.gallery-item figcaption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  z-index: 2;
}
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* Brand enhancements */
.brand-name em { font-style: normal; color: var(--blue); }
.brand-name .dot-accent { color: var(--amber); }

/* Headline highlight classes */
.hl-blue {
  color: var(--blue);
  font-weight: 800;
}
.hl-amber { color: var(--amber); font-weight: 800; }

/* Eyebrow with dot */
.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.hero-content .eyebrow .eyebrow-dot { display: none; }

/* Hero card stamp */
.hero-card-stamp {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--amber);
  color: var(--ink);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.hero-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 4px 0 16px;
}
.hero-card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
}
.meta-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.meta-label {
  font-size: .6875rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

/* Hero marquee */
.hero-marquee {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.3) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  padding: 18px 0;
  margin-top: 20px;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: .8125rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.marquee-track .sep { color: var(--amber); font-weight: 700; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Brand strip */
.brands { background: #fff; border-bottom: 1px solid var(--line); }
.brands-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 24px;
  overflow: hidden;
}
.brands-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  flex-shrink: 0;
}
.brands-row {
  display: flex;
  gap: 32px;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: -0.01em;
  flex: 1;
  flex-wrap: wrap;
}
.brands-row span { white-space: nowrap; }

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bento-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.bento-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--blue-l); }
.bento-lg {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
  padding: 36px 32px;
}
.bento-lg .bento-icon { width: 56px; height: 56px; }
.bento-lg h3 { font-size: 1.375rem; }
.bento-lg p { font-size: 1rem; max-width: 38ch; }
.bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  margin-bottom: 20px;
  transition: background .2s var(--ease);
}
.bento-card:hover .bento-icon { background: var(--blue); }
.bento-card h3 { margin-bottom: 8px; color: var(--ink); }
.bento-card p { color: var(--text-soft); font-size: .9375rem; line-height: 1.55; margin: 0; }
.bento-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 10px;
  background: rgba(37, 99, 235, .08);
  color: var(--blue);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.bento-lockout .bento-tag { background: rgba(245, 158, 11, .12); color: var(--amber-2); }
.bento-keys .bento-tag { background: rgba(16, 185, 129, .12); color: #047857; }

/* About panel */
.about-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-big {
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy-2) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.stat-big::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .35), transparent 70%);
  top: -120px; right: -80px;
}
.stat-big .stat-num {
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}
.stat-big .stat-num .stat-unit {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--blue-l);
  margin-left: 4px;
  letter-spacing: -0.02em;
}
.stat-big .stat-label {
  color: #c9d4e2;
  font-size: .875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all .2s var(--ease);
}
.stat-cell:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.stat-num-sm {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-num-sm span { color: var(--blue); }
.stat-label-sm {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--amber);
  color: var(--ink);
  padding: 18px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all .2s var(--ease);
}
.stat-callout:hover { background: var(--amber-2); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(245, 158, 11, .3); }
.callout-text { display: flex; flex-direction: column; line-height: 1.2; }
.callout-text span { font-size: .75rem; font-weight: 500; opacity: .8; text-transform: uppercase; letter-spacing: .08em; }
.callout-text strong { font-size: 1.125rem; font-weight: 800; letter-spacing: -0.01em; }
.callout-arrow { display: inline-flex; }

/* Testimonial layout */
.testi-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.testi-stack { display: flex; flex-direction: column; gap: 24px; }
.testi-featured {
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy-2) 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.testi-featured::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, .25), transparent 70%);
  top: -160px; right: -100px;
  border-radius: 50%;
}
.testi-quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--amber);
  margin-bottom: 8px;
  font-weight: 700;
}
.testi-featured p { color: #e6eef7; font-size: 1.25rem; line-height: 1.6; position: relative; }
.testi-featured footer { color: #94a3b8; }
.testi-featured .testi-name { color: #fff; }
.testi-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
  flex-shrink: 0;
}
.testi-avatar-2 { background: var(--blue); }
.testi-avatar-3 { background: var(--amber); color: var(--ink); }
.testi footer { display: flex; align-items: center; gap: 12px; }
.testi-name { font-weight: 700; color: var(--ink); font-size: .9375rem; }
.testi-loc { color: var(--text-soft); font-size: .8125rem; margin-top: 2px; }

/* FAQ CTA */
.faq-cta {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-cta span { color: #94a3b8; font-size: .875rem; }
.faq-cta a { color: var(--amber); font-weight: 700; }
.faq-cta a:hover { color: #fff; }

/* Contact form */
.big-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.big-phone { display: flex; align-items: center; gap: 14px; }
.cl-tick {
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  position: relative;
  margin-top: 4px;
}
.cl-tick::after {
  content: '';
  position: absolute;
  left: 5px; top: 7px;
  width: 5px; height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.form-head h3 { margin: 0; }
.form-badge {
  background: rgba(16, 185, 129, .12);
  color: #047857;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 999px;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* CTA banner */
.cta-banner { position: relative; overflow: hidden; }
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(37, 99, 235, .4), transparent 50%),
    radial-gradient(ellipse 40% 60% at 0% 50%, rgba(245, 158, 11, .18), transparent 50%);
}
.cta-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(37, 99, 235, .15), transparent 60%);
  pointer-events: none;
}

/* Footer phone */
.footer-phone {
  display: inline-block;
  margin-top: 16px;
  color: var(--amber);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.footer-phone:hover { color: #fff; }

/* Reveal animations removed — all text is fully visible */

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .service-grid, .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid, .testi-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-inner { gap: 48px; }
}

@media (max-width: 860px) {
  .topbar-item.hide-sm { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 64px 24px 80px; gap: 40px; }
  .hero h1 { max-width: 100%; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .burger { display: flex; }
  .header.nav-open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
  }
  .header.nav-open .nav a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line-soft);
    width: 100%;
  }
  .header.nav-open .nav a:last-child { border-bottom: 0; }
  .btn-call { display: none; }
  .hero-card-list { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-lg { grid-column: span 1; padding: 28px 24px; }
  .bento-lg h3 { font-size: 1.125rem; }
  .brands-row { gap: 18px; font-size: .875rem; }
  .testi-featured { padding: 32px 24px; }
  .testi-featured p { font-size: 1.0625rem; }
  .row-2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-tall, .gallery-wide { grid-row: auto; grid-column: auto; }
}

@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .container { padding: 0 18px; }
  .services, .about, .areas, .testimonials, .process, .faq, .contact { padding: 64px 0; }
  .service-grid, .areas-grid, .footer-inner, .about-stats { grid-template-columns: 1fr; }
  .topbar-inner { font-size: .75rem; }
  .topbar-item:first-child { font-size: .75rem; }
  .hero-card { padding: 24px; }
  .hero-phone { font-size: 1.875rem; }
  .big-phone { font-size: 1.5rem; padding: 16px 22px; }
  .stat-card { padding: 24px 20px; }
  .stat-num { font-size: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-cta .btn { width: 100%; }
  .hero-card-meta { grid-template-columns: 1fr 1fr; }
  .brands-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .brands-row { font-size: .8125rem; gap: 14px; }
  .stat-big .stat-num { font-size: 3rem; }
  .stat-big .stat-num .stat-unit { font-size: 1.25rem; }
  .stat-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
