/* =========================================================================
   ViciThemes — main stylesheet
   Combines shared shell (nav, fonts, footer, tokens) with page-specific
   sections (home grid, services tabs/forms). Tokens via :root.
   ========================================================================= */

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

:root {
  --bg: #0A0A0B;
  --bg2: #111113;
  --bg3: #18181C;
  --bg4: #202025;
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.1);
  --text: #EEEEF0;
  --text2: #8E8E9E;
  --text3: #4A4A5A;
  --accent: #6C63FF;
  --accent2: #8B84FF;
  --accent-glow: rgba(108,99,255,0.2);
  --green: #22C55E;
  --green-bg: rgba(34,197,94,0.1);
  --amber: #F59E0B;
  --amber-bg: rgba(245,158,11,0.1);
  --red: #EF4444;
  --display: 'Syne', sans-serif;
  --body: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Noise overlay (decorative). */
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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 4px; }

a { color: inherit; }

/* Accessibility skip link. */
.skip-link.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link.screen-reader-text:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  z-index: 1000;
  font-size: 14px;
  font-weight: 600;
}

/* =========================================================================
   NAV
   Logo (left) and CTAs (right) are absolutely positioned to the edges so
   the middle menu can sit truly centred regardless of side widths.
   ========================================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 240px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,11,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}

.nav-logo-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.nav-logo-img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a,
.nav-links li.current-menu-ancestor > a { color: var(--text); }

.nav-badge {
  font-size: 9px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

.nav-ctas {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost {
  padding: 7px 16px;
  border-radius: 7px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--text2);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}

.btn-ghost:hover,
.btn-ghost:focus-visible { border-color: var(--accent2); color: var(--text); }

.btn-primary {
  padding: 7px 18px;
  border-radius: 7px;
  background: var(--accent);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center;
}

.btn-primary:hover,
.btn-primary:focus-visible { background: var(--accent2); transform: translateY(-1px); }

/* =========================================================================
   HOME — HERO
   ========================================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 40px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 480px;
  margin: 0 auto 16px;
  line-height: 1.6;
  animation: fadeUp 0.6s 0.15s ease both;
}

.hero-service-hint {
  font-size: 15px;
  color: var(--text3);
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-service-hint a {
  color: var(--accent2);
  text-decoration: none;
  font-weight: 500;
}

.hero-service-hint a:hover { text-decoration: underline; }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
  animation: fadeUp 0.6s 0.25s ease both;
  flex-wrap: wrap;
}

.hero-cta-primary {
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  font-family: var(--body);
}

.hero-cta-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,99,255,0.3); }

.hero-cta-secondary {
  padding: 13px 28px;
  border: 1px solid var(--border2);
  color: var(--text2);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  font-family: var(--body);
}

.hero-cta-secondary:hover { border-color: var(--accent2); color: var(--text); }

/* =========================================================================
   HOME — SERVICES BANNER
   ========================================================================= */
.services-banner {
  padding: 32px 40px 80px;
  position: relative;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.15;
}

.section-sub {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 36px;
  max-width: 480px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }

.service-card.featured {
  background: linear-gradient(135deg, rgba(108,99,255,0.08) 0%, rgba(108,99,255,0.03) 100%);
  border-color: rgba(108,99,255,0.25);
}

.service-card.featured::before { opacity: 1; }

.service-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.badge-purple { background: rgba(108,99,255,0.15); color: var(--accent2); border: 1px solid rgba(108,99,255,0.2); }
.badge-green  { background: var(--green-bg);       color: var(--green);   border: 1px solid rgba(34,197,94,0.2); }

.service-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.service-price {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  font-family: var(--display);
}

.service-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text2);
}

.service-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 15px;
  color: var(--text2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent2);
  text-decoration: none;
  transition: gap 0.15s;
}

.service-cta:hover { gap: 10px; }

/* =========================================================================
   HOME — KIT GRID
   ========================================================================= */
.kits-section {
  padding: 32px 40px 80px;
  scroll-margin-top: 80px;
}

