/*
Theme Name: 21st Century Marketing
Theme URI: https://www.21stcenturymarketing.co.uk
Author: 21st Century Marketing
Author URI: https://www.21stcenturymarketing.co.uk
Description: Modern AI marketing theme for 21st Century Marketing. Built for speed, AEO and mobile-first performance.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: 21cm
*/

/* ════════════════════════════════════════════
   CSS VARIABLES
════════════════════════════════════════════ */
:root {
  --sky: #ddf1fb;
  --sky-mid: #c7e9f8;
  --sky-deep: #a8d8f0;
  --blue: #0284c7;
  --blue-bright: #0ea5e9;
  --blue-vivid: #38bdf8;
  --orange: #f5501e;
  --orange-light: #ff7043;
  --purple: #7c3aed;
  --teal: #0369a1;
  --white: #ffffff;
  --off-white: #f0faff;
  --text-muted: #4a7fa5;
  --text-body: #1e4976;
  --text-dark: #0c2340;
  --border: rgba(2,132,199,0.18);
  --card-bg: rgba(255,255,255,0.75);
  --card-bg-hover: rgba(255,255,255,0.95);
  --gradient-brand: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 50%, #f5501e 100%);
  --gradient-hero: linear-gradient(160deg, #ddf1fb 0%, #bae6fd 55%, #e0d9f8 100%);
  --gradient-section-alt: linear-gradient(180deg, #c7e9f8 0%, #ddf1fb 100%);
}

/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (max-width: 359px) { html { font-size: 14px; } }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--sky);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

/* ════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
════════════════════════════════════════════ */
.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.6rem;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(2,132,199,0.1);
  padding: 0 1.25rem;
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 4px 24px rgba(2,132,199,0.15); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo picture { display: flex; align-items: center; }
.nav-logo img { height: 62px; width: auto !important; max-width: none; }

.nav-links { display: none; gap: 1.75rem; align-items: center; }

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.current-menu-item,
.nav-links a.current_page_item { color: var(--blue); }

/* ── NAV CTA BUTTON (desktop) ── */
.nav-cta {
  display: none;
  position: relative;
  background: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 60%, #f5501e 100%) !important;
  color: #ffffff !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 50px !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(14,165,233,0.25), 0 4px 15px rgba(14,165,233,0.45), 0 8px 30px rgba(124,58,237,0.2);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: cta-shimmer 3s infinite;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 0 2px rgba(14,165,233,0.4), 0 6px 20px rgba(14,165,233,0.6), 0 12px 40px rgba(124,58,237,0.3);
  color: #ffffff !important;
}

@keyframes cta-shimmer {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}

/* ── NAV CTA BUTTON (mobile) ── */
.nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  background: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 60%, #f5501e 100%);
  color: #ffffff !important;
  padding: 0.6rem 1.15rem;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(14,165,233,0.25), 0 4px 15px rgba(14,165,233,0.45), 0 8px 30px rgba(124,58,237,0.2);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-cta-mobile::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: cta-shimmer 3s infinite;
}

.nav-cta-mobile:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 0 2px rgba(14,165,233,0.4), 0 6px 20px rgba(14,165,233,0.6), 0 12px 40px rgba(124,58,237,0.3);
  color: #ffffff !important;
}

.nav-cta-mobile:active { transform: translateY(0) scale(0.98); }

.btn-icon { font-size: 0.9rem; display: inline-block; transition: transform 0.2s; }
.nav-cta-mobile:hover .btn-icon,
.nav-cta:hover .btn-icon { transform: translateX(3px); }

