/* ═══ ARCCOM PREMIUM THEME ═══ */
/* Based on http://127.0.0.1:5188/arcomm-premium.css */

:root {
  --bg: #090b10;
  --panel: #0f141e;
  --panel-2: #141a25;
  --ink: #e3e6ed;
  --muted: #9ba5b5;
  --soft: #6b7a8f;
  --line: rgba(255,255,255,.08);
  --blue: #2f7cff;
  --cyan: #36d7ff;
  --green: #5ee0a7;
  --gold: #d8b56d;
  --radius: 10px;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --surface-0: #06080d;
  --surface-1: #0d1117;
  --surface-2: #141a22;
  --surface-3: #1a212b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ═══ SITE HEADER ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(6, 8, 13, .84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 8px 12px;
  background: #fff;
  border-radius: var(--radius);
}

.brand img { display: block; width: 140px; height: auto; }

.main-nav {
  display: flex;
  justify-content: start;
  gap: 2px;
}

.main-nav a,
.phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: background .15s ease, color .15s ease;
}

.main-nav a:hover {
  background: rgba(255,255,255,.08);
  color: var(--ink);
}

.phone {
  background: linear-gradient(135deg, var(--blue), #635bff);
  color: #fff;
  box-shadow: 0 12px 34px rgba(47,124,255,.28);
}

/* Dropdown */
.dropdown-wrap { position: relative; }
.dropdown-wrap > a { display: inline-flex; align-items: center; gap: 6px; }
.dropdown-wrap > a::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  display: inline-block;
}
.dropdown-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 0;
  box-shadow: var(--shadow);
  z-index: 200;
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--muted);
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(255,255,255,.06); color: var(--ink); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none; cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 13, .98);
  z-index: 100;
  padding: 20px clamp(20px, 5vw, 72px);
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.active { display: flex; }
.mobile-menu .mobile-close {
  align-self: flex-end;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--muted);
  font-size: 28px; cursor: pointer;
}
.mobile-menu a {
  padding: 12px 0; font-size: 18px; font-weight: 650;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.mobile-menu .phone { margin-top: 16px; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 40px;
  padding: 140px clamp(24px, 8vw, 120px) 48px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,11,16,.98) 0%, rgba(9,11,16,.88) 42%, rgba(9,11,16,.38) 100%),
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(47,124,255,.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 40% 96%, rgba(94,224,167,.08), transparent 50%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  filter: saturate(.88) contrast(1.02);
}

.hero-content,
.hero-panel { position: relative; z-index: 2; }

.hero-content {
  max-width: 840px;
  padding-bottom: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero-content h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 850;
  color: var(--ink);
}

.lead {
  max-width: 660px;
  color: #d7e2ef;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions,
.contact-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  border: none; cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), #675dff);
  color: #fff;
  box-shadow: 0 18px 44px rgba(47,124,255,.32);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--ink);
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15,20,30,.70);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}

.hero-panel div {
  padding: 24px;
  background: rgba(255,255,255,.04);
}

.hero-panel strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  font-weight: 750;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* ═══ TRUST BAND ═══ */
.trust-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 16px clamp(24px, 8vw, 120px);
  background: #0c0e14;
  border-bottom: 1px solid var(--line);
}

.trust-band span {
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: .02em;
  transition: all .2s ease;
  background: rgba(255,255,255,.02);
}
.trust-band span:hover {
  color: var(--ink);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.trust-band span:last-child { border-right: none; }



/* ═══ SECTIONS ═══ */
.section,
.split-section,
.proof,
.contact-cta {
  padding: 80px max(24px, calc((100vw - 1200px) / 2));
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: 80px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.section h2,
.split-section h2,
.proof h2 {
  max-width: 820px;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.08;
  font-weight: 830;
  color: var(--ink);
  margin-bottom: 16px;
}

.intro p:last-child,
.split-copy p,
.proof-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* ═══ SERVICE GRID ═══ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.process-grid article,
.template-preview {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  box-shadow: 0 1px 2px rgba(0,0,0,.2), 0 12px 40px rgba(0,0,0,.2);
  backdrop-filter: blur(16px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover,
.process-grid article:hover,
.template-preview:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 2px 4px rgba(0,0,0,.25), 0 16px 48px rgba(0,0,0,.3);
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(47,124,255,.24), rgba(255,255,255,.045)),
    var(--panel);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 850;
  font-size: 18px;
}

.service-card h3 {
  font-size: 20px;
  line-height: 1.18;
  font-weight: 750;
  color: var(--ink);
  margin: 0 0 12px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
  flex-grow: 1;
}

.service-card a {
  margin-top: auto;
  padding-top: 20px;
  color: var(--cyan);
  font-weight: 800;
  font-size: 14px;
}
.service-card a:hover { text-decoration: underline; }

/* ═══ SPLIT SECTION ═══ */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .95fr);
  gap: 64px;
  align-items: center;
  background: #0b0f16;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #dfe9f7;
  background: rgba(255,255,255,.04);
  font-size: 14px;
}

