/* ─── RESET & BASE ─── */
:root {
  --navy:       #060f1e;
  --navy-mid:   #0b1c35;
  --navy-light: #122448;
  --blue:       #00308f;
  --blue-mid:   #0040b8;
  --blue-light: #1a5cd4;
  --blue-pale:  rgba(0,48,143,0.18);
  --gold:       #b8862a;
  --gold-light: #d4a040;
  --cream:      #e8edf5;
  --white:      #ffffff;
  --gray:       #7a8fa8;
  --text-muted: #56708a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy) !important;
  color: var(--cream);
  overflow-x: hidden;
}

/* Reset WP wrappers */
.wp-site-blocks, #page, .site { all: unset; display: block; }

/* ─── ADMIN BAR ─── */
.admin-bar .thirtyw-nav { top: 32px !important; }
.admin-bar .thirtyw-hero { padding-top: calc(64px + 32px + 4rem) !important; }

/* ─── NAV ─── */
.thirtyw-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 64px;
  background: rgba(6,15,30,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,48,143,0.3);
}
.thirtyw-nav .nav-logo {
  display: flex; align-items: center;
  height: 44px; text-decoration: none;
}
.thirtyw-nav .nav-logo img { height: 44px; width: 44px; display: block; }
.thirtyw-nav .nav-links {
  display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0;
}
.thirtyw-nav .nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray);
  text-decoration: none; transition: color 0.2s;
}
.thirtyw-nav .nav-links a:hover { color: var(--cream); }
.thirtyw-nav .nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--blue);
  text-decoration: none; padding: 0.55rem 1.3rem;
  border: 1px solid var(--blue-mid); transition: background 0.2s;
}
.thirtyw-nav .nav-cta:hover { background: var(--blue-mid); }
.thirtyw-nav .nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 0.5rem;
  width: 44px; height: 44px; cursor: pointer;
}
.thirtyw-nav .nav-toggle-bar {
  display: block; width: 26px; height: 2px; margin: 5px auto;
  background: var(--cream); transition: transform 0.25s, opacity 0.2s;
}
.thirtyw-nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.thirtyw-nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.thirtyw-nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.thirtyw-nav .nav-links .nav-links-cta { display: none; }

/* ─── GLOBAL BACKGROUND ─── */
.thirtyw-bg {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 55% 70% at 65% 45%, rgba(0,48,143,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 15% 85%, rgba(0,64,184,0.08) 0%, transparent 60%),
    var(--navy);
  pointer-events: none;
}
.thirtyw-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,48,143,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,48,143,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 55% 40%, black 20%, transparent 75%);
}

/* ─── SECTION UTILITY CLASSES ─── */
/* These wrap editor content and give each section its background/padding */
.thirtyw-hero {
  padding: 4rem 3rem 5rem;
  padding-top: calc(64px + 4rem);
  position: relative;
}
.thirtyw-section {
  padding: 6rem 3rem;
  position: relative;
}
.thirtyw-section-mid  { background: var(--navy-mid); }
.thirtyw-section-dark { background: var(--navy); }
.thirtyw-section-blue { background: var(--blue); }

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

/* ─── TYPOGRAPHY HELPERS ─── */
.label-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-light);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.label-tag::before {
  content: ''; display: block; width: 22px; height: 1px; background: var(--blue-light);
}
.label-tag.centered { justify-content: center; }
.label-tag.centered::before { display: none; }
.label-tag.on-blue { color: rgba(255,255,255,0.6); }

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 1.25rem;
}
.section-body {
  font-size: 0.97rem; font-weight: 300; line-height: 1.78;
  color: var(--gray); max-width: 540px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white) !important; background: var(--blue);
  text-decoration: none !important; padding: 0.85rem 1.9rem;
  border: 1px solid var(--blue-mid);
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); }

.btn-ghost {
  font-size: 0.85rem; font-weight: 500;
  color: var(--cream) !important; text-decoration: none !important;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(232,237,245,0.2); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--blue-light) !important; border-color: var(--blue-light); }
