/*
Theme Name: Ohio Gadget Labs
Theme URI: https://ohiogadgetlabs.com
Description: Dark modern theme for Ohio Gadget Labs electronics repair
Version: 1.0
Author: Ohio Gadget Labs
Text Domain: oglabs
*/

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:wght@300;400;500&display=swap');

:root {
  --bg:        #eff5ff;
  --bg2:       #ffffff;
  --bg3:       #e1ebff;
  --bg4:       #d1e0ff;
  --surface:   rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --border:    #2f6fed18;
  --border2:   #2f6fed2c;
  --text:      #14213d;
  --muted:     #5d6f96;
  --accent:    #2f6fed;
  --accent2:   #1f56c7;
  --accent-glow: #2f6fed30;
  --accent-glow-strong: #2f6fed52;
  --red:       #d93b3b;
  --font-head: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 60px rgba(47, 111, 237, 0.08);
  --shadow-card: 0 24px 80px rgba(27, 60, 132, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at top left, rgba(47, 111, 237, 0.12), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(47, 111, 237, 0.14), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

/* ── Noise texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.18;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 3% 24%, rgba(47, 111, 237, 0.14), transparent 15%),
    radial-gradient(circle at 97% 34%, rgba(47, 111, 237, 0.12), transparent 15%),
    radial-gradient(circle at 4% 76%, rgba(47, 111, 237, 0.10), transparent 14%),
    radial-gradient(circle at 96% 80%, rgba(47, 111, 237, 0.12), transparent 16%);
}

html::before,
html::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

html::before {
  left: 10px;
  top: 110px;
  width: 170px;
  height: calc(100vh - 220px);
  border-left: 1px solid rgba(47, 111, 237, 0.12);
  border-top: 1px solid rgba(47, 111, 237, 0.12);
  border-bottom: 1px solid rgba(47, 111, 237, 0.08);
  border-radius: 36px 0 0 36px;
  opacity: 0.8;
}

html::after {
  right: 10px;
  top: 160px;
  width: 170px;
  height: calc(100vh - 300px);
  border-right: 1px solid rgba(47, 111, 237, 0.12);
  border-top: 1px solid rgba(47, 111, 237, 0.08);
  border-bottom: 1px solid rgba(47, 111, 237, 0.12);
  border-radius: 0 36px 36px 0;
  opacity: 0.72;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ── Header ── */
#masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 251, 255, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(20, 33, 61, 0.04);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo-badge {
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

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

.main-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--text); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bg) !important;
  background: var(--accent) !important;
  border-radius: var(--radius);
  padding: 8px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.nav-cta:hover {
  background: var(--text) !important;
  color: var(--bg) !important;
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 0 88px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--accent-glow) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-glow) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  opacity: 0.9;
}

.hero-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  top: 42%;
  right: -120px;
  transform: translate(0, -50%);
  pointer-events: none;
  filter: blur(10px);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 340px;
  height: 340px;
  top: 60px;
  right: 8%;
  border: 1px solid var(--border2);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.72), rgba(47, 111, 237, 0.04));
}

.hero::after {
  width: 180px;
  height: 180px;
  bottom: 40px;
  left: 6%;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.14), transparent 70%);
}

.hero .container::before,
.hero .container::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero .container::before {
  left: -150px;
  top: 54px;
  width: 170px;
  height: 170px;
  border-radius: 36px;
  transform: rotate(28deg);
  border: 1px solid rgba(47, 111, 237, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(47, 111, 237, 0.05)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 15px,
      rgba(47, 111, 237, 0.045) 15px,
      rgba(47, 111, 237, 0.045) 16px
    );
  box-shadow: 0 20px 60px rgba(47, 111, 237, 0.08);
}

.hero .container::after {
  left: -150px;
  bottom: 26px;
  width: 210px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 237, 0.16);
  transform: rotate(-18deg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(47, 111, 237, 0.08)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 18px,
      rgba(47, 111, 237, 0.05) 18px,
      rgba(47, 111, 237, 0.05) 19px
    );
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 24px;
  color: var(--text);
  max-width: 9ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  margin-top: 32px;
}

.hero-trust span {
  color: var(--accent);
  font-weight: 600;
}

.hero-panel {
  position: relative;
  z-index: 1;
  min-height: 520px;
}

.hero-panel-card {
  border: 1px solid var(--border2);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(227, 238, 255, 0.76));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.hero-panel-main {
  padding: 32px;
  width: min(100%, 360px);
  margin-left: auto;
  position: relative;
}

.hero-panel-main::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(47, 111, 237, 0.12);
  pointer-events: none;
}