.check-list li::before {
  content: "";
  width: 9px; height: 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(94,224,167,.8);
  flex-shrink: 0;
}

/* ═══ PROOF ═══ */
.proof {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, .8fr);
  gap: 56px;
  align-items: center;
}

.proof-image {
  min-height: 420px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

.mini-grid span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #dce7f4;
  background: rgba(255,255,255,.045);
  font-weight: 750;
  font-size: 13px;
}

/* ═══ PROCESS ═══ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  display: flex;
  flex-direction: column;
  padding: 32px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.process-grid article:hover {
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.process-grid article span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,215,255,.18), rgba(54,215,255,.06));
  color: var(--cyan);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 0 24px rgba(54,215,255,.08);
}

.process-grid article h3 {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 750;
  color: var(--ink);
  margin: 0 0 10px;
}

.process-grid article p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

/* ═══ CONTACT CTA ═══ */
.contact-cta {
  justify-content: space-between;
  gap: 32px;
  background:
    linear-gradient(135deg, rgba(47,124,255,.24), rgba(94,224,167,.10)),
    #0b0f16;
  border-top: 1px solid var(--line);
  align-items: center;
}

.contact-cta p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.contact-cta h2 {
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 830;
  line-height: 1.08;
  margin: 0 0 12px 0;
}
.contact-cta h3 {
  color: var(--ink);
  margin: 0 0 8px 0;
}
.contact-cta a { flex-shrink: 0; }