.btn-ghost::after { content: '\2192'; }

.btn-white {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue) !important; background: var(--white);
  text-decoration: none !important; padding: 0.85rem 1.9rem;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  max-width: 1200px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(184,134,42,0.3);
  padding: 0.3rem 0.85rem; margin-bottom: 1.75rem;
  background: rgba(184,134,42,0.06);
}
.hero-badge::before { content: ''; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; }

.hero-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-heading .accent { color: var(--blue-light); display: block; }
.hero-heading p, .hero-heading h1 { margin: 0; font: inherit; color: inherit; }

.hero-sub {
  font-size: 1.02rem; font-weight: 300; line-height: 1.75;
  color: var(--gray); max-width: 460px; margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-phone {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem; letter-spacing: 0.08em; color: var(--text-muted);
}
.hero-phone a { color: var(--cream); text-decoration: none; }

/* Hero stat cards */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 340px; height: 340px; }

.stat-card {
  position: absolute;
  background: rgba(11,28,53,0.95);
  border: 1px solid rgba(0,48,143,0.35);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
}
.stat-card.main { top: 0; left: 0; right: 0; border-top: 2px solid var(--blue); }
.stat-card.float-1 {
  bottom: 50px; right: -20px; width: 185px;
  animation: float1 4s ease-in-out infinite;
  border-top: 2px solid var(--blue-light);
}
.stat-card.float-2 {
  bottom: 0; left: -20px; width: 165px;
  animation: float2 5s ease-in-out infinite;
  border-top: 2px solid var(--gold);
}
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 0.4rem;
}
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: 0.04em; line-height: 1; color: var(--white);
}
.stat-desc { font-size: 0.72rem; color: var(--gray); margin-top: 0.25rem; }

.network-viz { width: 100%; padding: 1rem 0.25rem; display: flex; flex-direction: column; gap: 0.7rem; }
.nv-row { display: flex; align-items: center; gap: 0.75rem; }
.nv-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.nv-dot.green { background: #4ade80; box-shadow: 0 0 5px #4ade80; }
.nv-dot.blue  { background: #60a5fa; box-shadow: 0 0 5px #60a5fa; }
.nv-dot.gold  { background: var(--gold-light); box-shadow: 0 0 5px var(--gold-light); }
.nv-bar-track { flex: 1; height: 3px; background: rgba(255,255,255,0.07); border-radius: 1px; }
.nv-bar-fill  { height: 100%; border-radius: 1px; }
.nv-bar-fill.green { background: #4ade80; width: 92%; }
.nv-bar-fill.blue  { background: #60a5fa; width: 78%; }
.nv-bar-fill.gold  { background: var(--gold-light); width: 65%; }
.nv-text { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--gray); min-width: 64px; text-align: right; }

/* ─── TRUST BAR ─── */
.trust-bar {
  padding: 1.4rem 3rem;
  border-top: 1px solid rgba(0,48,143,0.2);
  border-bottom: 1px solid rgba(0,48,143,0.2);
  display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap;
  background: rgba(11,28,53,0.5);
}
.trust-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.8rem; font-weight: 500; color: var(--gray); white-space: nowrap;
}
.trust-mark {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid rgba(0,48,143,0.45); background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
}
.trust-mark svg { width: 12px; height: 12px; }

/* ─── SERVICES ─── */
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end; margin-bottom: 3.5rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(0,48,143,0.12);
}
.service-card {
  background: var(--navy); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.service-card:hover { background: var(--navy-light); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 4rem; line-height: 1;
  color: rgba(0,48,143,0.15); position: absolute; top: 1rem; right: 1.5rem;
}
.service-icon-block {
  width: 38px; height: 38px; background: var(--blue); margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border-left: 3px solid var(--blue-light);
}
.service-icon-block svg { width: 18px; height: 18px; }
.service-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.86rem; line-height: 1.72; color: var(--gray); font-weight: 300; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-light) !important; text-decoration: none !important;
  margin-top: 1.25rem; transition: gap 0.2s, color 0.2s;
}
.service-link:hover { gap: 0.75rem; color: var(--cream) !important; }