/* ── HAMBURGER ── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.8);
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  transition: all 0.2s;
}

.hamburger:hover { background: white; border-color: var(--blue); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(2,132,199,0.12);
  padding: 1.5rem 1.25rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu a::after { content: '›'; font-size: 1.3rem; color: var(--blue); opacity: 0.5; }
.mobile-menu a:hover { color: var(--blue); padding-left: 0.35rem; }
.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu a.mobile-cta {
  margin-top: 0.75rem;
  background: var(--gradient-brand);
  color: white !important;
  padding: 0.9rem 1.25rem;
  border-radius: 8px;
  border: none;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(14,165,233,0.35);
}

.mobile-menu a.mobile-cta::after { display: none; }
.mobile-menu a.mobile-cta:hover { padding-left: 0; opacity: 0.92; }

/* ════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; }

.site-main { padding-top: 76px; }

section { padding: 3.5rem 1.1rem; scroll-margin-top: 76px; }
@media (min-width: 480px) { section { padding: 4.5rem 1.5rem; } }
@media (min-width: 768px) { section { padding: 6rem 2rem; } }
@media (min-width: 1200px) { section { padding: 7rem 2rem; } }

.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; color: var(--text-dark); }
.section-header p { font-size: 1.1rem; color: var(--text-body); max-width: 640px; }

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}

@media (min-width: 380px) { .btn { width: auto; } }

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(14,165,233,0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(14,165,233,0.5); color: white; }

.btn-outline {
  background: transparent;
  color: var(--blue);
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  border: 2px solid rgba(2,132,199,0.4);
}

.btn-outline:hover { border-color: var(--blue); background: rgba(14,165,233,0.08); transform: translateY(-2px); }

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 88px 1.25rem 4rem;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 0;
}

#hero::before {
  content: '';
  position: absolute;
  top: -10%; left: -5%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(14,165,233,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(2,132,199,0.25);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-eyebrow span { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; display: block; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-content h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); margin-bottom: 0.5rem; line-height: 1; color: var(--text-dark); }

.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content > p { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-body); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7; }

.hero-btns { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.5rem; }
@media (min-width: 380px) { .hero-btns { flex-direction: row; flex-wrap: wrap; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat { background: rgba(255,255,255,0.6); border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem 0.5rem; text-align: center; }

.hero-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.hero-stat span { font-size: clamp(0.65rem, 1.8vw, 0.8rem); color: var(--text-body); line-height: 1.3; display: block; }

.hero-visual { display: flex; align-items: center; justify-content: center; }

.hero-logo-wrap {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(2,132,199,0.2);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(2,132,199,0.18);
  max-width: 340px;
  width: 100%;
  padding: 2.5rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════ */
.marquee-section {
  padding: 1.5rem 0;
  background: linear-gradient(90deg, #0284c7, #0ea5e9);
  overflow: hidden;
  scroll-margin-top: 0;
}

.marquee-track { display: flex; gap: 3rem; animation: marquee 25s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-item::after { content: '◆'; color: rgba(255,255,255,0.5); font-size: 0.5rem; }

/* ════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════ */
#problem { background: var(--gradient-section-alt); }

.modern-needs-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.modern-needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.need-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: var(--text-body); }
.need-item .check { color: var(--blue); font-size: 1.1rem; }

.problem-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 0; }

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  box-shadow: 0 2px 16px rgba(2,132,199,0.07);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover { border-color: rgba(14,165,255,0.3); transform: translateY(-4px); }

.problem-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.problem-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.problem-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.6; margin: 0; }

/* ════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════ */
#services { background: var(--sky); }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(2,132,199,0.07);
}

.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gradient-brand); transform: scaleX(0); transition: transform 0.3s; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(14,165,255,0.25); transform: translateY(-4px); }

.service-icon { font-size: 2rem; width: 56px; height: 56px; background: rgba(14,165,255,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.service-card h3 { font-size: 1.4rem; color: var(--text-dark); }
.service-card p { font-size: 0.95rem; color: var(--text-body); flex: 1; line-height: 1.6; margin: 0; }

.service-link { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.service-link:hover { gap: 0.7rem; }

/* ════════════════════════════════════════════
   AEO SECTION
════════════════════════════════════════════ */
#aeo { background: var(--gradient-section-alt); position: relative; overflow: hidden; }
#aeo::before { content: ''; position: absolute; top: -20%; right: -10%; width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%); border-radius: 50%; }

.aeo-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.aeo-content h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.5rem; color: var(--text-dark); }
.aeo-content p { color: var(--text-body); margin-bottom: 1.25rem; line-height: 1.7; font-size: 1rem; }

.aeo-platforms { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; margin-bottom: 1.5rem; }

.platform-pill { background: rgba(2,132,199,0.08); border: 1px solid rgba(2,132,199,0.2); border-radius: 100px; padding: 0.4rem 1rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; color: var(--blue); }

.aeo-visual { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; box-shadow: 0 4px 24px rgba(2,132,199,0.1); }

.aeo-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.compare-col { padding: 1.25rem; border-radius: 12px; }
.compare-col.old { background: rgba(255,80,30,0.06); border: 1px solid rgba(255,80,30,0.15); }
.compare-col.new { background: rgba(14,165,255,0.06); border: 1px solid rgba(14,165,255,0.2); }
.compare-col h4 { font-size: 1rem; margin-bottom: 1rem; }
.compare-col.old h4 { color: var(--orange); }
.compare-col.new h4 { color: var(--blue); }
.compare-col li { font-size: 0.85rem; color: var(--text-body); padding: 0.35rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; }
.compare-col li:last-child { border-bottom: none; }
.compare-col li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.compare-col.old li::before { background: var(--orange); }
.compare-col.new li::before { background: var(--blue); }

/* ════════════════════════════════════════════
   INDUSTRIES
════════════════════════════════════════════ */
#industries { background: var(--sky); }

.industries-wrap { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.industry-tag { background: rgba(255,255,255,0.7); border: 1px solid rgba(2,132,199,0.2); border-radius: 100px; padding: 0.6rem 1.25rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text-body); transition: all 0.2s; cursor: default; }
.industry-tag:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ════════════════════════════════════════════
   WHY US
════════════════════════════════════════════ */
#why { background: var(--gradient-section-alt); }

.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3rem; }

.why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: rgba(255,255,255,0.7); border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(2,132,199,0.07); transition: all 0.2s; }
.why-item:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(2,132,199,0.15); }

