/* =============================================
   Digital Marketing Tampa — style.css
   Navy #1a2744 + Orange #f97316 + White
   ============================================= */

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

:root {
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --navy-mid: #243356;
  --orange: #f97316;
  --orange-dark: #ea6c10;
  --white: #ffffff;
  --text: #1e2738;
  --text-light: #555;
  --bg-light: #f7f9fc;
  --border: #e2e8f0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
  background: var(--navy);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.logo-link { text-decoration: none; }

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #fff;
  white-space: nowrap;
}

.logo-text .accent { color: var(--orange); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  color: #c8d5ee;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }

.site-nav .nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 8px;
  transition: background 0.2s;
}

.site-nav .nav-cta:hover { background: var(--orange-dark); text-decoration: none; }

.header-phone {
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover { color: #fdba74; text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* =============================================
   SITE FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-dark);
  color: #9ab0cc;
  padding: 60px 20px 24px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e2f4a;
}

.footer-col strong {
  display: block;
  color: #fff;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
}

.footer-col p { font-size: 14px; line-height: 1.9; }

.footer-col a { color: #7baad4; text-decoration: none; }
.footer-col a:hover { color: var(--orange); text-decoration: none; }

.footer-bottom {
  max-width: 1160px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 13px;
  color: #556a82;
}

.footer-bottom p { margin-bottom: 6px; }

.footer-disclaimer {
  font-size: 11px;
  color: #445566;
  max-width: 720px;
  margin: 10px auto 0;
  line-height: 1.6;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(249,115,22,0.5);
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}

.btn-secondary-hero {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary-hero:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  text-decoration: none;
}

/* =============================================
   HERO — HOMEPAGE
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero-animated-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1a2e 0%, #1a2744 35%, #1e3a5f 65%, #0f1a2e 100%);
  background-size: 400% 400%;
  animation: gradientShift 14s ease infinite;
  z-index: 0;
}

.hero-animated-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(249,115,22,0.12) 0%, transparent 60%);
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: #fdba74;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  letter-spacing: -1px;
}

.subhead {
  font-size: 22px;
  margin-bottom: 36px;
  opacity: 0.9;
  line-height: 1.55;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 8px 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #93b5d6;
  font-weight: 500;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 20px;
  overflow: hidden;
}

.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #a8c5e0;
}

/* =============================================
   GENERIC SECTION
   ============================================= */
.section {
  padding: 88px 24px;
}

.section h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-sub {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

/* =============================================
   BENEFITS SECTION — HOMEPAGE
   ============================================= */
.benefits-section { background: var(--bg-light); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  border-top: 4px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.12);
}

.benefit-card--featured {
  border-top-color: var(--orange);
}

.benefit-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.benefit-icon { font-size: 42px; margin-bottom: 16px; }

.benefit-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.benefit-stat {
  font-size: 14px;
  color: var(--navy-mid);
  background: rgba(26,39,68,0.06);
  border-radius: 6px;
  padding: 10px 14px;
  margin-top: 12px;
}

.benefit-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.benefit-link:hover { text-decoration: underline; }

/* =============================================
   TRADES SECTION
   ============================================= */
.trades-section { background: #fff; }

.trades-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.trade-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
}

.trade-item:hover {
  background: rgba(249,115,22,0.08);
  border-color: rgba(249,115,22,0.4);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: var(--bg-light); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.step {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p { font-size: 15px; color: var(--text-light); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: #fff; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 32px 28px;
  border-left: 4px solid var(--border);
  position: relative;
}

.testimonial-card--featured {
  border-left-color: var(--orange);
  background: #fff8f3;
}

.stars { font-size: 20px; margin-bottom: 16px; }

.testimonial-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

/* =============================================
   TOOLS PREVIEW — HOMEPAGE
   ============================================= */
.tools-preview-section { background: var(--bg-light); }

.tools-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.tool-preview {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.tool-preview:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(249,115,22,0.15);
  transform: translateY(-2px);
}

/* =============================================
   ROI CALLOUT — HOMEPAGE
   ============================================= */
.roi-callout {
  background: var(--navy);
  padding: 72px 24px;
  color: #fff;
}

.roi-callout-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.roi-callout-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  text-align: left;
  margin-bottom: 16px;
}

.roi-callout-text p {
  font-size: 17px;
  color: #93b5d6;
  margin-bottom: 12px;
  line-height: 1.6;
}

.roi-callout-cta { text-align: center; flex-shrink: 0; }

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 24px;
  color: #fff;
}

/* =============================================
   PAGE HERO — INNER PAGES
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: #fff;
  padding: 80px 24px 72px;
  text-align: center;
}

.page-hero-badge {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: #fdba74;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.page-hero-sub {
  font-size: 20px;
  color: #93b5d6;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =============================================
   TOOLS PAGE
   ============================================= */
.tools-section { background: #fff; }

.tools-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 24px 28px;
  background: var(--bg-light);
  border-radius: 10px;
  border-left: 4px solid var(--orange);
  font-size: 17px;
  color: var(--text);
  line-height: 1.65;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.tool-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.15s;
  position: relative;
}

.tool-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.tool-card--featured {
  border-color: var(--orange);
  border-width: 2px;
  background: #fff8f3;
}

.tool-hot-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--orange);
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.tool-icon {
  font-size: 40px;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  padding-top: 4px;
}