/* ─── PROCESS ─── */
.process-track {
  display: grid; grid-template-columns: repeat(5, 1fr); position: relative;
}
.process-track::before {
  content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,48,143,0.5) 20%, rgba(0,48,143,0.5) 80%, transparent);
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 1rem; position: relative; z-index: 1;
}
.step-num {
  width: 54px; height: 54px; background: var(--navy-mid);
  border: 1px solid rgba(0,48,143,0.45);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--blue-light);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.process-step:hover .step-num { background: var(--blue); border-color: var(--blue-mid); color: var(--white); }
.step-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.78rem; line-height: 1.62; color: var(--gray); font-weight: 300; }

/* ─── WHY PILLARS ─── */
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.why-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(0,48,143,0.1); }
.pillar {
  background: var(--navy-mid); padding: 2rem 1.75rem;
  border-top: 2px solid transparent; transition: background 0.25s, border-color 0.25s;
}
.pillar:hover { background: var(--navy-light); border-color: var(--blue); }
.pillar-marker { width: 28px; height: 3px; background: var(--blue); margin-bottom: 1rem; }
.pillar-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 0.5rem;
}
.pillar-desc { font-size: 0.82rem; line-height: 1.66; color: var(--gray); font-weight: 300; }

/* ─── FAQ ─── */
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,48,143,0.18); padding: 1.5rem 0; }
.faq-q {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; cursor: pointer; font-size: 0.97rem; font-weight: 500;
  color: var(--cream); line-height: 1.5; list-style: none;
}
details[open] .faq-q { color: var(--white); }
.faq-arrow {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid rgba(0,48,143,0.45); background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--blue-light);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
details[open] .faq-arrow { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.faq-a { margin-top: 1rem; font-size: 0.88rem; line-height: 1.78; color: var(--gray); font-weight: 300; }

/* ─── CTA SECTION ─── */
.cta-section {
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '30W'; position: absolute; bottom: -3rem; right: 1rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 18rem; line-height: 1;
  color: rgba(255,255,255,0.04); pointer-events: none; z-index: 0;
}
.cta-section::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px; z-index: 0;
}
.cta-inner { position: relative; z-index: 1; }
.cta-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem); line-height: 0.95; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 1.25rem;
}
.cta-sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.65);
  max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.72;
}
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-phone {
  font-family: 'DM Mono', monospace; font-size: 0.82rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8) !important; text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.3); padding: 0.82rem 1.75rem;
  transition: border-color 0.2s, color 0.2s;
}
.cta-phone:hover { border-color: rgba(255,255,255,0.7); color: var(--white) !important; }

/* ─── FOOTER ─── */
.thirtyw-footer {
  background: var(--navy);
  border-top: 1px solid rgba(0,48,143,0.2);
  padding: 3rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo-wrap { margin-bottom: 1rem; }
.footer-logo-wrap img { height: 64px; width: 64px; display: block; }
.footer-tagline { font-size: 0.82rem; line-height: 1.72; color: var(--text-muted); max-width: 260px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-social a {
  font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray) !important; text-decoration: none !important;
  border: 1px solid rgba(0,48,143,0.3); padding: 0.35rem 0.75rem;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--cream) !important; border-color: rgba(0,48,143,0.7); }
.footer-col h4 {
  font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.84rem; color: var(--gray) !important; text-decoration: none !important; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream) !important; }
.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted) !important; text-decoration: none !important; }

