/*
Theme Name: Self-Edit Corporate
Theme URI: https://self-edit.com
Author: Self-Edit Technologies Inc.
Description: Corporate brand theme for self-edit.com — navy/cyan design system shared with getselfedit.com and selfeditsocial.com.
Version: 1.0.12
Requires PHP: 8.0
Text Domain: selfedit-corporate
*/

:root {
  --bg-primary:        #1a2942;
  --bg-section-soft:   rgba(30, 58, 95, 0.30);
  --bg-section-mid:    rgba(30, 58, 95, 0.50);
  --bg-section-strong: rgba(30, 58, 95, 0.95);
  --bg-trust:          rgba(0, 0, 0, 0.30);
  --bg-card:           rgba(30, 58, 95, 0.50);
  --bg-input:          rgba(0, 0, 0, 0.25);

  --accent-cyan:       #00d4ff;
  --accent-cyan-soft:  rgba(0, 212, 255, 0.10);
  --accent-blue:       #2ea3f2;
  --accent-gradient:   linear-gradient(135deg, #00d4ff, #2ea3f2);
  --glow-cyan-text:    0 0 30px rgba(0, 212, 255, 0.5);
  --glow-cyan-button:  0 0 40px rgba(0, 212, 255, 0.6);
  --glow-cyan-soft:    0 0 25px rgba(0, 212, 255, 0.3);

  --text-primary:      #ffffff;
  --text-secondary:    #b8c9db;
  --text-muted:        #8a9bae;

  --border-cyan-faint: rgba(0, 212, 255, 0.10);
  --border-cyan:       rgba(0, 212, 255, 0.20);
  --border-cyan-bright:rgba(0, 212, 255, 0.30);
}

/* Corporate display face — same file the live site serves via Use Any Font */
@font-face {
  font-family: 'Handel Gothic';
  src: url('assets/fonts/HandelGothic.woff') format('woff');
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Honeycomb decorative background */
.honeycomb-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; color: var(--accent-cyan); overflow: hidden; }
.honeycomb-bg .hex { position: absolute; width: 180px; opacity: 0.06; }
.honeycomb-bg .hex-1 { top:  4%; left:  -3%; width: 240px; opacity: 0.08; }
.honeycomb-bg .hex-2 { top: 18%; right:  4%; width: 160px; opacity: 0.10; }
.honeycomb-bg .hex-3 { top: 42%; left:  10%; width: 200px; opacity: 0.05; }
.honeycomb-bg .hex-4 { top: 60%; right: -4%; width: 280px; opacity: 0.07; }
.honeycomb-bg .hex-5 { top: 78%; left:  35%; width: 150px; opacity: 0.05; }
.honeycomb-bg .hex-6 { top: 90%; right: 18%; width: 200px; opacity: 0.07; }
section, main, footer { position: relative; z-index: 1; }

/* ── NAV ─────────────────────────────────────────────────────────── */
.site-nav {
  background: var(--bg-section-strong);
  border-bottom: 2px solid var(--border-cyan-bright);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: 'Handel Gothic', 'Open Sans', sans-serif;
  font-size: 1.02rem; font-weight: 400; letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap;
}
.nav-word-cyan  { color: var(--accent-cyan); }
.nav-word-white { color: var(--text-primary); }

.nav-right { display: flex; align-items: center; gap: 22px; }

/* primary menu with dropdowns */
.nav-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; align-items: center; }
.nav-menu li { position: relative; }
.nav-menu > li > a {
  color: var(--text-secondary); font-weight: 700; font-size: 0.9rem;
  transition: color 0.2s ease; white-space: nowrap; padding: 8px 0; display: inline-block;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a { color: var(--accent-cyan); }
.nav-menu > li.menu-item-has-children > a::after {
  content: ''; display: inline-block; width: 7px; height: 7px; margin-left: 7px; margin-bottom: 2px;
  border-right: 2px solid var(--accent-cyan); border-bottom: 2px solid var(--accent-cyan);
  transform: rotate(45deg); vertical-align: middle;
}
.nav-menu .sub-menu {
  list-style: none; margin: 0; padding: 8px;
  position: absolute; top: calc(100% + 10px); left: -18px; min-width: 240px;
  background: #121e33;
  border: 1px solid var(--border-cyan-bright);
  border-top: 2px solid var(--accent-cyan);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), var(--glow-cyan-soft);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 110;
}
/* invisible hover bridge so the pointer can cross the gap below the bar */
.nav-menu .sub-menu::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu li a {
  display: block; padding: 10px 14px; font-size: 0.9rem; font-weight: 600;
  color: var(--text-primary); border-radius: 5px; white-space: nowrap;
  transition: color 0.12s ease, background 0.12s ease;
}
.nav-menu .sub-menu li a:hover { color: var(--accent-cyan); background: var(--accent-cyan-soft); }
.nav-menu .sub-menu .sub-menu { top: -8px; left: calc(100% + 2px); border-radius: 8px; border-top-width: 1px; }