.hero-panel-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-panel-list {
  display: grid;
  gap: 16px;
}

.hero-panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.hero-panel-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-panel-item span {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
}

.hero-panel-item strong {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-panel-float {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 240px;
  padding: 22px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(47, 111, 237, 0.1);
  color: var(--accent);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-mini-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-mini-stat span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ── Stats bar ── */
.stats-bar {
  padding: 0 0 36px;
  position: relative;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: linear-gradient(135deg, rgba(47, 111, 237, 0.22), rgba(47, 111, 237, 0.08));
  border: 1px solid var(--border2);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.stat-item {
  background: rgba(255, 255, 255, 0.78);
  padding: 28px 32px;
  text-align: center;
  backdrop-filter: blur(14px);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Section ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section::before,
.testimonials-section::before,
.cta-section::before,
.process-section::before {
  content: '';
  position: absolute;
  inset: 30px auto auto 50%;
  width: min(1120px, calc(100% - 48px));
  height: calc(100% - 60px);
  transform: translateX(-50%);
  border-radius: 34px;
  pointer-events: none;
}

.section::after,
.testimonials-section::after,
.cta-section::after,
.process-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.section::before,
.testimonials-section::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(240, 246, 255, 0.42));
  border: 1px solid rgba(47, 111, 237, 0.08);
}

.section::after,
.testimonials-section::after {
  top: 120px;
  right: clamp(8px, 2vw, 28px);
  width: 120px;
  height: 120px;
  border-radius: 28px;
  border: 1px solid rgba(47, 111, 237, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(47, 111, 237, 0.05)),
    linear-gradient(90deg, rgba(47, 111, 237, 0.12), rgba(47, 111, 237, 0));
  transform: rotate(18deg);
  box-shadow: 0 18px 40px rgba(47, 111, 237, 0.08);
}

.section .container,
.testimonials-section .container,
.process-section .container,
.cta-section .container {
  z-index: 1;
}

#services .container::before,
#services .container::after,
.testimonials-section .container::before,
.testimonials-section .container::after,
.process-section .container::before,
.cta-section .container::before {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

#services .container::before {
  left: -126px;
  top: 150px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 237, 0.16);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.42), rgba(47, 111, 237, 0.04));
}

#services .container::after {
  left: -120px;
  bottom: 76px;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  transform: rotate(22deg);
  border: 1px solid rgba(47, 111, 237, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(47, 111, 237, 0.05)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 13px,
      rgba(47, 111, 237, 0.045) 13px,
      rgba(47, 111, 237, 0.045) 14px
    );
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

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

#services .section-label,
#services .section-title,
#services .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── Services ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: linear-gradient(180deg, rgba(47, 111, 237, 0.2), rgba(47, 111, 237, 0.08));
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(237, 244, 255, 0.78));
  padding: 40px 36px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(225, 235, 255, 0.92));
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(47, 111, 237, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--font-head);
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── How it works ── */
.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(220, 233, 255, 0.68), rgba(255, 255, 255, 0.3));
  margin-top: 0;
  padding-top: 112px;
}

.process-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(228, 238, 255, 0.52)),
    linear-gradient(90deg, rgba(47, 111, 237, 0.05), rgba(47, 111, 237, 0));
  border: 1px solid rgba(47, 111, 237, 0.12);
}

.process-section::after {
  left: clamp(6px, 2vw, 24px);
  top: 140px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 237, 0.18);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.42), rgba(47, 111, 237, 0.05));
}

.process-section .container::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -112px;
  transform: translateX(-50%) scaleY(-1);
  width: 100vw;
  height: 112px;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(47, 111, 237, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 111, 237, 0.18) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 40 C 90 76, 180 6, 270 40 S 450 76, 540 40 S 720 6, 810 40 S 990 76, 1080 40 S 1260 6, 1350 40 S 1440 76, 1530 40 V120 H0 Z' fill='%23f5f8ff' fill-opacity='0.52'/%3E%3Cpath d='M0 40 C 90 76, 180 6, 270 40 S 450 76, 540 40 S 720 6, 810 40 S 990 76, 1080 40 S 1260 6, 1350 40 S 1440 76, 1530 40' fill='none' stroke='%232f6fed' stroke-opacity='0.18' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 42px 42px, 42px 42px, 100% 100%;
  background-position: center, center, center;
  filter: drop-shadow(0 14px 28px rgba(47, 111, 237, 0.08));
}

