/* ============================================================
   PalMultimedia — Main Stylesheet (Navy + Amber edition)
   Adapted from reference design
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --brand: #e8873a;
  --brand-dark: #d4732a;
  --brand-light: rgba(232,135,58,0.1);
  --dark: #0f172a;
  --dark2: #1e293b;
  --navy: #1a2e4a;
  --navy-light: #243d62;
  --mid: #334155;
  --muted: #64748b;
  --light: #f8f9fb;
  --border: #e2e8f0;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15,23,42,0.08);
  --shadow-md: 0 8px 40px rgba(15,23,42,0.12);
  --transition: 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--mid);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem,5vw,3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; }
p { color: var(--mid); margin-bottom: 1rem; }
a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-dark); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin: 8px 0 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 4px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: var(--white) !important;
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(232,135,58,0.35);
}
.btn-primary:hover {
  background: var(--brand-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,135,58,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--brand) !important;
  padding: 14px 28px;
  font-size: 1rem;
  border: 2px solid var(--brand);
}
.btn-secondary:hover { background: var(--brand-light); }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; }
.btn-white {
  background: var(--white);
  color: var(--navy) !important;
  padding: 14px 28px;
  font-size: 1rem;
}
.btn-ghost {
  background: transparent;
  color: var(--white) !important;
  padding: 14px 28px;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ============================================================
   SITE HEADER — Always visible, navy
   ============================================================ */
.site-header,
#masthead,
header#masthead,
.site-header-inner {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: var(--navy) !important;
  box-shadow: 0 2px 20px rgba(15,23,42,0.2) !important;
}

/* Logo white */
.site-title a,
.site-branding .site-title a,
#masthead .site-title a,
.site-header .site-title a,
.custom-logo-link {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1.35rem !important;
  letter-spacing: -0.02em !important;
  text-decoration: none !important;
}

/* Nav links white */
.site-header a,
.main-navigation a,
.primary-navigation a,
#site-navigation a,
.kadence-navigation a,
.header-navigation a {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--transition);
}
.site-header a:hover,
.main-navigation a:hover,
.primary-navigation a:hover,
#site-navigation a:hover,
.kadence-navigation a:hover {
  color: var(--brand) !important;
}

/* Dropdown */
.sub-menu {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-md) !important;
}
.sub-menu a { color: var(--navy) !important; padding: 0.6rem 1rem !important; }
.sub-menu a:hover { color: var(--brand) !important; background: var(--light) !important; }

/* ============================================================
   HIDE PAGE TITLE "HOME" — CSS only, don't touch header
   ============================================================ */
.entry-hero,
.entry-hero .entry-header,
.entry-hero .entry-title,
.kadence-page-title-wrap,
.kadence-page-title-inner,
h1.entry-title,
.page h1.entry-title,
.singular .entry-header,
.page .entry-header,
.content-area .entry-header,
#primary .entry-header,
.site-main .entry-header {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Remove white gap above first content block */
.site-main, #main, .content-area, #primary,
.entry-content, .wp-block-post-content,
.page .entry-content, .singular .entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
  max-width: 100% !important;
}

/* No sidebar */
#secondary, .widget-area { display: none !important; }
#primary.content-area { float: none !important; width: 100% !important; }

/* ============================================================
   HOME PAGE — Custom pm-* classes
   ============================================================ */

/* ---- HERO ---- */
.pm-home { font-family: var(--font); }

.pm-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1a2e4a 55%, #1e3a8a 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.pm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.pm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.pm-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.pm-hero h1, .pm-hero .pm-hero-h1 {
  color: var(--white);
  font-size: clamp(2.2rem,4.5vw,3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.pm-hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* Tick points in hero */
.pm-hero-ticks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto 36px;
  text-align: left;
}
.pm-hero-tick {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 11px 16px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 0.97rem;
}

.pm-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pm-hero-microcopy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

.pm-hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pm-trust-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 8px;
}

/* ---- STATS BAND ---- */
.pm-stats-band, .stats-band {
  background: var(--dark);
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  padding: 52px 0;
}

.pm-stats-grid, .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  gap: 0;
}