.tool-content { flex: 1; }

.tool-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.tool-header-row h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}

.tool-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.badge-free { background: #dcfce7; color: #166534; }
.badge-standard { background: #dbeafe; color: #1e40af; }
.badge-pro { background: rgba(249,115,22,0.15); color: #9a3412; }
.badge-enterprise { background: #faf5ff; color: #581c87; }

.tool-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.tool-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tool-stat {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.tool-why {
  background: rgba(26,39,68,0.05);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* BADGE LEGEND */
.badge-legend-section { background: var(--bg-light); }

.badge-legend {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--text);
}

/* =============================================
   FREE EVALUATION PAGE
   ============================================= */
.eval-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: #fff;
  padding: 72px 24px 60px;
}

.eval-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.eval-hero-text h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 16px;
  letter-spacing: -0.5px;
}

.eval-sub {
  font-size: 20px;
  color: #93b5d6;
  line-height: 1.6;
  margin-bottom: 28px;
}

.eval-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.eval-trust-item {
  font-size: 14px;
  font-weight: 600;
  color: #a8c5e0;
}

.eval-section {
  padding: 64px 24px 80px;
  background: var(--bg-light);
}

.eval-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.eval-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.1);
}

.eval-form-card h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  text-align: left;
}

.eval-form-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* GHL PLACEHOLDER — EVAL PAGE */
.ghl-placeholder-eval {
  background: #f0f6ff;
  border: 2px dashed #93b5d6;
  border-radius: 12px;
  padding: 48px 28px;
  text-align: center;
  margin: 8px 0;
}

.ghl-placeholder-eval .ghl-placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.ghl-placeholder-eval h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.ghl-placeholder-eval p {
  font-size: 14px;
  color: #556b82;
  margin-bottom: 8px;
}