.process-section .container::before {
  right: -128px;
  bottom: 36px;
  width: 128px;
  height: 128px;
  border-radius: 30px;
  transform: rotate(-20deg);
  border: 1px solid rgba(47, 111, 237, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(47, 111, 237, 0.06)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 14px,
      rgba(47, 111, 237, 0.045) 14px,
      rgba(47, 111, 237, 0.045) 15px
    );
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 111, 237, 0.1);
  border-radius: 24px;
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 800;
  color: var(--accent-glow);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px var(--accent);
  color: transparent;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 100px 0;
  position: relative;
}

.testimonials-section .container::before {
  left: -150px;
  top: 110px;
  width: 180px;
  height: 72px;
  border-radius: 999px;
  transform: rotate(-16deg);
  border: 1px solid rgba(47, 111, 237, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(47, 111, 237, 0.08)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 16px,
      rgba(47, 111, 237, 0.045) 16px,
      rgba(47, 111, 237, 0.045) 17px
    );
}

.testimonials-section .container::after {
  right: -132px;
  bottom: 58px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 237, 0.16);
  background: radial-gradient(circle, rgba(47, 111, 237, 0.12), transparent 72%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 242, 255, 0.78));
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}

.author-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
}

.author-device {
  font-size: 12px;
  color: var(--muted);
}

/* ── CTA / Contact Section ── */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(233, 242, 255, 0.58)),
    radial-gradient(circle at top right, rgba(47, 111, 237, 0.12), transparent 35%);
  border: 1px solid rgba(47, 111, 237, 0.1);
}

.cta-section::after {
  right: clamp(6px, 2vw, 24px);
  bottom: 100px;
  width: 180px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 237, 0.18);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(47, 111, 237, 0.08));
  transform: rotate(-18deg);
}

.cta-section .hero-grid {
  position: absolute;
  inset: 0;
}

.cta-section .hero-glow {
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.cta-section .container::before {
  left: -128px;
  top: 82px;
  width: 124px;
  height: 124px;
  border-radius: 32px;
  transform: rotate(-24deg);
  border: 1px solid rgba(47, 111, 237, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(47, 111, 237, 0.07)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 12px,
      rgba(47, 111, 237, 0.045) 12px,
      rgba(47, 111, 237, 0.045) 13px
    );
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 42px 42px 18px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(47, 111, 237, 0.1);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.cta-inner::before,
.cta-inner::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.cta-inner::before {
  width: 88px;
  height: 88px;
  left: -28px;
  top: 34px;
  border-radius: 24px;
  transform: rotate(24deg);
  border: 1px solid rgba(47, 111, 237, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(47, 111, 237, 0.08));
}

.cta-inner::after {
  width: 96px;
  height: 96px;
  right: -36px;
  bottom: 40px;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 237, 0.14);
  background: radial-gradient(circle, rgba(47, 111, 237, 0.12), transparent 72%);
}

.cta-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
}

.cta-inner p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: linear-gradient(180deg, rgba(47, 111, 237, 0.2), rgba(47, 111, 237, 0.08));
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 60px;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.contact-info-item {
  background: rgba(255, 255, 255, 0.82);
  padding: 32px;
}

.contact-info-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-info-value {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.contact-info-value a {
  color: var(--text);
}

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

/* ── Footer ── */
#colophon {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.46);
}

.site-info {
  color: var(--muted);
  font-size: 13px;
}

.site-info a {
  color: var(--muted);
}

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

/* ── Warranty badge ── */
.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--muted);
}

.warranty-badge strong {
  color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hero { padding: 88px 0 64px; }
  .hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .hero-panel { min-height: auto; }
  .hero-panel-main { width: 100%; margin-left: 0; }
  .hero-panel-float { position: static; width: 100%; margin-top: 18px; }
  .hero h1 { font-size: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 30px 22px 8px; }
  .process-section { padding-top: 108px; }
  .section::after,
  .testimonials-section::after,
  .process-section::after,
  .cta-section::after,
  html::before,
  html::after,
  .hero .container::before,
  .hero .container::after,
  #services .container::before,
  #services .container::after,
  .testimonials-section .container::before,
  .testimonials-section .container::after,
  .process-section .container::before,
  .process-section .container::after,
  .cta-section .container::before,
  .cta-inner::before,
  .cta-inner::after {
    display: none;
  }
}

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

/* ── RepairDesk Widget ── */
.repairdesk-widget-wrap {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}

.repairdesk-widget-wrap iframe {
  display: block;
  width: 100%;
  height: 310px; /* lower this until it feels right */
  border: none;
  background: transparent;
}

.cta-inner {
  max-width: 860px; /* increase this — try 1000px or 1100px */
}