.pm-stat, .stat {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.pm-stat:last-child, .stat:last-child { border-right: none; }

.pm-stat-num, .stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.pm-stat-label, .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- CHALLENGE / PAIN CARDS ---- */
.pm-section, .pain, .usp, .services, .who, .results, .about, .process, .contact {
  padding: 90px 0;
}
.pm-section-light, .usp, .services, .who, .contact { background: var(--light); }
.pm-section-white, .pain, .results, .about { background: var(--white); }

.pm-section-header, .section-header { text-align: center; margin-bottom: 52px; }

.pm-label-chip, .section-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.pm-section-h2 {
  color: var(--navy);
  font-size: clamp(1.6rem,3vw,2.3rem);
  font-weight: 700;
  margin: 8px auto 14px;
  max-width: 780px;
  line-height: 1.2;
}

.pm-section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Pain/challenge cards */
.pm-grid-3, .pain-grid, .usp-grid, .who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.pm-card, .pain-card, .usp-card, .who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.pm-card:hover, .pain-card:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light), var(--shadow);
  transform: translateY(-3px);
}

.pm-card-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.pm-card-title, .pain-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.pm-card-body, .pain-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ---- SERVICE CARDS ---- */
.pm-grid-4, .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card--featured {
  border-color: var(--brand);
  background: linear-gradient(135deg, #fff8f3, #fff1e6);
}
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { color: var(--navy); margin-bottom: 4px; }
.service-tag { font-size: 0.82rem; color: var(--brand); font-weight: 600; margin-bottom: 14px; display: block; }
.service-card ul { display: flex; flex-direction: column; gap: 7px; }
.service-card ul li {
  font-size: 0.87rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}
.service-expert { margin-top: 14px; font-size: 0.8rem; padding: 7px 12px; border-radius: 6px; font-weight: 500; background: var(--brand-light); color: var(--brand); display: inline-block; }

/* ---- AI SECTION ---- */
.pm-ai-section, .ai-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a2e4a 50%, #1e3a8a 100%);
  color: var(--white);
  padding: 90px 0;
}
.pm-ai-badge, .ai-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}
.pm-ai-section h2, .ai-section h2 { color: var(--white); max-width: 640px; margin: 0 auto 14px; }
.pm-ai-sub, .ai-sub { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto 50px; font-size: 1.03rem; text-align: center; }

.pm-ai-cols, .ai-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto 36px;
  padding: 0 24px;
}
.pm-ai-col, .ai-col {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  padding: 26px;
  transition: background var(--transition), transform var(--transition);
}
.pm-ai-col:hover, .ai-col:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
  border-color: rgba(232,135,58,0.4);
}
.pm-ai-col h3, .ai-col h4 { color: var(--white); margin: 0 0 8px; font-size: 1rem; }
.pm-ai-col p, .ai-col p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin: 0; line-height: 1.65; }
.pm-ai-col-icon, .ai-col-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.pm-ai-footer, .ai-note { color: rgba(255,255,255,0.45); font-size: 0.85rem; font-style: italic; text-align: center; margin: 0; }

/* Testimonials in AI section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 24px;
  padding: 0 24px;
}
.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px;
}
.testimonial .quote { color: rgba(255,255,255,0.9); font-size: 0.97rem; line-height: 1.6; margin: 0 0 10px; font-style: italic; }
.testimonial .meta { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin: 0; }

/* ---- PROCESS ---- */
.pm-process-section, .process { background: var(--dark); color: var(--white); padding: 90px 0; }
.pm-process-section .pm-section-h2, .process .section-header h2 { color: var(--white); }
.pm-process-section .pm-section-sub, .process .section-header p { color: rgba(255,255,255,0.55); }

.pm-process-grid, .process-steps {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.pm-step, .process-step {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.pm-step-num, .step-num {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 14px;
}

.pm-step h3, .process-step h3 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.pm-step p, .process-step p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; margin: 0; }

.process-arrow { font-size: 1.6rem; color: rgba(255,255,255,0.2); padding-top: 40px; flex-shrink: 0; }

/* ---- WHO WE HELP ---- */
.pm-grid-2, .who-grid { grid-template-columns: repeat(3, 1fr); }
.who-card { display: flex; gap: 14px; align-items: flex-start; }
.who-card span { font-size: 1.5rem; flex-shrink: 0; }
.who-card p { color: var(--dark2); font-weight: 500; margin: 0; font-size: 0.93rem; }

/* ---- OUTCOMES / RESULTS ---- */
.pm-outcomes-inner, .results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.result-item, .pm-outcome-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
.result-icon {
  width: 26px;
  height: 26px;
  background: rgba(232,135,58,0.12);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.result-item p { color: var(--dark2); font-weight: 500; margin: 0; font-size: 0.9rem; }

/* Quote cards */
.pm-quote, .pm-quotes { margin-bottom: 0; }
.pm-quote {
  background: var(--white);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}
.pm-quote .quote-text { color: var(--navy); font-size: 0.93rem; line-height: 1.65; font-style: italic; margin: 0 0 8px; }
.pm-quote .quote-attr { color: var(--muted); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- MID CTA / FINAL CTA ---- */
.pm-cta-section, .mid-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, #1e3a8a 100%);
  color: var(--white);
  padding: 90px 0;
}
.pm-cta-inner, .mid-cta-inner { text-align: center; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.pm-cta-h2, .mid-cta h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.8rem,3vw,2.5rem); }
.pm-cta-sub, .mid-cta p { color: rgba(255,255,255,0.72); margin-bottom: 30px; font-size: 1.03rem; }
.pm-cta-btns, .cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.mid-cta .btn-secondary { border-color: rgba(255,255,255,0.4); color: var(--white) !important; }
.mid-cta .btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* Trust band */
.trust-band { background: var(--dark2); padding: 30px 0; }
.trust-band-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; padding: 0 24px; }
.trust-item { color: rgba(255,255,255,0.5); font-size: 0.85rem; font-weight: 500; }