.nav-cta {
  background: var(--accent-gradient); color: var(--bg-primary) !important;
  padding: 10px 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-size: 0.85rem; border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease; white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--glow-cyan-button); }

/* Squeezed widths: stack the wordmark on two lines so the full company
   name always shows without fighting the menu for room. */
.nav-logo { flex-shrink: 0; }
.nav-menu { min-width: 0; }
@media (max-width: 1280px) {
  .nav-menu { gap: 16px; }
  .nav-right { gap: 16px; }
  .nav-cta { padding: 10px 16px; }
  /* stacked lockup: big SELF-EDIT over small, wide-tracked TECHNOLOGIES,
     sized so both lines end flush on the right */
  .nav-logo-text { display: inline-flex; flex-direction: column; line-height: 1.1; align-self: center; }
  .nav-logo-text .nav-word-cyan { font-size: 1.12rem; letter-spacing: 1.2px; }
  .nav-logo-text .nav-word-white {
    font-size: 0.56rem; letter-spacing: 2.9px;
    color: var(--text-secondary); margin-top: 2px;
  }
}
@media (max-width: 1120px) and (min-width: 981px) {
  .nav-menu { gap: 13px; }
  .nav-menu > li > a { font-size: 0.85rem; }
}

/* mobile nav */
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--border-cyan-bright);
  border-radius: 4px; padding: 7px 10px; cursor: pointer; color: var(--accent-cyan);
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-section-strong); border-bottom: 2px solid var(--border-cyan-bright);
    padding: 8px 0 16px; max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { display: block; padding: 12px 24px; }
  .nav-menu .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: none; box-shadow: none; background: rgba(0,0,0,0.2); border-radius: 0;
    min-width: 0; display: none;
  }
  .nav-menu li.open > .sub-menu { display: block; }
  .nav-menu .sub-menu::before { display: none; }
  .nav-menu .sub-menu li a { padding: 10px 40px; white-space: normal; }
}
@media (max-width: 600px) {
  .nav-logo img { height: 30px; }
  .nav-logo-text { font-size: 0.85rem; letter-spacing: 1px; }
  .nav-cta { padding: 9px 14px; font-size: 0.72rem; letter-spacing: 0.5px; }
}
/* Small phones: keep the two-line wordmark but shrink it so the bar
   never forces horizontal overflow. */
@media (max-width: 480px) {
  .nav-logo img { height: 28px; }
  .nav-logo-text .nav-word-cyan { font-size: 0.88rem; letter-spacing: 1.2px; }
  .nav-logo-text .nav-word-white { font-size: 0.52rem; letter-spacing: 2.6px; }
  .nav-container { gap: 10px; padding: 0 16px; }
  .nav-right { gap: 10px; }
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 24px 80px; text-align: center;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.8), rgba(26, 41, 66, 0.9));
  border-bottom: 2px solid var(--border-cyan); overflow: hidden;
}
.hero-compact { padding: 80px 24px 56px; }
.hero-content { max-width: 900px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; margin: 0 0 24px;
  line-height: 1.15; letter-spacing: -0.01em; color: var(--text-primary);
}
.hero-compact h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.highlight { color: var(--accent-cyan); text-shadow: var(--glow-cyan-text); }
.hero-tagline {
  font-size: clamp(1rem, 2.4vw, 1.25rem); color: var(--text-secondary);
  margin: 0 auto 36px; line-height: 1.6; max-width: 720px;
}
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; font-weight: 700;
  color: var(--text-muted); margin-bottom: 14px;
}
.hero-eyebrow a { color: var(--accent-cyan); }
.hero-cta {
  display: inline-block; background: var(--accent-gradient); color: var(--bg-primary);
  padding: 18px 48px; font-size: 1.05rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; border: none; border-radius: 4px; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease; font-family: inherit;
}
.hero-cta:hover, .hero-cta:focus-visible { transform: translateY(-3px); box-shadow: var(--glow-cyan-button); outline: none; }
.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.hero-cta-ghost {
  display: inline-block; padding: 15px 32px; border: 1px solid var(--border-cyan-bright);
  border-radius: 4px; color: var(--accent-cyan); font-weight: 700; transition: all 0.25s ease;
}
.hero-cta-ghost:hover { border-color: var(--accent-cyan); box-shadow: var(--glow-cyan-soft); transform: translateY(-2px); }
.hero-trust { margin-top: 24px; font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 600px) { .hero { padding: 60px 20px 56px; } .hero-cta { padding: 16px 32px; letter-spacing: 1.5px; } }