/* ═══ FAQ — accordion (template A) + block style (template B) ═══ */
.faq-section { padding: 80px max(24px, calc((100vw - 1200px) / 2)); }
.faq-section h2 { max-width: 820px; font-size: clamp(28px,3.5vw,48px); font-weight: 830; color: var(--ink); margin-bottom: 40px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--panel);
  transition: border-color .2s ease;
}
.faq-item:hover { border-color: rgba(255,255,255,.14); }
.faq-question {
  width: 100%;
  padding: 20px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  text-align: left;
  transition: background .15s ease, color .15s ease;
  gap: 16px;
}
.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--soft);
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease;
}
.faq-item.open .faq-question::after {
  content: "−";
  color: var(--cyan);
}
.faq-question:hover { background: var(--panel-2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 24px; font-size: 15px; color: var(--muted); line-height: 1.65; }
.faq-item.open .faq-answer { max-height: 500px; }

/* FAQ block-style fallback (template B — plain H4 + p pairs) */
.arcomm-content h4 + p {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.arcomm-content h4 + p:last-of-type {
  border-bottom: none;
}

/* ═══ CITY GRID (for service area page) ═══ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 24px 0;
}
.city-grid span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  background: transparent;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: all .15s ease;
}
.city-grid span:hover {
  color: var(--ink);
  background: rgba(255,255,255,.06);
}
@media (max-width: 640px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ CONTENT AREA — elevation surface scale ═══ */
/* Surface scale: surface-0 (page bg) < surface-1 (cards) < surface-2 (nested/hover) */
/* From Linear.app research: lighter surfaces = higher elevation on dark backgrounds */

.arcomm-content, .entry-content {
  color: var(--muted);
  line-height: 1.75;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══ BLOCK CARDS — every content block gets an elevated surface ═══ */
.arcomm-content .wp-block-group {
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px 32px;
  margin: 24px 0;
}

/* Surface-2 on hover for depth feedback */
.arcomm-content .wp-block-group:hover {
  background: var(--surface-2);
  border-color: rgba(255,255,255,0.12);
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* FAQ cards — compact surface-1 */
.arcomm-content .wp-block-group.is-style-faq {
  padding: 16px 24px;
  margin: 6px 0;
  border-radius: 10px;
}
.arcomm-content .wp-block-group.is-style-faq p:first-child {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 4px;
}
.arcomm-content .wp-block-group.is-style-faq p:last-child {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Testimonial cards — surface-2 with gradient */
.arcomm-content .wp-block-group.is-style-testimonial {
  background: linear-gradient(135deg, var(--surface-2), var(--surface-1));
  border-color: rgba(255,255,255,0.08);
}
.arcomm-content .wp-block-group.is-style-testimonial p:first-child {
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.65;
}
.arcomm-content .wp-block-group.is-style-testimonial p:last-child {
  font-size: 14px;
  color: var(--soft);
  margin: 0;
}

/* CTA banner — elevated accent card */
.arcomm-content .wp-block-group.is-style-cta-banner {
  background: linear-gradient(135deg, rgba(47,124,255,0.08), rgba(94,224,167,0.04));
  border-color: rgba(47,124,255,0.16);
  border-radius: 16px;
  padding: 36px 44px;
  text-align: center;
  margin: 32px 0;
}
.arcomm-content .wp-block-group.is-style-cta-banner:hover {
  border-color: rgba(47,124,255,0.30);
}
.arcomm-content .wp-block-group.is-style-cta-banner p {
  color: var(--ink);
  font-size: 17px;
  margin-bottom: 12px;
}
.arcomm-content .wp-block-group.is-style-cta-banner .wp-block-button__link {
  background: var(--blue);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

/* Process step cards — horizontal surface-1 row */
.arcomm-content .wp-block-columns {
  display: flex;
  gap: 32px;
  margin: 24px auto 32px;
  max-width: 960px;
  align-items: start;
}
.arcomm-content .wp-block-columns .wp-block-column {
  flex: 1;
  min-width: 0;
}
.arcomm-content .wp-block-columns.process-steps {
  gap: 16px;
  align-items: stretch;
}
.arcomm-content .wp-block-columns.process-steps .wp-block-column {
  display: flex;
  flex-direction: column;
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px 24px;
}
.arcomm-content .wp-block-columns.process-steps .wp-block-column:hover {
  background: var(--surface-2);
  border-color: rgba(255,255,255,0.14);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.arcomm-content .wp-block-columns.process-steps .step-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(54,215,255,0.12);
  color: var(--cyan);
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 12px;
}
.arcomm-content .wp-block-columns.process-steps h4 {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.arcomm-content .wp-block-columns.process-steps p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* ═══ HEADINGS — with subtle gradient dividers ═══ */
.arcomm-content h2,
.arcomm-content > .wp-block-heading {
  position: relative;
  padding-top: 20px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 750;
  font-size: 28px;
  text-align: center;
}
.arcomm-content h2::before,
.arcomm-content > .wp-block-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  border-radius: 1px;
}
.arcomm-content h2:first-child,
.arcomm-content > .wp-block-heading:first-child {
  margin-top: 16px;
  padding-top: 0;
}
.arcomm-content h2:first-child::before,
.arcomm-content > .wp-block-heading:first-child::before {
  display: none;
}
.arcomm-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 20px;
}
.arcomm-content h4 {
  margin-top: 16px;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}

/* ═══ BODY ELEMENTS ═══ */
.arcomm-content p, .entry-content p {
  margin-bottom: 16px;
  font-size: 15px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.arcomm-content p.full-width, .entry-content p.full-width {
  max-width: none;
}
.arcomm-content a, .entry-content a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.15s ease;
}
.arcomm-content a:hover, .entry-content a:hover { color: var(--blue); }
.arcomm-content strong, .entry-content strong { color: var(--ink); }
.arcomm-content ul, .entry-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style: disc;
  color: var(--muted);
}
.arcomm-content li, .entry-content li {
  margin-bottom: 6px;
  font-size: 15px;
}

/* ═══ UTILITY ═══ */
.arcomm-content .wp-block-separator { display: none; }
.arcomm-content .wp-block-image {
  margin: 24px 0;
  border-radius: 10px;
  overflow: hidden;
}
.arcomm-content .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  max-width: 100%;
}
.arcomm-content .wp-block-buttons { margin: 20px 0; }
.arcomm-content .wp-block-button__link {
  display: inline-block;
  padding: 12px 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.arcomm-content .wp-block-button__link:hover {
  background: #3d8aff;
  box-shadow: 0 4px 20px rgba(47,124,255,0.3);
}
.arcomm-content .wp-block-list {
  padding-left: 0;
  margin: 16px auto 32px;
  max-width: 680px;
}
.arcomm-content .wp-block-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  list-style: none;
}
.arcomm-content .wp-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--cyan);
}

/* Service area badges */
.arcomm-content .service-area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 32px;
}
.arcomm-content .service-area-badges span {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.arcomm-content .service-area-badges span:hover {
  color: var(--ink);
  border-color: var(--blue);
}

/* Responsive */
@media (max-width: 640px) {
  .arcomm-content .wp-block-columns.process-steps { flex-direction: column; }
}


/* ═══ FOOTER ═══ */
.site-footer {
  padding: 72px clamp(20px, 6vw, 86px) 32px;
  background: var(--panel);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { font-size: 18px; font-weight: 750; color: var(--ink); margin-bottom: 14px; }
.footer-desc { font-size: 14px; color: var(--soft); max-width: 300px; line-height: 1.6; margin-bottom: 24px; }
.footer-col h4 { font-size: 13px; font-weight: 750; color: var(--ink); margin-bottom: 18px; text-transform: uppercase; letter-spacing: .08em; }
.footer-col a { display: block; font-size: 14px; color: var(--soft); text-decoration: none; margin-bottom: 10px; transition: color .15s ease; }
.footer-col a:hover { color: var(--muted); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  color: var(--muted);
  transition: background .15s ease, color .15s ease;
}
.footer-social a:hover { background: rgba(255,255,255,.15); color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--soft); margin: 0; }

/* ═══ WORDPRESS OVERRIDES ═══ */
body.arcomm-dark { background: var(--bg) !important; }
body.arcomm-dark #masthead,
body.arcomm-dark #masthead.site-header,
body.arcomm-dark .has-inline-mobile-toggle#masthead,
body.arcomm-dark .widget-area,
body.arcomm-dark .featured-image.page-header-image,
body.arcomm-dark .page-header-image,
body.arcomm-dark .entry-header,
body.arcomm-dark header.entry-header,
body.arcomm-dark .widget-area,
body.arcomm-dark .sidebar,
body.arcomm-dark #right-sidebar,
body.arcomm-dark #mobile-header,
body.arcomm-dark .mobile-menu-control-wrapper,
body.arcomm-dark .main-navigation.grid-container,
body.arcomm-dark .inside-header.grid-container { display: none !important; }

body.arcomm-dark .site.grid-container,
body.arcomm-dark .site-content,
body.arcomm-dark #content,
body.arcomm-dark .content-area,
body.arcomm-dark #primary,
body.arcomm-dark .site-main,
body.arcomm-dark main.site-main { max-width: 100% !important; width: 100% !important; padding: 0 !important; margin: 0 !important; float: none !important; background: transparent !important; }

body.arcomm-dark article.type-page,
body.arcomm-dark .inside-article,
body.arcomm-dark .entry-content,
body.arcomm-dark div[itemprop="text"] { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; background: transparent !important; }

  body.arcomm-dark .site { margin: 0 !important; }

  /* ═══ LEAD WIDGET ═══ */
  .arcomm-lead-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    font-family: Inter, system-ui, sans-serif;
  }
  .lead-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    min-height: 56px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--blue), #635bff);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(47,124,255,.35);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .lead-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(47,124,255,.45); }
  .lead-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .lead-btn .lead-btn-text {
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
  }
  @media (max-width: 640px) {
    .lead-btn {
      padding: 0 18px;
      min-height: 48px;
      font-size: 13px;
    }
    .lead-btn svg { width: 16px; height: 16px; }
    .lead-btn .lead-btn-text { font-size: 13px; }
  }

  /* ═══ TESTIMONIALS ═══ */
  .testimonials-section { background: var(--panel); }
  .testimonial-card {
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
  }
  .testimonial-card .quote {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 16px;
  }
  .testimonial-card .case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }
  .testimonial-card .case-meta span {
    padding: 4px 10px;
    background: rgba(47,124,255,.12);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
  }
  .testimonial-card .stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
  }
  .testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), #635bff);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .testimonial-card .author-name {
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
  }
  .testimonial-card .author-title {
    color: var(--soft);
    font-size: 13px;
  }

  /* ═══ RESPONSIVE ═══ */
@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 16px; }
  .main-nav, .phone { display: none; }
  .mobile-toggle {
    display: flex;
    position: relative;
    z-index: 60;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 10px;
  }
  .mobile-toggle span { width: 24px; height: 2.5px; border-radius: 2px; }
  .mobile-menu.active { display: flex; }
  .hero, .intro, .split-section, .proof { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 96px; }
  .hero-content { padding-bottom: 0; }
  .trust-band, .service-grid, .process-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-band { grid-template-columns: repeat(2, 1fr); }
  .contact-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .site-header { min-height: 68px; padding-inline: 16px; }
  .brand img { width: 116px; }
  .hero, .section, .split-section, .proof, .contact-cta { padding-inline: 16px; }
  .hero-content h1 { font-size: 36px; }
  .lead { font-size: 16px; }
  .trust-band, .service-grid, .process-grid, .mini-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-panel { grid-template-columns: 1fr; }
  .contact-cta a { width: 100%; text-align: center; }
}