/* ─── BLOCK EDITOR CONTENT STYLES ─── */
/* These make Gutenberg blocks look right inside each section */
.thirtyw-section .wp-block-paragraph { color: var(--gray); font-size: 0.97rem; line-height: 1.78; }
.thirtyw-section .wp-block-heading { color: var(--white); }
.thirtyw-section .wp-block-list { color: var(--gray); padding-left: 1.25rem; }
.thirtyw-section .wp-block-list li { margin-bottom: 0.5rem; line-height: 1.7; }
.thirtyw-section .wp-block-image img { max-width: 100%; height: auto; }
.thirtyw-section .wp-block-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.thirtyw-section .wp-block-button__link {
  font-family: 'DM Mono', monospace; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--blue); color: var(--white); border: 1px solid var(--blue-mid);
  padding: 0.85rem 1.9rem; text-decoration: none; transition: background 0.2s;
}
.thirtyw-section .wp-block-button__link:hover { background: var(--blue-mid); }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(22px);
  animation: fadeUp 0.65s ease forwards;
}
.fade-up:nth-child(1){animation-delay:0.08s}
.fade-up:nth-child(2){animation-delay:0.18s}
.fade-up:nth-child(3){animation-delay:0.28s}
.fade-up:nth-child(4){animation-delay:0.38s}
.fade-up:nth-child(5){animation-delay:0.48s}
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .thirtyw-nav { padding: 0 1.5rem; }
  .thirtyw-nav .nav-toggle { display: block; }
  .thirtyw-nav .nav-cta { display: none; }
  .thirtyw-nav .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(6,15,30,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,48,143,0.3);
    padding: 0.5rem 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .thirtyw-nav.is-open .nav-links { display: flex; }
  .thirtyw-nav .nav-links li { width: 100%; }
  .thirtyw-nav .nav-links a {
    display: block; padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .thirtyw-nav .nav-links .nav-links-cta { display: block; padding: 0.75rem 1.5rem; }
  .thirtyw-nav .nav-links .nav-links-cta a {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white); background: var(--blue);
    text-align: center; padding: 0.75rem 1.3rem;
    border: 1px solid var(--blue-mid);
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-header { grid-template-columns: 1fr; gap: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-track::before { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-bar { gap: 1.5rem; padding: 1.25rem 1.5rem; }
  .thirtyw-section { padding: 4rem 1.5rem; }
  .thirtyw-hero { padding: 4rem 1.5rem; padding-top: calc(64px + 3rem); }
}

/* ─── INNER PAGES (Contact, About, Team, etc.) ─── */
.thirtyw-page-wrap {
  min-height: 100vh;
  padding: calc(64px + 4rem) 3rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}
.thirtyw-page-inner {
  position: relative; z-index: 1;
}
.thirtyw-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1; letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--blue);
}
.thirtyw-page-content {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}
.thirtyw-page-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.04em;
  color: var(--white); margin: 2rem 0 0.75rem;
}
.thirtyw-page-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.04em;
  color: var(--white); margin: 1.5rem 0 0.5rem;
}
.thirtyw-page-content p { margin-bottom: 1.25rem; }
.thirtyw-page-content a { color: var(--blue-light); text-decoration: none; }
.thirtyw-page-content a:hover { color: var(--cream); }
.thirtyw-page-content ul, .thirtyw-page-content ol {
  padding-left: 1.5rem; margin-bottom: 1.25rem;
}
.thirtyw-page-content li { margin-bottom: 0.5rem; }
.thirtyw-page-content strong { color: var(--cream); font-weight: 600; }

/* WPForms styling to match theme */
.thirtyw-page-content .wpforms-container {
  margin-top: 2rem;
}
.thirtyw-page-content .wpforms-field-label {
  font-family: 'DM Mono', monospace !important;
  font-size: 0.72rem !important; letter-spacing: 0.12em !important;
  text-transform: uppercase !important; color: var(--blue-light) !important;
  margin-bottom: 0.4rem !important;
}
.thirtyw-page-content .wpforms-field input,
.thirtyw-page-content .wpforms-field textarea,
.thirtyw-page-content .wpforms-field select {
  background: var(--navy-mid) !important;
  border: 1px solid rgba(0,48,143,0.4) !important;
  color: var(--cream) !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
}
.thirtyw-page-content .wpforms-field input:focus,
.thirtyw-page-content .wpforms-field textarea:focus {
  border-color: var(--blue) !important;
  outline: none !important;
  box-shadow: none !important;
}
.thirtyw-page-content .wpforms-submit {
  font-family: 'DM Mono', monospace !important;
  font-size: 0.78rem !important; font-weight: 500 !important;
  letter-spacing: 0.1em !important; text-transform: uppercase !important;
  color: var(--white) !important; background: var(--blue) !important;
  border: 1px solid var(--blue-mid) !important;
  padding: 0.85rem 1.9rem !important; border-radius: 0 !important;
  cursor: pointer !important; transition: background 0.2s !important;
}
.thirtyw-page-content .wpforms-submit:hover { background: var(--blue-mid) !important; }