/* ── TRUST BAR ───────────────────────────────────────────────────── */
.trust-bar { background: var(--bg-trust); padding: 26px 20px; text-align: center; border-bottom: 2px solid var(--border-cyan-faint); }
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 56px; max-width: 1100px; margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 0.95rem; font-weight: 600; }
.trust-item svg { width: 24px; height: 24px; stroke: var(--accent-cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── SECTIONS ────────────────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-soft { background: var(--bg-section-soft); }
.section-mid  { background: var(--bg-section-mid); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner.narrow { max-width: 760px; }
@media (max-width: 600px) { .section { padding: 64px 20px; } }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem); color: var(--accent-cyan); margin: 0 0 14px;
  text-transform: uppercase; letter-spacing: 3px; font-weight: 700; line-height: 1.2;
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 720px; margin: 0 auto; line-height: 1.6; }

/* prose */
.prose-block { color: var(--text-secondary); font-size: 1.0625rem; line-height: 1.75; }
.prose-block p { margin: 0 0 1.25rem; max-width: 65ch; }
.prose-block--center { text-align: center; }
.prose-block--center p { margin-left: auto; margin-right: auto; }
.prose-block .emphasis, .prose-block strong { color: var(--text-primary); font-weight: 600; }
.prose-block .hl-cyan, .prose-block a { color: var(--accent-cyan); }
.prose-block a:hover { text-decoration: underline; }
.prose-block ul { margin: 0 0 1.25rem; padding-left: 1.4em; list-style: none; }
.prose-block ul li { position: relative; padding: 4px 0 4px 8px; }
.prose-block ul li::before { content: "✓"; position: absolute; left: -1.2em; color: var(--accent-cyan); font-weight: 800; }
.pivot { margin-top: 16px; }
.pivot-text {
  color: var(--text-primary); font-weight: 700; font-size: 1.25rem; position: relative;
  display: inline-block; padding-bottom: 4px; border-bottom: 2px solid var(--accent-cyan);
}

/* ── CARD GRIDS ──────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border-cyan);
  border-radius: 12px; padding: 44px 24px 28px; text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.step-card:hover { border-color: var(--border-cyan-bright); box-shadow: var(--glow-cyan-soft); transform: translateY(-3px); }
.step-number {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  background: var(--accent-gradient); color: var(--bg-primary);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-weight: 700; font-size: 1.05rem; box-shadow: 0 4px 16px rgba(0, 212, 255, 0.35);
}
.step-icon { width: 56px; height: 56px; margin: 8px auto 18px; color: var(--accent-cyan); font-size: 2.4rem; line-height: 56px; }
.step-card h3 { color: var(--text-primary); font-size: 1.0625rem; font-weight: 700; margin: 0 0 10px; line-height: 1.35; }
.step-card p { color: var(--text-secondary); margin: 0; font-size: 0.95rem; line-height: 1.55; }
/* 4-step process: 4-across desktop, 2x2 tablet, stacked mobile */
.steps-grid.steps-4 { grid-template-columns: repeat(4, 1fr); gap: 40px 24px; }
@media (max-width: 1000px) { .steps-grid.steps-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .steps-grid.steps-4 { grid-template-columns: 1fr; gap: 36px; } }

/* pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.pillars-grid.four { grid-template-columns: repeat(4, 1fr); max-width: 1100px; }
.pillar-card {
  display: block; background: var(--bg-card); border: 1px solid var(--border-cyan-faint);
  border-radius: 14px; padding: 32px 28px; text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card:hover { transform: translateY(-5px); border-color: var(--accent-cyan); box-shadow: var(--glow-cyan-soft); }
.pillar-ico { font-size: 2.6rem; margin-bottom: 10px; }
.pillar-card h3 { font-size: 1.4rem; color: var(--text-primary); margin: 0 0 8px; }
.pillar-card p { color: var(--text-secondary); font-size: 0.96rem; margin: 0 0 16px; }
.pillar-link { color: var(--accent-cyan); font-weight: 700; font-size: 0.9rem; }
@media (max-width: 980px) { .pillars-grid.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 780px) { .pillars-grid { grid-template-columns: 1fr; max-width: 420px; } .pillars-grid.four { grid-template-columns: 1fr; max-width: 420px; } }

/* service tiles */
.home-svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; max-width: 1100px; margin: 0 auto; }
.home-svc {
  display: flex; flex-direction: column; background: var(--bg-section-soft);
  border: 1px solid var(--border-cyan-faint); border-radius: 10px; padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-svc:hover { transform: translateY(-3px); border-color: var(--accent-cyan); box-shadow: var(--glow-cyan-soft); }
.home-svc-ico { font-size: 1.5rem; margin-bottom: 6px; }
.home-svc-name { font-weight: 800; color: var(--text-primary); font-size: 1rem; }
.home-svc-out { color: var(--text-secondary); font-size: 0.85rem; margin: 3px 0 10px; flex: 1; }
.home-svc-more { text-align: center; margin-top: 30px; }

/* what-you-get grid */
.svc-get-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; max-width: 1040px; margin: 0 auto; }
.svc-get {
  background: var(--bg-card); border: 1px solid var(--border-cyan-faint); border-radius: 10px;
  padding: 22px; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.svc-get:hover { border-color: var(--border-cyan); box-shadow: var(--glow-cyan-soft); }
.svc-get-ico { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.svc-get h3 { font-size: 1.05rem; color: var(--text-primary); margin: 0 0 6px; }
.svc-get p { color: var(--text-secondary); font-size: 0.92rem; margin: 0; }

/* reassurance strip */
.reassure { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.reassure-item {
  color: var(--text-secondary); font-size: 0.95rem; padding: 18px 20px;
  background: var(--bg-section-soft); border-radius: 10px; border: 1px solid var(--border-cyan-faint);
}
.reassure-item strong { color: var(--text-primary); display: block; margin-bottom: 4px; }

/* example / callout block */
.svc-example { background: var(--bg-section-soft); border-left: 3px solid var(--accent-cyan); border-radius: 0 10px 10px 0; padding: 26px 30px; }
.svc-example p { color: var(--text-secondary); margin: 0 0 14px; }
.svc-example p:last-child { margin-bottom: 0; }

/* related links */
.svc-related { text-align: center; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--border-cyan-faint); color: var(--text-muted); font-size: 0.92rem; }
.svc-related span { display: block; margin-bottom: 10px; }
.svc-related a { display: inline-block; margin: 4px 8px; color: var(--accent-cyan); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }
.svc-related a:hover { border-color: var(--accent-cyan); }

/* CTA close */
.svc-close-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.svc-cta-secondary {
  color: var(--text-secondary); font-weight: 600; font-size: 0.95rem;
  border-bottom: 1px solid var(--border-cyan); padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.svc-cta-secondary:hover { color: var(--accent-cyan); border-color: var(--accent-cyan); }

/* contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; max-width: 1040px; margin: 0 auto; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border-cyan-faint); border-radius: 10px; padding: 22px; }
.contact-card h3 { font-size: 1.02rem; color: var(--accent-cyan); margin: 0 0 8px; text-transform: uppercase; letter-spacing: 1px; }
.contact-card p { color: var(--text-secondary); font-size: 0.95rem; margin: 0 0 4px; }
.contact-card a { display: block; color: var(--text-primary); font-weight: 600; }
.contact-card a:hover { color: var(--accent-cyan); }

/* pricing table (non-profit) */
.pricing-grid { display: grid; gap: 20px; max-width: 1040px; margin: 0 auto; grid-template-columns: repeat(3, 1fr); }
.price-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border-cyan-faint);
  border-radius: 12px; padding: 28px 24px; display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border-cyan-bright); box-shadow: var(--glow-cyan-soft); }