.why-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 900; line-height: 1; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; flex-shrink: 0; width: 2.5rem; }
.why-item h3 { font-size: 1.2rem; margin-bottom: 0.35rem; color: var(--text-dark); }
.why-item p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; margin: 0; }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
#faq { background: var(--sky); }

.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; color: var(--text-dark); font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.01em; transition: color 0.2s; }
.faq-question:hover { color: var(--blue); }

.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(2,132,199,0.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.3s; color: var(--blue); }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--blue); background: var(--blue); color: white; }

.faq-answer { display: none; padding-bottom: 1.25rem; color: var(--text-body); font-size: 0.95rem; line-height: 1.7; max-width: 760px; }
.faq-item.open .faq-answer { display: block; }

/* ════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════ */
#cta { background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); }

.cta-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.cta-left h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: white; margin-bottom: 1rem; line-height: 1.1; }
.cta-left p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }

.cta-checklist { list-style: none; margin: 0; padding: 0; }
.cta-checklist li { color: rgba(255,255,255,0.9); font-size: 0.95rem; padding: 0.4rem 0; display: flex; align-items: center; gap: 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.12); font-family: 'Barlow', sans-serif; }
.cta-checklist li:last-child { border-bottom: none; }

.cta-form-wrap { background: white; border-radius: 16px; padding: 2rem 1.75rem; box-shadow: 0 8px 40px rgba(0,0,0,0.2); }
.cta-form-wrap h3 { font-size: 1.6rem; color: var(--text-dark); margin-bottom: 0.35rem; }
.cta-form-wrap > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.cta-form-row { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.cta-form-group { margin-bottom: 0.75rem; }

.cta-form-group input,
.cta-form-group select,
.cta-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--sky);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.cta-form-group input:focus,
.cta-form-group select:focus,
.cta-form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(2,132,199,0.1); }

.cta-form-group textarea { resize: vertical; min-height: 90px; }

.cta-submit-btn { width: 100%; padding: 0.95rem; background: var(--gradient-brand); color: white; border: none; border-radius: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 16px rgba(14,165,233,0.3); margin-top: 0.25rem; }
.cta-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,0.45); }

.cta-disclaimer { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }
.cta-disclaimer a { color: var(--blue); text-decoration: underline; }

.cta-success { display: none; text-align: center; padding: 2rem 1rem; }
.cta-success.show { display: block; }
.cta-tick { width: 56px; height: 56px; background: var(--gradient-brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; margin: 0 auto 1rem; }
.cta-success h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.cta-success p { font-size: 0.93rem; color: var(--text-muted); margin: 0; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer { background: #0c2d4a; padding: 3rem 1.1rem 2rem; }

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

.footer-top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }

.footer-brand img { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 300px; margin: 0; }

.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #38bdf8; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.55); padding: 0.3rem 0; transition: color 0.2s; }
.footer-col a:hover { color: white; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }

.footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: white; }

/* ════════════════════════════════════════════
   FADE-IN ANIMATIONS
════════════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════ */
@media (min-width: 500px) { .services-grid { grid-template-columns: 1fr 1fr; } }

@media (min-width: 640px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  nav { padding: 0 2rem; }
  .site-footer { padding: 4rem 2rem 2rem; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .nav-cta-mobile { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .aeo-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .cta-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .cta-form-row { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════
   WORDPRESS SPECIFIC
════════════════════════════════════════════ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 0.5rem; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.wp-block-image { margin-bottom: 1.5rem; }

/* Page/post content padding */
.entry-content { padding-top: 76px; max-width: 860px; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.entry-content p,
.entry-content li { color: var(--text-body); line-height: 1.75; }
.entry-content h2 { font-size: 1.8rem; margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.4rem; margin: 1.5rem 0 0.75rem; color: var(--blue); }
.entry-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.entry-content ol { padding-left: 1.5rem; list-style: decimal; margin-bottom: 1rem; }
.entry-content a { color: var(--blue); text-decoration: underline; }