@media (max-width: 960px) {
  .thirtyw-page-wrap { padding: calc(64px + 2rem) 1.5rem 4rem; }
}

/* ─── OUR COMPANIES PAGE ─── */
.companies-hero {
  padding: calc(64px + 5rem) 3rem 4rem;
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}
.companies-hero-inner { max-width: 700px; }
.companies-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 1.25rem;
}
.companies-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: var(--gray); max-width: 560px;
}

.companies-section {
  padding: 0 3rem 6rem;
  position: relative; z-index: 1;
}
.companies-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.5rem;
}

/* Company Card */
.company-card {
  background: var(--navy-mid);
  border: 1px solid rgba(0,48,143,0.2);
  display: grid; grid-template-columns: 1fr 280px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.company-card:hover { border-color: rgba(0,48,143,0.5); }

.company-card--primary {
  border-color: rgba(0,48,143,0.4);
}

.company-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
}

.company-card-body {
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  position: relative; z-index: 1;
}

.company-meta {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.company-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid rgba(0,48,143,0.4);
  padding: 0.2rem 0.6rem;
  background: var(--blue-pale);
}
.company-est {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--text-muted);
}

.company-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  letter-spacing: 0.03em; line-height: 1;
  color: var(--white); margin-bottom: 0.35rem;
}
.company-dba {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--blue-light); margin-bottom: 1.25rem;
}
.company-desc {
  font-size: 0.9rem; font-weight: 300; line-height: 1.75;
  color: var(--gray); margin-bottom: 1.5rem; max-width: 560px;
}

.company-services {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem;
}
.company-services li {
  font-size: 0.82rem; color: var(--gray); font-weight: 300;
  padding-left: 1rem; position: relative;
}
.company-services li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--blue-light); font-size: 0.7rem;
}

.company-actions {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}

/* Company stat sidebar */
.company-card-side {
  background: var(--navy);
  border-left: 1px solid rgba(0,48,143,0.2);
  padding: 2.5rem 2rem;
  display: flex; align-items: center;
}
.company-stat-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(0,48,143,0.12); width: 100%;
}
.csb-item {
  background: var(--navy);
  padding: 1.1rem 1rem;
  transition: background 0.2s;
}
.csb-item:hover { background: var(--navy-light); }
.csb-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.3rem;
}
.csb-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: 0.05em;
  color: var(--white);
}

/* LLC note section */
.companies-llc-section {
  background: var(--navy-mid);
  padding: 4rem 3rem;
  position: relative; z-index: 1;
  border-top: 1px solid rgba(0,48,143,0.15);
}
.companies-llc-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.companies-llc-text {
  font-size: 0.92rem; font-weight: 300; line-height: 1.8;
  color: var(--gray); margin-top: 1rem;
}
.companies-llc-text strong { color: var(--cream); font-weight: 500; }

/* Responsive */
@media (max-width: 960px) {
  .companies-hero { padding: calc(64px + 3rem) 1.5rem 3rem; }
  .companies-section { padding: 0 1.5rem 4rem; }
  .company-card { grid-template-columns: 1fr; }
  .company-card-side { border-left: none; border-top: 1px solid rgba(0,48,143,0.2); }
  .company-services { grid-template-columns: 1fr; }
  .companies-llc-section { padding: 3rem 1.5rem; }
}