.price-card.featured { border-color: var(--accent-cyan); box-shadow: var(--glow-cyan-soft); }
.price-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent-gradient); color: var(--bg-primary); font-weight: 800; font-size: 0.7rem;
  letter-spacing: 0.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.price-card-name { font-size: 1.25rem; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.price-card-amt { font-size: 2.2rem; font-weight: 800; color: var(--accent-cyan); text-shadow: var(--glow-cyan-soft); line-height: 1.1; margin-bottom: 16px; }
.price-card-amt .was { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; font-weight: 600; margin-right: 8px; }
.price-card-unit { font-size: 0.95rem; color: var(--text-muted); font-weight: 600; }
.price-card-list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.price-card-list li { position: relative; padding: 7px 0 7px 24px; color: var(--text-secondary); font-size: 0.94rem; border-bottom: 1px solid var(--border-cyan-faint); }
.price-card-list li:last-child { border-bottom: none; }
.price-card-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-cyan); font-weight: 800; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; gap: 16px; } }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-cyan); border-radius: 8px; padding: 0 24px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.faq-item[open] { border-color: var(--border-cyan-bright); box-shadow: var(--glow-cyan-soft); }
.faq-q { list-style: none; cursor: pointer; padding: 18px 0; color: var(--text-primary); font-weight: 600; font-size: 1.05rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: ''; width: 12px; height: 12px; flex-shrink: 0;
  border-right: 2px solid var(--accent-cyan); border-bottom: 2px solid var(--accent-cyan);
  transform: rotate(45deg); transition: transform 0.2s ease; margin-bottom: 4px;
}
.faq-item[open] .faq-q::after { transform: rotate(-135deg); margin-top: 6px; margin-bottom: 0; }
.faq-a { padding: 0 0 20px; color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }
.faq-a p { margin: 0; max-width: 70ch; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer { background: var(--bg-section-strong); border-top: 2px solid var(--border-cyan); color: var(--text-secondary); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 56px 24px 40px; max-width: 1200px; margin: 0 auto; align-items: start; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Handel Gothic', 'Open Sans', sans-serif;
  font-size: 1rem; font-weight: 400; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-brand img { height: 30px; width: auto; }
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 8px; }
.footer-h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-cyan); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a { color: var(--text-primary); font-size: 0.92rem; border-bottom: 1px solid transparent; transition: color 0.2s ease, border-color 0.2s ease; }
.footer-col ul li a:hover { color: var(--accent-cyan); border-bottom-color: var(--accent-cyan); }
.footer-col p { margin: 0 0 6px; font-size: 0.95rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--border-cyan-faint); padding: 16px 24px; font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* contact form (Contact Form 7) */
.wpcf7 { max-width: 720px; margin: 0 auto; text-align: left; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 select, .wpcf7 textarea {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border-cyan);
  color: var(--text-primary); border-radius: 6px; padding: 14px 16px;
  font-size: 16px; line-height: 1.4; font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: none; border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.05); box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}