.ghl-placeholder-eval code {
  background: rgba(26,39,68,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
}

/* GHL PLACEHOLDER — ORIGINAL */
.ghl-placeholder {
  background: #f0f6ff;
  border: 2px dashed #93b5d6;
  border-radius: 10px;
  padding: 48px 20px;
  text-align: center;
  color: var(--navy);
  font-size: 16px;
  line-height: 2;
}

.eval-what-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.eval-what-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.eval-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eval-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.eval-bullet-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.eval-bullets strong { font-size: 15px; color: var(--navy); }
.eval-bullets div { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.eval-trust-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.eval-trust-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.eval-trust-items { display: flex; flex-direction: column; gap: 16px; }

.eval-trust-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
}

.eval-trust-point span { font-size: 22px; flex-shrink: 0; }
.eval-trust-point strong { color: var(--navy); display: block; margin-bottom: 2px; font-size: 15px; }

.eval-phone-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.eval-phone-cta p { font-size: 15px; color: var(--text-light); margin-bottom: 8px; }

.eval-phone-link {
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
}

.eval-phone-link:hover { text-decoration: underline; }

.eval-bottom-strip {
  background: var(--navy);
  padding: 60px 24px;
}

.eval-bottom-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.eval-bottom-item { text-align: center; color: #93b5d6; }

.eval-bottom-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.eval-bottom-item strong {
  display: block;
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}

.eval-bottom-item p { font-size: 14px; line-height: 1.6; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section { background: #fff; }

.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

.about-photo-placeholder {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.about-initials {
  width: 96px;
  height: 96px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  margin: 0 auto 16px;
}

.about-photo-placeholder p {
  font-size: 15px;
  color: #a8c5e0;
  line-height: 1.6;
}

.about-photo-placeholder p strong { color: #fff; font-size: 18px; }

.about-contact-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}

.about-contact-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.about-contact-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.6;
}

.about-contact-card a { color: var(--navy); font-weight: 600; }

.about-badge {
  display: inline-block;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange-dark);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-text-col h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text-col h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

.about-text-col p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-quote {
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--bg-light);
  border-radius: 0 10px 10px 0;
}

.about-quote blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-quote cite { font-size: 14px; color: var(--text-light); font-style: normal; font-weight: 600; }

.values-section { background: var(--bg-light); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.2s;
}

.value-card:hover { transform: translateY(-4px); }

.value-icon { font-size: 40px; margin-bottom: 16px; }

.value-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p { font-size: 15px; color: var(--text-light); line-height: 1.65; }

/* =============================================
   PRICING PAGE — additions/overrides
   ============================================= */
.form-disclaimer {
  font-size: 12px;
  color: #777;
  text-align: center;
  line-height: 1.6;
  margin-top: 16px;
}

.form-disclaimer a { color: var(--navy); }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page { padding: 60px 24px; max-width: 820px; margin: 0 auto; }
.legal-page h3 { color: var(--navy); margin: 28px 0 8px; font-size: 18px; }
.legal-page p { color: #444; margin-bottom: 12px; font-size: 15px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .eval-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .roi-callout-inner { grid-template-columns: 1fr; text-align: center; }
  .roi-callout-text h2 { text-align: center; }
  .about-photo-col { display: flex; gap: 16px; align-items: stretch; flex-wrap: wrap; }
  .about-photo-placeholder { flex: 1; min-width: 200px; }
  .about-contact-card { flex: 1; min-width: 200px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 34px; }
  .eval-hero-text h1 { font-size: 32px; }
  .subhead { font-size: 17px; }
  .section { padding: 60px 20px; }
  .section h2 { font-size: 28px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary { font-size: 16px; padding: 14px 28px; }
  .btn-outline { font-size: 16px; padding: 14px 28px; }
  .tool-card { flex-direction: column; gap: 12px; }
  .tool-icon { width: auto; font-size: 32px; }
  .eval-form-card { padding: 28px 20px; }
  .eval-what-card { padding: 24px 20px; }
  .eval-trust-card { padding: 24px 20px; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy-dark); padding: 12px 0; box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 24px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .site-nav .nav-cta { margin: 8px 24px 0; border-radius: 6px; }
  .nav-toggle { display: block; }
  .header-phone { font-size: 14px; }
  .header-inner { height: 60px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .page-hero h1 { font-size: 28px; }
  .eval-hero-text h1 { font-size: 26px; }
  .logo-text { font-size: 18px; }
  .tools-preview-grid { grid-template-columns: 1fr 1fr; }
}