.kits-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kit-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, opacity 0.25s;
  cursor: pointer;
}

.kit-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.kit-card.hidden { display: none; }
.kit-card.animating { animation: kitFadeIn 0.3s ease both; }

.kit-img {
  aspect-ratio: 16/10;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}

.kit-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.kit-card:hover .kit-thumb { transform: scale(1.04); }

.kit-thumb-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(108,99,255,0.12) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border-bottom: 1px solid var(--border);
}

.kit-thumb-fallback span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--text2);
}

.kit-preview {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.kit-preview-hero {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kit-preview-tag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.6;
}

.kit-preview-h {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}

.kit-preview-sub {
  font-size: 8px;
  opacity: 0.5;
  line-height: 1.4;
}

.kit-preview-btn {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
  margin-top: 10px;
}

.kit-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

.kit-card:hover .kit-hover-overlay,
.kit-card:focus-within .kit-hover-overlay { opacity: 1; }

.kit-hover-btn {
  padding: 9px 22px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-decoration: none;
  min-width: 160px;
  text-align: center;
}

.kit-hover-btn.primary { background: var(--accent); color: #fff; border: none; }
.kit-hover-btn.primary:hover { background: var(--accent2); }
.kit-hover-btn.outline { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.kit-hover-btn.outline:hover { border-color: var(--accent2); color: var(--accent2); }

.kit-info {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kit-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.kit-category {
  font-size: 13px;
  color: var(--text3);
}

.kit-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.kit-price {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.kit-badge {
  font-size: 13px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}

.badge-new { background: rgba(34,197,94,0.15); color: var(--green); }
.badge-popular { background: rgba(108,99,255,0.15); color: var(--accent2); }

/* Preset preview backgrounds (data-driven kits can also bring inline style). */
.kit-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #e8e8f0; }
.kit-2 { background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); color: #e8f4f8; }
.kit-3 { background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%); color: #f0e8ff; }
.kit-4 { background: linear-gradient(135deg, #0a1628 0%, #1a2f4a 100%); color: #e8f0f8; }
.kit-5 { background: linear-gradient(135deg, #1a0a0a 0%, #2d1010 100%); color: #ffe8e8; }
.kit-6 { background: linear-gradient(135deg, #0a1a0a 0%, #102d10 100%); color: #e8ffe8; }
.kit-7 { background: linear-gradient(135deg, #1a1508 0%, #2d2510 100%); color: #fff8e8; }
.kit-8 { background: linear-gradient(135deg, #14141e 0%, #1e1e32 100%); color: #e8e8ff; }

/* =========================================================================
   HOME — WPVALET STRIP
   ========================================================================= */
.wpvalet-strip {
  margin: 0 auto 80px;
  background: linear-gradient(135deg, rgba(108,99,255,0.1) 0%, rgba(108,99,255,0.04) 100%);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1100px;
}

.strip-left { flex: 1; }

.strip-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 8px;
}

.strip-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.strip-sub {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
}

.strip-ctas {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* =========================================================================
   SERVICES — PAGE HERO + TABS
   ========================================================================= */
.page-hero {
  padding: 120px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-glow {
  width: 700px; height: 400px;
  top: 0;
  background: radial-gradient(ellipse, rgba(108,99,255,0.1) 0%, transparent 70%);
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
  max-width: 760px;
  margin: 0 auto 20px;
  animation: fadeUp 0.5s 0.08s ease both;
}

.page-hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeUp 0.5s 0.15s ease both;
}

.tabs-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 40px 0;
  gap: 6px;
  animation: fadeUp 0.5s 0.2s ease both;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 9px 24px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--text2);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.tab-btn:hover { color: var(--text); border-color: var(--accent2); }
.tab-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }

.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* =========================================================================
   SERVICES — PRICING / PACKAGE / ADDON CARDS
   ========================================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.pricing-card:hover { border-color: var(--border2); }
.pricing-card.featured { border-color: rgba(108,99,255,0.3); }

.pricing-head {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
}

.pricing-card.featured .pricing-head {
  background: linear-gradient(135deg, rgba(108,99,255,0.08) 0%, transparent 100%);
}

.pricing-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pricing-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.pricing-price {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text2);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 15px;
  color: var(--text2);
  margin-top: 8px;
  line-height: 1.5;
}

.pricing-body { padding: 24px 28px; }

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.feat-list li {
  font-size: 15px;
  color: var(--text2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.feat-list li .icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--green);
  margin-top: 1px;
}

.feat-list li .icon-x {
  background: rgba(239,68,68,0.1);
  color: var(--red);
}

.feat-list li.muted { color: var(--text3); }

.pricing-cta {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 9px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
  text-decoration: none;
  border: none;
}

.pricing-cta.primary { background: var(--accent); color: #fff; }
.pricing-cta.primary:hover { background: var(--accent2); transform: translateY(-1px); }

.pricing-cta.outline {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
}

.pricing-cta.outline:hover { border-color: var(--accent2); color: var(--text); }

.pricing-timeline {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 18px;
}

/* Add-ons. */
.addons-title,
.scope-title,
.process-title,
.faq-title,
.addons-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 48px;
}

.addon-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 0.2s;
}

.addon-card:hover { border-color: var(--border2); }

.addon-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.addon-price {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 6px;
}

.addon-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.5;
}

/* =========================================================================
   SERVICES — SCOPE / PROCESS
   ========================================================================= */
.scope-wrap { margin-bottom: 48px; }

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

.scope-col {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.scope-head {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scope-col.yes .scope-head { background: var(--green-bg); color: var(--green); }
.scope-col.no  .scope-head { background: rgba(239,68,68,0.08); color: var(--red); }

.scope-body { padding: 12px 16px; background: var(--bg2); }

.scope-item {
  font-size: 13px;
  color: var(--text2);
  padding: 5px 0 5px 14px;
  position: relative;
  line-height: 1.4;
}

.scope-item::before { content: '–'; position: absolute; left: 0; color: var(--text3); }

.process-wrap { margin-bottom: 48px; }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: var(--border2);
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
}

.step-num {
  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(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-body { padding-top: 8px; }

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.step-desc { font-size: 15px; color: var(--text2); line-height: 1.5; }

/* =========================================================================
   SERVICES — FORM
   ========================================================================= */
.form-section { margin-bottom: 48px; }

.form-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 9px;
  padding: 11px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.15);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--text3); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235A5966' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option { background: var(--bg3); }

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

.form-submit:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(108,99,255,0.25); }

.form-note {
  font-size: 12px;
  color: var(--text3);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.form-success.visible { display: block; }

.success-icon {
  width: 56px; height: 56px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  border: 1px solid rgba(34,197,94,0.2);
}

.success-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.success-sub { font-size: 15px; color: var(--text2); line-height: 1.6; }

/* =========================================================================
   SERVICES — CUSTOM BUILD
   ========================================================================= */
.custom-hero {
  background: linear-gradient(135deg, rgba(108,99,255,0.08) 0%, rgba(108,99,255,0.02) 100%);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 20px;
  padding: 40px 48px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.custom-hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 8px;
}

.custom-hero-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.1;
}

.custom-hero-sub {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  max-width: 440px;
}

.custom-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}

.custom-hero-cta:hover { background: var(--accent2); transform: translateY(-1px); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.package-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.package-card:hover { border-color: var(--border2); }
.package-card.featured { border-color: rgba(108,99,255,0.3); }

.package-head {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border);
}

.package-card.featured .package-head {
  background: linear-gradient(135deg, rgba(108,99,255,0.1) 0%, transparent 100%);
}

.package-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.package-price {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.package-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text2);
  letter-spacing: 0;
}

.package-desc {
  font-size: 15px;
  color: var(--text2);
  margin-top: 6px;
  line-height: 1.5;
}

.package-body { padding: 18px 22px; }

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.package-features li {
  font-size: 15px;
  color: var(--text2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.4;
}

.package-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-timeline {
  font-size: 13px;
  font-family: var(--mono);
  color: var(--text3);
  margin-bottom: 16px;
}

.package-cta {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.package-cta.primary { background: var(--accent); color: #fff; border: none; cursor: pointer; }
.package-cta.primary:hover { background: var(--accent2); }
.package-cta.outline { background: transparent; color: var(--text2); border: 1px solid var(--border2); cursor: pointer; }
.package-cta.outline:hover { border-color: var(--accent2); color: var(--text); }

.note-box {
  background: var(--amber-bg);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: #c49a2a;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 40px;
  line-height: 1.5;
}

.note-box strong { color: #c49a2a; }

.cta-final {
  text-align: center;
  padding: 40px 0;
}

.cta-final-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cta-final-sub {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 24px;
}

.cta-final-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}

.cta-final-link:hover { background: var(--accent2); }

.cta-final-mail {
  font-size: 12px;
  color: var(--text3);
  margin-top: 12px;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-section { margin-bottom: 48px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  font-family: var(--body);
  padding: 0;
}

.faq-q::after {
  content: '+';
  color: var(--text3);
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.15s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  display: none;
  padding-top: 4px;
}

.faq-item.open .faq-a { display: block; }

/* =========================================================================
   GRAVITY FORMS — themed to match the site palette.
   Targets the modern Orbital/Framework themes (Gravity Forms 2.8+) which
   ship inline CSS variables on `#gform_wrapper_X.gform-theme`. We override
   the variables with !important so values flow through GF's own stylesheet,
   then layer typography tweaks (uppercase labels, custom select arrow,
   submit-button shape) on top.
   ========================================================================= */

/* --- Token overrides (CSS custom properties) --- */
.gform_wrapper.gform-theme,
.gform_wrapper.gform-theme--orbital,
.gform_wrapper.gform-theme--framework,
.gform_wrapper[data-form-theme="orbital"] {
  /* Brand */
  --gf-color-primary: var(--accent) !important;
  --gf-color-primary-rgb: 108, 99, 255 !important;
  --gf-color-primary-darker: var(--accent2) !important;
  --gf-color-primary-lighter: #b3aeff !important;
  --gf-color-primary-contrast: #fff !important;
  --gf-color-primary-contrast-rgb: 255, 255, 255 !important;

  /* Surfaces */
  --gf-color-secondary: var(--bg2) !important;
  --gf-color-secondary-rgb: 17, 17, 19 !important;
  --gf-color-secondary-contrast: var(--text) !important;
  --gf-color-secondary-darker: var(--bg3) !important;
  --gf-color-secondary-lighter: var(--bg2) !important;

  /* Outer-control colors (labels, descriptions) */
  --gf-color-out-ctrl-light: var(--border) !important;
  --gf-color-out-ctrl-light-rgb: 255, 255, 255 !important;
  --gf-color-out-ctrl-light-darker: var(--border2) !important;
  --gf-color-out-ctrl-dark: var(--text2) !important;
  --gf-color-out-ctrl-dark-darker: var(--text) !important;
  --gf-color-out-ctrl-dark-lighter: var(--text3) !important;

  /* Inner-control colors (inputs/selects/textareas) */
  --gf-color-in-ctrl: var(--bg3) !important;
  --gf-color-in-ctrl-rgb: 24, 24, 28 !important;
  --gf-color-in-ctrl-contrast: var(--text) !important;
  --gf-color-in-ctrl-contrast-rgb: 238, 238, 240 !important;
  --gf-color-in-ctrl-darker: var(--bg4) !important;
  --gf-color-in-ctrl-lighter: var(--bg2) !important;
  --gf-color-in-ctrl-light: var(--border2) !important;
  --gf-color-in-ctrl-light-darker: var(--border) !important;
  --gf-color-in-ctrl-dark: var(--text) !important;
  --gf-color-in-ctrl-dark-darker: var(--text) !important;

  --gf-color-in-ctrl-primary: var(--accent) !important;
  --gf-color-in-ctrl-primary-darker: var(--accent2) !important;
  --gf-color-in-ctrl-primary-contrast: #fff !important;

  /* Borders + radius */
  --gf-ctrl-border-color: var(--border2) !important;
  --gf-ctrl-btn-border-color-secondary: var(--border2) !important;
  --gf-radius: 9px !important;

  /* Label color (was unreadable dark blue on dark bg) */
  --gf-ctrl-label-color-primary: var(--text3) !important;
  --gf-ctrl-label-color-secondary: var(--text3) !important;

  /* Custom dropdown arrow that matches our static select */
  --gf-icon-ctrl-select: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235A5966' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

/* --- Typography tweaks (labels uppercase, etc) --- */
.gform_wrapper.gform-theme .gfield_label,
.gform_wrapper.gform-theme .gform-field-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--text3) !important;
  font-family: var(--body) !important;
}

.gform_wrapper.gform-theme .gfield_required,
.gform_wrapper.gform-theme .gfield_required_text {
  color: var(--red) !important;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

/* Make sure inputs definitely render dark even if a stylesheet beats the vars */
.gform_wrapper.gform-theme input[type="text"],
.gform_wrapper.gform-theme input[type="email"],
.gform_wrapper.gform-theme input[type="url"],
.gform_wrapper.gform-theme input[type="tel"],
.gform_wrapper.gform-theme input[type="number"],
.gform_wrapper.gform-theme input[type="password"],
.gform_wrapper.gform-theme input[type="date"],
.gform_wrapper.gform-theme input[type="time"],
.gform_wrapper.gform-theme select,
.gform_wrapper.gform-theme textarea {
  background-color: var(--bg3) !important;
  color: var(--text) !important;
  border: 1px solid var(--border2) !important;
  border-radius: 9px !important;
  font-family: var(--body) !important;
  font-size: 15px !important;
}

.gform_wrapper.gform-theme input:focus,
.gform_wrapper.gform-theme select:focus,
.gform_wrapper.gform-theme textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(108,99,255,0.15) !important;
}

.gform_wrapper.gform-theme input::placeholder,
.gform_wrapper.gform-theme textarea::placeholder {
  color: var(--text3) !important;
  opacity: 1;
}

.gform_wrapper.gform-theme select option { background: var(--bg3); color: var(--text); }

.gform_wrapper.gform-theme textarea { min-height: 120px; line-height: 1.6; }

/* Field descriptions */
.gform_wrapper.gform-theme .gfield_description {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
}

/* Checkboxes / radios */
.gform_wrapper.gform-theme input[type="checkbox"],
.gform_wrapper.gform-theme input[type="radio"] {
  accent-color: var(--accent);
}

.gform_wrapper.gform-theme .gchoice { color: var(--text2); }

/* Submit button — full width, accent background, no rounded pill */
.gform_wrapper.gform-theme .gform_button,
.gform_wrapper.gform-theme input[type="submit"].gform_button {
  width: 100% !important;
  padding: 14px !important;
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 9px !important;
  font-family: var(--body) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.gform_wrapper.gform-theme .gform_button:hover {
  background: var(--accent2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(108,99,255,0.25);
}

.gform_wrapper.gform-theme .gform_footer { margin-top: 20px !important; }

/* Validation summary at the top */
.gform_wrapper.gform-theme .gform_validation_errors {
  background: rgba(239,68,68,0.08) !important;
  border: 1px solid rgba(239,68,68,0.25) !important;
  border-radius: 9px !important;
  color: var(--red) !important;
}

.gform_wrapper.gform-theme .gform_validation_errors h2 {
  color: var(--red) !important;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
}

.gform_wrapper.gform-theme .gfield_error input,
.gform_wrapper.gform-theme .gfield_error select,
.gform_wrapper.gform-theme .gfield_error textarea {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important;
}

.gform_wrapper.gform-theme .gfield_validation_message,
.gform_wrapper.gform-theme .validation_message {
  color: var(--red) !important;
  font-size: 13px;
}

/* AJAX confirmation message */
.gform_confirmation_wrapper,
.gform_wrapper .gform_confirmation_message {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
}

/* =========================================================================
   SUPPORT PAGE
   ========================================================================= */
.support-content { padding-bottom: 60px; }

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 64px;
}

.support-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.support-card:hover { border-color: var(--border2); transform: translateY(-2px); }

.support-card.featured {
  background: linear-gradient(135deg, rgba(108,99,255,0.08) 0%, rgba(108,99,255,0.03) 100%);
  border-color: rgba(108,99,255,0.25);
}

.support-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.support-card-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.support-card-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 18px;
}

.support-card .service-features { margin-bottom: 24px; }

.support-card .pricing-cta { margin-top: auto; }

.support-meta {
  font-size: 13px;
  color: var(--text3);
  margin-top: 12px;
  text-align: center;
}

.support-meta a {
  color: var(--accent2);
  text-decoration: none;
}

.support-meta a:hover { text-decoration: underline; }

/* Self-serve resources */
.support-resources-wrap { margin-bottom: 64px; }

.support-section-sub {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 20px;
  margin-top: -4px;
}

.support-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.support-resource {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.support-resource::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.support-resource:hover { border-color: var(--border2); transform: translateY(-2px); }
.support-resource:hover::before { opacity: 1; }

.support-resource-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.support-resource-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.support-resource-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}

.support-resource:hover .support-resource-cta { gap: 8px; }

/* Direct contact block */
.support-contact {
  background: linear-gradient(135deg, rgba(108,99,255,0.08) 0%, rgba(108,99,255,0.02) 100%);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}

.support-contact-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 10px;
}

.support-contact-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.15;
}

.support-contact-sub {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 24px;
}

.support-contact-sub a {
  color: var(--accent2);
  text-decoration: none;
  font-weight: 500;
}

.support-contact-sub a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .support-grid { grid-template-columns: 1fr; }
  .support-resources { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .support-resources { grid-template-columns: 1fr; }
  .support-contact { padding: 36px 24px; }
}

/* =========================================================================
   LEGAL PAGE TYPOGRAPHY
   Targets the_content() output (Privacy / Terms etc).
   ========================================================================= */
.legal-content {
  max-width: 760px;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content > * + * { margin-top: 1em; }

.legal-content h2 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 2.4em;
  margin-bottom: 0.6em;
  line-height: 1.2;
}

.legal-content h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.legal-content p { color: var(--text2); }

.legal-content a {
  color: var(--accent2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover { color: var(--text); }

.legal-content strong { color: var(--text); font-weight: 600; }

.legal-content ul,
.legal-content ol {
  padding-left: 1.4em;
}

.legal-content ul li,
.legal-content ol li {
  margin-top: 0.4em;
  color: var(--text2);
}

.legal-content blockquote {
  border-left: 3px solid var(--border2);
  padding: 4px 16px;
  margin: 1.4em 0;
  color: var(--text2);
  font-style: italic;
}

.legal-content code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text);
}

.legal-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.4em 0;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 40px 40px;
  margin-top: 80px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.footer-logo-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.footer-logo-img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-brand-copy { font-size: 13px; color: var(--text3); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--text); }

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes kitFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

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

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0; }
  .nav-logo { left: 20px; }
  .nav-ctas { right: 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .services-banner, .kits-section { padding-left: 20px; padding-right: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .kits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wpvalet-strip { flex-direction: column; text-align: center; margin: 0 20px 60px; padding: 32px 24px; }
  .page-hero, .content { padding-left: 20px; padding-right: 20px; }
  .pricing-grid, .packages-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .scope-grid, .form-grid { grid-template-columns: 1fr; }
  .custom-hero { flex-direction: column; padding: 28px 24px; }
  .site-footer { padding: 40px 20px 24px; }
}