/* ---- ABOUT SECTION ---- */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.about-text h2 { margin: 10px 0 18px; }
.about-text p { margin-bottom: 14px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.about-badge { background: var(--brand-light); color: var(--brand); font-size: 0.78rem; font-weight: 600; padding: 5px 13px; border-radius: 100px; }
.about-visual { display: flex; flex-direction: column; gap: 14px; }
.about-card { background: var(--dark); border-radius: var(--radius); padding: 26px 30px; display: flex; align-items: center; gap: 22px; }
.about-card-stat { font-size: 1.7rem; font-weight: 800; color: var(--brand); line-height: 1; white-space: nowrap; min-width: 80px; }
.about-card-label { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.4; }

/* ---- CONTACT SECTION ---- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.contact-text h2 { margin: 10px 0 18px; }
.contact-text p { margin-bottom: 18px; }
.contact-bullets { display: flex; flex-direction: column; gap: 9px; }
.contact-bullets li { color: var(--dark2); font-weight: 500; font-size: 0.93rem; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-md); }
.contact-form h3 { margin-bottom: 22px; font-size: 1.12rem; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--dark2); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font); font-size: 0.95rem; color: var(--dark); transition: border-color var(--transition), box-shadow var(--transition); background: var(--white); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 10px; }

/* CF7 forms */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--font); font-size: 0.95rem; color: var(--dark); background: var(--white);
  transition: all var(--transition); outline: none; margin-bottom: 12px;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }
.wpcf7-form textarea { min-height: 120px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  background: var(--brand) !important; color: white !important; border: none !important;
  padding: 13px 28px !important; border-radius: 8px !important; font-weight: 700 !important;
  font-size: 1rem !important; cursor: pointer !important; width: 100%;
  box-shadow: 0 4px 14px rgba(232,135,58,0.35) !important; transition: all var(--transition) !important;
}
.wpcf7-form input[type="submit"]:hover { background: var(--brand-dark) !important; transform: translateY(-2px) !important; }

/* ---- FOOTER ---- */
.site-footer, #colophon { background: var(--dark) !important; color: rgba(255,255,255,0.75) !important; padding: 3rem 0 0 !important; }
.site-footer a, #colophon a { color: rgba(255,255,255,0.5) !important; font-size: 0.88rem; }
.site-footer a:hover, #colophon a:hover { color: var(--brand) !important; }
.site-info { color: rgba(255,255,255,0.3) !important; font-size: 0.8rem !important; text-align: center; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08) !important; margin-top: 2rem; }

/* ---- FULL WIDTH ---- */
.entry-content, .wp-block-post-content, .page-content { max-width: 100% !important; width: 100% !important; padding: 0 !important; }
.wp-block-cover, .wp-block-group { max-width: 100% !important; width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .pm-grid-4, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section, .pm-section { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .pm-stats-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-grid-3, .pain-grid, .usp-grid, .who-grid, .pm-ai-cols, .ai-cols { grid-template-columns: 1fr; }
  .pm-grid-4, .services-grid { grid-template-columns: 1fr; }
  .pm-outcomes-inner, .results-grid { grid-template-columns: 1fr; }
  .process-steps, .pm-process-grid { flex-direction: column; }
  .process-arrow { display: none; }
  .pm-hero-ctas, .cta-buttons { flex-direction: column; align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pm-stats-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .pm-hero { padding: 70px 0 60px; }
}