.wpcf7 textarea { resize: vertical; min-height: 130px; }
.wpcf7 ::placeholder { color: var(--text-muted); }
.wpcf7 .wpcf7-submit {
  display: inline-block; background: var(--accent-gradient); color: var(--bg-primary);
  padding: 16px 44px; font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; border: none; border-radius: 4px; cursor: pointer; font-family: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wpcf7 .wpcf7-submit:hover { transform: translateY(-2px); box-shadow: var(--glow-cyan-button); }
.wpcf7 .wpcf7-not-valid-tip { color: #ff8b85; font-size: 0.85rem; margin-top: 6px; display: block; }
.wpcf7 .wpcf7-response-output {
  border: 1px solid var(--border-cyan) !important; border-radius: 6px;
  padding: 12px 16px !important; margin: 18px 0 0 !important; color: var(--text-secondary);
}
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--accent-cyan) !important; color: var(--text-primary); }
.form-submit-row { text-align: center; margin-top: 10px; }

/* portfolio gallery */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; max-width: 1100px; margin: 0 auto; }
.portfolio-item { background: var(--bg-card); border: 1px solid var(--border-cyan-faint); border-radius: 10px; overflow: hidden; transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.portfolio-item:hover { border-color: var(--accent-cyan); box-shadow: var(--glow-cyan-soft); transform: translateY(-3px); }
.portfolio-item img { width: 100%; display: block; }
.portfolio-item figcaption { padding: 12px 16px; color: var(--text-secondary); font-size: 0.9rem; font-weight: 600; }
/* dense archive wall — small tiles, no captions */
.portfolio-grid.archive { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.portfolio-grid.archive .portfolio-item { border-radius: 6px; }
.portfolio-grid.archive img { aspect-ratio: 4 / 3; object-fit: cover; object-position: top; }

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