/* First Page Co — Style Sheet */

/* ============================================
   GOOGLE FONTS
   ============================================ */
/* Font loaded via <link> tags in HTML for non-blocking render */

/* ============================================
   SKIP LINK
   ============================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: fixed; left: 1rem; top: 1rem; width: auto; height: auto; padding: 0.75rem 1.5rem; background: #1A1A1A; color: #fff; z-index: 99999; text-decoration: none; font-family: inherit; border-radius: 6px; }

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary:    #1E2A3A;
  --secondary:  #2a3a4d;
  --accent:     #00C9B1;
  --text:       #1E2A3A;
  --gray:       #5a6878;
  --light-gray: #8899a8;
  --white:      #ffffff;
  --off-white:  #F5F7F9;
  --border:     #e2e8f0;

  /* Legacy alias */
  --light-bg:   #F5F7F9;
}

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

html {
  /* scroll handled by JS in main.js */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: 3.5rem; letter-spacing: -0.03em; }
h2 { font-size: 2.25rem; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
h4 { font-size: 1rem; }

p {
  color: var(--gray);
  margin-bottom: 1em;
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-subhead {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}

.bg-light {
  background-color: var(--off-white);
}

.text-center {
  text-align: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 2rem;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-cursor {
  animation: cursor-blink 1.1s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--gray);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-menu-active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-active .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu-active .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  justify-content: flex-start;
  z-index: 1000;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  min-height: 44px;
}

.btn-lg {
  padding: 0.875rem 2.25rem;
  font-size: 1rem;
}

/* Dark / primary */
.btn-primary {
  background-color: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #00a894;
  border-color: #00a894;
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(30,42,58,0.18);
}

/* Outline */
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  background-color: var(--accent);
  color: var(--primary);
}

/* White solid (on dark backgrounds) */
.btn-white-solid {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}
.btn-white-solid:hover {
  background-color: var(--off-white);
  color: var(--primary);
}

/* White outline (on dark backgrounds) */
.btn-white-outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-white-outline:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* Legacy aliases */
.btn-secondary { /* used on other pages */
  background-color: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--primary);
  background-color: var(--accent);
  color: var(--primary);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(15, 23, 42, 0.65) 100%
  );
  z-index: 1;
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 6rem 2rem 2.5rem;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-subhead {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  max-width: 640px;
}

.hero-direct {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 2rem;
  max-width: 640px;
  font-style: normal;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .hero-center {
    padding: 5rem 2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }
  .hero-center {
    padding: 3.5rem 1.5rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   HERO MEDIUM (services, about)
   ============================================ */
.hero-medium {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-medium-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hero-medium-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 58, 0.72);
}

.hero-medium-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 680px;
}

.hero-medium-content h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-medium-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .hero-medium {
    min-height: 300px;
  }
  .hero-medium-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

/* ============================================
   PAGE HEADER (portfolio slim typographic)
   ============================================ */
.page-header {
  background: var(--primary);
  padding: 4.5rem 2rem;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
  display: inline-block;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--accent);
}

.page-header-subhead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-header {
    padding: 2.5rem 1.5rem;
  }
  .page-header h1 {
    font-size: 2rem;
  }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background-color: var(--primary);
  padding: 0;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 0 2rem;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background-color: rgba(255,255,255,0.12);
  margin: 1.5rem 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.step h3 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.step p {
  font-size: 0.95rem;
  margin: 0;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--border);
  padding-top: 3rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================
   INDUSTRIES GRID
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 20px rgba(30,42,58,0.07);
}

.industry-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.industry-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.industry-card p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   PORTFOLIO PREVIEWS
   ============================================ */
.portfolio-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.portfolio-preview {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.portfolio-preview:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 28px rgba(30,42,58,0.09);
}

.portfolio-preview-img {
  overflow: hidden;
}

.portfolio-preview-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-preview:hover .portfolio-preview-img img {
  transform: scale(1.03);
}

.portfolio-preview-info {
  padding: 1.5rem;
}

.tag {
  display: inline-block;
  background-color: var(--off-white);
  color: var(--gray);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.portfolio-preview-info h3 {
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.portfolio-preview-info p {
  font-size: 0.875rem;
  color: var(--light-gray);
  margin-bottom: 1rem;
}

.link-arrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.link-arrow:hover {
  color: #00a894;
  gap: 0.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
}

.testimonial-quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--border);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.9375rem;
  color: var(--light-gray);
  margin-top: 0.1rem;
}

/* Legacy testimonial (used on other pages) */
.testimonial {
  background-color: var(--off-white);
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--accent);
}
.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text);
}
.testimonial-author-name {
  font-weight: 600;
  color: var(--text);
}

/* ============================================
   PRICING / WHAT'S INCLUDED
   ============================================ */
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(145deg, #1E2A3A, #2a3a4d);
  color: var(--white);
  padding: 2.75rem;
  border-radius: 12px;
}

.price-eyebrow {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-badge {
  font-size: 0.9375rem;
  font-weight: 600;
  background-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 0;
}

.pricing-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list li::before {
  content: '✓';
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

/* Pricing add-ons panel */
.pricing-extras {
  padding: 0.5rem 0;
}

.pricing-extras h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.extras-intro {
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  color: var(--gray);
}

.extras-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.extras-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.extra-dot {
  width: 8px;
  height: 8px;
  background-color: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.extras-list strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.extras-list p {
  font-size: 0.9375rem;
  color: var(--light-gray);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   DIFFERENTIATORS
   ============================================ */
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.differentiator {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
}

.diff-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 201, 177, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.differentiator h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--primary);
}

.differentiator p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .differentiators-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BOTTOM CTA SECTION
   ============================================ */
.cta-section {
  background-color: var(--primary);
  padding: 6rem 2rem;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-subhead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-phone-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cta-phone-link:hover {
  opacity: 0.8;
  color: var(--white);
}

.cta-phone-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.cta-phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.cta-or {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

/* ============================================
   HERO PHONE LINE (inline style removal)
   ============================================ */
.hero-phone-line { margin-top: 0.25rem; }
.hero-phone-link { color: #fff; text-decoration: none; font-weight: 600; }
.hero-phone-link:hover { text-decoration: underline; color: #fff; }

/* ============================================
   TIER HINTS (inline style removal)
   ============================================ */
.tier-hints { padding: 2.5rem 0; }
.tier-hints-inner { max-width: 600px; text-align: center; margin: 0 auto; }
.tier-primary { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 0.75rem; }
.tier-primary strong { color: var(--text); }
.tier-primary a, .tier-secondary a { color: var(--primary); font-weight: 600; }
.tier-secondary { font-size: 1rem; color: var(--light-gray); line-height: 1.75; }

/* ============================================
   CONVERT SECTION (inline style removal)
   ============================================ */
.convert-inner { max-width: 680px; margin: 0 auto; text-align: left; }
.convert-body { font-size: 1.1rem; line-height: 1.8; color: var(--gray); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-section h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-section > p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--gray);
}

.footer-contact a {
  color: var(--gray);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-email-primary {
  color: var(--primary) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  margin-bottom: 0.5rem !important;
}

.footer-email-primary:hover {
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.footer-section ul li a {
  color: var(--gray);
  font-size: 0.875rem;
}

.footer-section ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.9375rem;
  color: var(--light-gray);
  margin: 0;
}

/* ============================================
   FORMS
   ============================================ */
form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background-color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}
.form-error.show {
  display: block;
}

/* ============================================
   CARDS (legacy, used on other pages)
   ============================================ */
.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.2s ease;
}

.card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 20px rgba(30,42,58,0.07);
}

.card h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  background: var(--accent);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ============================================
   GRID UTILITIES (legacy, used on other pages)
   ============================================ */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ============================================
   SOCIAL PROOF BAR (legacy, used on other pages)
   ============================================ */
.social-proof {
  background-color: var(--off-white);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

/* ============================================
   PORTFOLIO CARDS (legacy, portfolio.html)
   ============================================ */
.portfolio-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.portfolio-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(30,42,58,0.08);
}

.portfolio-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-tag {
  display: inline-block;
  background-color: var(--off-white);
  color: var(--gray);
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.portfolio-location {
  color: var(--light-gray);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.portfolio-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.portfolio-thumb {
  width: 100%;
  display: block;
  border-radius: 10px 10px 0 0;
}

.industry-callout {
  max-width: 680px;
  margin: 3rem auto 0;
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  text-align: center;
}

.industry-callout-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}

.portfolio-bottom-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.portfolio-bottom-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.portfolio-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PROCESS STEPS (legacy)
   ============================================ */
.process-steps {
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  padding: 1.75rem;
  background-color: var(--off-white);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--accent);
}

.process-step h4 {
  margin-bottom: 0.4rem;
}

/* ============================================
   CONTACT INFO (legacy)
   ============================================ */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-method {
  text-align: center;
}

.contact-method h4 {
  margin-bottom: 0.4rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin-bottom: 8px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: 0.95rem;
  padding: 16px 0;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  color: var(--light-gray);
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.faq-toggle.open {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--gray);
  font-size: 1rem;
  padding-top: 14px;
}

.faq-answer.show {
  max-height: 500px;
  padding-top: 14px;
}

/* ============================================
   UTILITIES
   ============================================ */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.text-gray   { color: var(--gray); }
.text-primary { color: var(--primary); }
.bg-accent   { background-color: var(--accent); }


/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .portfolio-previews {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-previews .portfolio-preview:last-child {
    display: none; /* hide 3rd on tablet for even layout */
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }

  /* About page founder bio stacks on mobile */
  .about-founder-layout {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    gap: 0.25rem;
  }

  .nav-links a {
    display: block;
    min-height: 44px;
    line-height: 44px;
    padding: 0 0.5rem;
  }

  .nav-right {
    display: none;
  }

  .nav-right .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu-active .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 0 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  /* Recalculate mobile menu position — nav-links pushes it down */
  .mobile-menu-active .nav-links {
    top: 62px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: auto;
  }

  .stats-grid {
    flex-wrap: wrap;
    padding: 0 1.5rem;
  }

  .stat-item {
    flex: 1 1 100%;
    min-width: 0;
    padding: 1.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-divider {
    display: none;
  }

  .steps-grid {
    flex-direction: column;
    gap: 0;
  }

  .step-arrow {
    display: none;
  }

  .step {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
  }

  .step:last-child {
    border-bottom: none;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  .portfolio-previews {
    grid-template-columns: 1fr;
  }

  .portfolio-previews .portfolio-preview:last-child {
    display: block;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .tier-nav-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-phone-number {
    font-size: 1.75rem;
  }

  .btn-white-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section ul li {
    margin-bottom: 0.25rem;
  }

  .footer-section ul li a {
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
    padding: 0 0.25rem;
  }

  .footer-contact a {
    min-height: 44px;
    line-height: 44px;
    padding: 0 0.25rem;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3.5rem 0;
  }

  .section-lg {
    padding: 4rem 0;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }

  .container {
    padding: 0 1.25rem;
  }

  .navbar {
    padding: 0.875rem 1.25rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .industries-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .price {
    font-size: 2.75rem;
  }

  .tier-nav-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tier-nav-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — EXTRA SMALL (max 375px)
   ============================================ */
@media (max-width: 480px) {
  .content-narrow, .content-narrow-sm {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 375px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.4rem; }

  .container {
    padding: 0 1rem;
  }

  .hero-center {
    padding: 3rem 1rem;
  }

  .hero-subhead {
    font-size: 1.1rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* Responsive inline-style overrides */
  div[style*="max-width: 600px"] {
    max-width: 100% !important;
    padding: 1.5rem !important;
  }
}

a.logo {
  text-decoration: none;
}

a.logo:hover {
  opacity: 0.8;
}

/* Accessibility — visible focus indicators */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--primary, #2563EB);
  outline-offset: 2px;
}

/* ============================================
   SHARED UTILITY CLASSES
   ============================================ */
.content-narrow { max-width: 820px; margin: 0 auto; }
.content-narrow-sm { max-width: 700px; margin: 0 auto; }
.mb-section { margin-bottom: 4rem; }
.mb-sm { margin-bottom: 2rem; }
.card-title { margin-bottom: 0.75rem; }
.card-desc { font-size: 1rem; color: var(--gray); }
.body-lg { font-size: 1.05rem; line-height: 1.8; }
.text-link-bold { color: var(--primary); font-weight: 600; }

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Page Title Section */
.page-title-section {
  padding: 3rem 2rem 0;
}

.page-title-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title-subtitle {
  color: var(--gray);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Trust Signal Section */
.trust-signal-section {
  padding: 1.5rem 2rem;
  background: var(--off-white);
  margin-top: 1.5rem;
}

.trust-signal-text {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

/* Process Section */
.process-heading {
  margin-bottom: 2rem;
}

.process-divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--border);
}

.direct-contact-heading {
  margin-bottom: 1.5rem;
}

.direct-contact-intro {
  margin-bottom: 1rem;
}

.direct-contact-email {
  margin-bottom: 0;
}

.direct-contact-phone {
  margin-top: 1rem;
  margin-bottom: 0;
}

.direct-contact-location {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0;
}

.direct-contact-response {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-card {
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 0 8px 8px 0;
}

.faq-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.faq-card p {
  line-height: 1.7;
}

/* Stats Grid */
.stats-heading {
  margin-bottom: 2.5rem;
}

.contact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.contact-stat-number {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-heading {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .direct-contact-location,
  .direct-contact-response {
    margin-bottom: 0.25rem;
  }

  section:has(.direct-contact-founder) {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Form button responsiveness */
  form .btn {
    width: 100%;
    display: block;
  }
}

/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */

/* Container sizing utilities */
.container-sm {
  max-width: 700px;
  margin: 0 auto;
}

.container-md {
  max-width: 820px;
  margin: 0 auto;
}

.container-lg {
  max-width: 960px;
  margin: 0 auto;
}

/* Trust Signal */
.trust-signal {
  padding: 1.5rem 0;
  background: var(--off-white);
}

.trust-text {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  margin: 0;
}

/* Three-Tier Navigation */
.tier-nav-section {
  padding: 2.5rem 0;
}

.tier-nav-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
}

.tier-nav-link {
  text-decoration: none;
  color: inherit;
  display: flex;
}

.tier-nav-grid .industry-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tier-nav-title {
  margin-bottom: 0.5rem;
}

.tier-nav-desc {
  font-size: 1rem;
  color: var(--gray);
  margin: 0;
}

/* Feature/Item styling */
.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-title {
  color: var(--primary);
  margin: 0;
}

.feature-badge {
  background: var(--primary);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.feature-list {
  list-style: none;
  margin: 0;
}

.feature-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-check {
  color: #16a34a;
  font-weight: 700;
}

/* Button group */
.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

/* Feature note */
.feature-note {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Guarantees box */
.guarantees-box {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.guarantees-box .text-primary {
  color: #16a34a;
}
.guarantees-box-narrow {
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* Add-ons pricing and description */
.addon-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.addon-desc {
  font-size: 1rem;
  color: var(--gray);
}

.addon-grid .card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

/* Service card styling */
.service-card-title {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.service-card-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

/* CTA Card for pricing sections */
.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primary);
  color: white;
}

.cta-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-card-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.cta-card-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  font-style: italic;
}

/* Standalone deliverables */
.standalone-title {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.standalone-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.standalone-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.standalone-full {
  grid-column: 1 / -1;
}

.standalone-footer {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 680px;
}

.footer-email-link {
  color: var(--primary);
  font-weight: 600;
}

/* Text utilities */
.text-muted {
  color: var(--gray);
}

/* ============================================
   HOMEPAGE: CONVERT FOUNDER
   ============================================ */
.convert-founder {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.convert-founder-photo {
  width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .convert-founder {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .convert-founder-photo {
    width: 140px;
    height: 140px;
  }
  .convert-founder h2 {
    text-align: center;
  }
  .convert-body {
    text-align: left;
  }
}

/* ============================================
   PORTFOLIO BUILDER CREDIT
   ============================================ */
.portfolio-info-block {
  max-width: 640px;
  margin: 2.5rem auto;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-info-block .portfolio-builder {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  margin: 0;
}

.portfolio-builder-photo {
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.portfolio-builder-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.portfolio-builder-note {
  font-size: 0.82rem;
  color: var(--text-muted, #64748b);
  margin: 0;
  line-height: 1.5;
}

.portfolio-faq-inline {
  padding: 0 1.75rem 0.5rem;
}

.portfolio-faq-inline .faq-item {
  border-bottom: 1px solid #f1f5f9;
}

.portfolio-faq-inline .faq-item:last-child {
  border-bottom: none;
}

.portfolio-faq-inline .faq-question {
  padding: 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.portfolio-faq-inline .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.portfolio-faq-inline .faq-answer.show {
  max-height: 500px;
  padding-bottom: 0.75rem;
}

.portfolio-faq-inline .faq-answer p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gray);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-founder-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.about-founder-img {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
}

.about-founder-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  box-shadow: 0 8px 30px rgba(15,23,42,0.18);
}

.about-founder-name {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.about-founder-role {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--gray);
}

.about-founder-heading {
  margin-top: 0;
}

.about-founder-body {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.about-founder-body:last-of-type {
  margin-bottom: 0;
}

.about-mission-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.about-mission-body {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.about-mission-body:last-of-type {
  margin-bottom: 0;
}

.industries-grid-custom {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
}

.industry-card-description {
  margin-bottom: 1rem;
}

.industry-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: var(--gray);
  line-height: 2;
}

.cta-section-wrap {
  padding: 3rem 0;
}

.cta-section-inner {
  max-width: 680px;
  text-align: center;
}

.cta-section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.company-character-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.company-character-box {
  background: var(--primary);
  color: white;
  border-radius: 12px;
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
}

.company-character-heading {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 1rem;
  color: white;
}

.company-character-text {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.values-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.values-card-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.values-card-text {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

.hero-medium-bg-custom {
  background-image: none;
  background-color: var(--primary);
}

@media (max-width: 768px) {
  .about-founder-layout { flex-direction: column !important; align-items: center !important; gap: 1.5rem !important; text-align: center; }
  .about-founder-layout img, .about-founder-img img { width: 180px !important; aspect-ratio: 1 / 1 !important; border-radius: 50% !important; object-fit: cover !important; object-position: center 20% !important; margin: 0 auto !important; display: block !important; }
  .about-founder-img { display: flex !important; flex-direction: column !important; align-items: center !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .about-founder-wrap { flex-direction: column !important; gap: 1.5rem !important; text-align: center; align-items: center !important; }
  .industries-grid-custom { grid-template-columns: 1fr !important; }
}

/* ============================================
   CONSULTING PAGE
   ============================================ */
.consulting-hero-bg {
  background-image: none;
  background-color: var(--primary);
}

.about-ryan-flex {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.about-ryan-image-container {
  text-align: center;
  flex-shrink: 0;
  max-width: 220px;
}

.about-ryan-text {
  flex: 1;
}

.about-ryan-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}

.about-ryan-name {
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark, #1e293b);
}

.about-ryan-title {
  font-size: 0.9rem;
  color: var(--text-muted, #64748b);
  margin-top: 0.25rem;
}

.about-ryan-credibility {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted, #64748b);
}

.about-ryan-heading {
  margin-top: 0;
}

.about-ryan-content {
  line-height: 1.7;
  color: var(--text-body, #475569);
}

.about-ryan-link {
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-ryan-flex { flex-direction: column !important; gap: 1.5rem !important; text-align: center; align-items: center !important; }
  .about-ryan-image-container { display: flex; flex-direction: column; align-items: center; }
  .about-ryan-flex img { width: 120px !important; aspect-ratio: 1 / 1 !important; border-radius: 50% !important; object-fit: cover !important; object-position: center 20% !important; }
  .about-ryan-heading { text-align: center; }
  .about-ryan-content { text-align: left; }
  .about-ryan-credibility { text-align: left; }
  .bg-light:has(.about-ryan-wrapper) { padding-top: 1.5rem !important; }
  .guarantees-box { flex-direction: column !important; gap: 0.75rem !important; flex-wrap: wrap !important; margin-top: 1rem !important; }
  .guarantees-box + p { margin-top: 0.75rem !important; }
  section:has(.faq-item) { padding-bottom: 1rem !important; }
}

/* ============================================
   CONTACT: DIRECT CONTACT FOUNDER
   ============================================ */
.direct-contact-founder {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.direct-contact-photo {
  width: 80px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.direct-contact-founder .direct-contact-heading {
  margin-bottom: 0.25rem;
}

.direct-contact-founder .direct-contact-intro {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-header {
  padding: 5rem 2rem;
}

.thankyou-container {
  text-align: center;
  max-width: 640px;
}

.thankyou-lead {
  font-size: 1.15rem;
  color: var(--light-gray);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .thankyou-header {
    padding: 3.5rem 1.5rem;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE PADDING REDUCTION
   768px and below: Reduce excessive padding
   480px and below: Further tightening
   ============================================ */

/* 768px breakpoint: Primary mobile adjustments */
@media (max-width: 768px) {
  /* Core sections - reduce vertical padding */
  section {
    padding: 2.5rem 0 !important;
  }

  .section-lg {
    padding: 3rem 0 !important;
  }

  /* Section headers - reduce margins */
  .section-header {
    margin-bottom: 2rem !important;
  }

  .section-header h2 {
    margin-bottom: 0.5rem !important;
  }

  .section-subhead {
    font-size: 1rem !important;
  }

  /* CTA sections - reduce vertical padding */
  .cta-section {
    padding: 3rem 1.5rem !important;
  }

  .cta-section h2 {
    margin-bottom: 0.5rem !important;
  }

  .cta-subhead {
    margin-bottom: 1.5rem !important;
  }

  .cta-section-wrap {
    padding: 1.5rem 0 !important;
  }

  /* Card-based sections - reduce card padding */
  .card {
    padding: 1.25rem !important;
  }

  .card h3 {
    margin-bottom: 0.4rem !important;
  }

  /* Industries grid - stack and tighten */
  .industries-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .industry-card {
    padding: 1.25rem !important;
  }

  .industry-icon {
    margin-bottom: 0.75rem !important;
  }

  /* Portfolio previews - reduce gap and padding */
  .portfolio-previews {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .portfolio-preview-info {
    padding: 1rem !important;
  }

  .portfolio-preview-info h3 {
    margin-bottom: 0.15rem !important;
  }

  .portfolio-preview-info p {
    font-size: 0.8125rem !important;
    margin-bottom: 0.75rem !important;
  }

  /* Testimonials grid - stack and tighten */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .testimonial-card {
    padding: 1.25rem !important;
  }

  .testimonial-quote-mark {
    font-size: 2.5rem !important;
    margin-bottom: 0.25rem !important;
  }

  .testimonial-text {
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
  }

  .testimonial-author {
    padding-top: 0.75rem !important;
  }

  /* Steps grid - reduce padding */
  .steps-grid {
    gap: 0.25rem !important;
  }

  .step {
    padding: 1.25rem 0.75rem !important;
  }

  .step-number {
    width: 2.5rem !important;
    height: 2.5rem !important;
    font-size: 0.95rem !important;
    margin: 0 auto 0.75rem !important;
  }

  .step h3 {
    margin-bottom: 0.5rem !important;
  }

  .step p {
    font-size: 0.875rem !important;
  }

  .step-arrow {
    padding-top: 1.5rem !important;
    font-size: 1.25rem !important;
  }

  /* Pricing/What's Included - adjust layout */
  .pricing-wrapper {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .pricing-card {
    padding: 1.5rem !important;
  }

  .price {
    font-size: 2.5rem !important;
  }

  .pricing-list li {
    padding: 0.5rem 0 !important;
    font-size: 0.875rem !important;
  }

  .extras-intro {
    margin-bottom: 1rem !important;
    font-size: 0.85rem !important;
  }

  .extras-list {
    gap: 0.75rem !important;
  }

  /* Differentiators grid - reduce and tighten */
  .differentiators-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
  }

  .differentiator {
    padding: 1.25rem !important;
  }

  .diff-icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 0.75rem !important;
  }

  /* Hero sections - reduce padding */
  .hero-center {
    padding: 2.5rem 1.25rem !important;
  }

  .hero-eyebrow {
    margin-bottom: 0.75rem !important;
    font-size: 0.75rem !important;
  }

  h1 {
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
  }

  .hero-subhead {
    font-size: 1.1rem !important;
    margin: 0 auto 1.5rem !important;
  }

  .hero-direct {
    font-size: 0.95rem !important;
    margin: 0 auto 1.25rem !important;
  }

  .hero-trust {
    font-size: 0.875rem !important;
    margin: 1rem 0 0 !important;
  }

  /* Hero medium - reduce padding */
  .hero-medium-content {
    padding: 2.5rem 1.5rem !important;
  }

  .hero-medium-content h1 {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .hero-medium-content p {
    font-size: 1rem !important;
  }

  /* Page header - reduce padding */
  .page-header {
    padding: 2rem 1.5rem !important;
  }

  .page-header h1 {
    font-size: 1.65rem !important;
    margin-bottom: 0.75rem !important;
    border-bottom-width: 2px !important;
  }

  .page-header-subhead {
    font-size: 1rem !important;
  }

  .page-header p {
    font-size: 0.875rem !important;
    margin: 0.5rem auto 0 !important;
  }

  /* Stats bar - tighten */
  .stats-grid {
    flex-wrap: wrap !important;
    padding: 0 1.25rem !important;
  }

  .stat-item {
    padding: 1.5rem 0.75rem !important;
    flex: 0 0 50% !important;
  }

  .stat-number {
    font-size: 1.75rem !important;
    margin-bottom: 0.25rem !important;
  }

  .stat-label {
    font-size: 0.75rem !important;
  }

  .stat-divider {
    margin: 1rem 0 !important;
  }

  /* Footer - reduce padding and gaps */
  footer {
    padding: 2rem 1.5rem 0 !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .footer-section h4 {
    margin-bottom: 0.75rem !important;
    font-size: 0.85rem !important;
  }

  .footer-section > p {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }

  .footer-section ul li {
    margin-bottom: 0.4rem !important;
    font-size: 0.8rem !important;
  }

  .footer-section ul li a {
    font-size: 0.8rem !important;
  }

  .footer-bottom {
    padding: 1rem 0 !important;
  }

  .footer-bottom p {
    font-size: 0.8rem !important;
  }

  /* Forms - reduce margins */
  .form-group {
    margin-bottom: 1rem !important;
  }

  label {
    margin-bottom: 0.25rem !important;
    font-size: 0.8rem !important;
  }

  input, textarea, select {
    padding: 0.6rem 0.75rem !important;
    font-size: 16px !important;
  }

  /* Page title section - reduce padding */
  .page-title-section {
    padding: 2rem 1.5rem 0 !important;
  }

  /* Trust signal section - reduce padding */
  .trust-signal-section {
    padding: 1rem 1.5rem !important;
    margin-top: 1rem !important;
  }

  /* Portfolio card and content - reduce padding */
  .portfolio-card {
    border-radius: 6px !important;
  }

  .portfolio-content {
    padding: 1rem !important;
  }

  .portfolio-tag {
    padding: 0.15rem 0.5rem !important;
    font-size: 0.75rem !important;
    margin-bottom: 0.5rem !important;
  }

  .portfolio-desc {
    font-size: 0.85rem !important;
    margin-bottom: 0.75rem !important;
  }

  .portfolio-bottom-cta {
    margin-top: 2rem !important;
    padding-top: 2rem !important;
  }

  .portfolio-bottom-text {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
  }

  /* Industry callout - reduce padding */
  .industry-callout {
    margin: 2rem auto 0 !important;
    padding: 1.25rem 1.5rem !important;
  }

  .industry-callout-text {
    font-size: 0.95rem !important;
  }

  /* Testimonial (legacy) - reduce padding */
  .testimonial {
    padding: 1.25rem !important;
  }

  .testimonial p {
    margin-bottom: 0.75rem !important;
  }

  /* Social proof - reduce padding */
  .social-proof {
    padding: 2rem 1.5rem !important;
    gap: 1rem !important;
  }

  /* Process steps - reduce padding */
  .process-step {
    padding: 1.25rem !important;
  }

  /* Tier hints - reduce padding */
  .tier-hints {
    padding: 1.5rem 0 !important;
  }

  .tier-primary {
    font-size: 1.05rem !important;
    margin-bottom: 0.5rem !important;
  }

  .tier-secondary {
    font-size: 0.9rem !important;
  }

  /* Convert section - adjust */
  .convert-inner {
    max-width: 100% !important;
  }

  .convert-body {
    font-size: 1rem !important;
  }

  /* Grid utilities - adjust gaps */
  .grid {
    gap: 1rem !important;
  }

  .grid-2 { grid-template-columns: 1fr !important; }
  .grid-3 { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: 1fr !important; }

  /* CTA phone link - reduce spacing */
  .cta-phone-link {
    gap: 0.15rem !important;
  }

  .cta-phone-number {
    font-size: 1.5rem !important;
  }

  /* Container padding - ensure mobile-friendly */
  .container {
    padding: 0 1.25rem !important;
  }

  /* Navbar adjustments */
  .navbar {
    padding: 1rem 1.25rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  h3 {
    font-size: 1.05rem !important;
  }

  /* Icon size reduction */
  .icon {
    width: 2.25rem !important;
    height: 2.25rem !important;
    margin-bottom: 0.75rem !important;
    font-size: 1.05rem !important;
  }

  /* Pricing wrapper adjustments for smaller screens */
  .price-eyebrow {
    margin-bottom: 0.75rem !important;
    font-size: 0.8rem !important;
  }

  .price-display {
    margin-bottom: 1.25rem !important;
    gap: 0.5rem !important;
  }

  .price-badge {
    font-size: 0.8rem !important;
  }
}

/* 480px breakpoint: Further refinements for very small screens */
@media (max-width: 480px) {
  /* Even tighter section padding */
  section {
    padding: 1.75rem 0 !important;
  }

  .section-lg {
    padding: 1.75rem 0 !important;
  }

  .section-header {
    margin-bottom: 1.5rem !important;
  }

  /* Further heading size reduction */
  h1 {
    font-size: 1.5rem !important;
  }

  h2 {
    font-size: 1.4rem !important;
  }

  h3 {
    font-size: 0.95rem !important;
  }

  /* Hero - very compact */
  .hero-center {
    padding: 2rem 1rem !important;
  }

  .hero-eyebrow {
    font-size: 0.7rem !important;
    margin-bottom: 0.5rem !important;
  }

  .hero-subhead {
    font-size: 1rem !important;
    margin: 0 auto 1.25rem !important;
  }

  .hero-direct {
    font-size: 0.9rem !important;
    margin: 0 auto 1rem !important;
  }

  .hero-cta {
    gap: 0.75rem !important;
  }

  .hero-trust {
    font-size: 0.8rem !important;
  }

  /* Hero medium - very compact */
  .hero-medium {
    min-height: 300px !important;
  }

  .hero-medium-content {
    padding: 2rem 1rem !important;
  }

  .hero-medium-content h1 {
    font-size: 1.5rem !important;
  }

  .hero-medium-content p {
    font-size: 0.95rem !important;
  }

  /* Page header */
  .page-header {
    padding: 1.5rem 1rem !important;
  }

  .page-header h1 {
    font-size: 1.4rem !important;
    padding-bottom: 0.4rem !important;
    border-bottom-width: 2px !important;
  }

  .page-header-subhead {
    font-size: 0.95rem !important;
  }

  .page-header p {
    font-size: 0.8rem !important;
  }

  /* CTA section - very compact */
  .cta-section {
    padding: 2.5rem 1rem !important;
  }

  .cta-section h2 {
    font-size: 1.4rem !important;
  }

  .cta-subhead {
    font-size: 1rem !important;
    margin-bottom: 1.25rem !important;
  }

  .cta-actions {
    gap: 1rem !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .cta-phone-number {
    font-size: 1.25rem !important;
  }

  /* Industries grid - single column */
  .industries-grid {
    gap: 0.75rem !important;
  }

  .industry-card {
    padding: 1rem !important;
  }

  .industry-card h3 {
    font-size: 0.95rem !important;
  }

  .industry-card p {
    font-size: 0.875rem !important;
  }

  /* Portfolio previews - further reduction */
  .portfolio-previews {
    gap: 0.75rem !important;
    margin-bottom: 1.25rem !important;
  }

  .portfolio-preview-info {
    padding: 0.75rem !important;
  }

  .portfolio-tag {
    padding: 0.1rem 0.4rem !important;
  }

  /* Testimonials - compact */
  .testimonials-grid {
    gap: 0.75rem !important;
  }

  .testimonial-card {
    padding: 1rem !important;
  }

  .testimonial-quote-mark {
    font-size: 2rem !important;
  }

  .testimonial-text {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }

  .testimonial-author {
    padding-top: 0.5rem !important;
  }

  .testimonial-name {
    font-size: 0.85rem !important;
  }

  .testimonial-role {
    font-size: 0.8rem !important;
  }

  /* Steps - further compact */
  .steps-grid {
    flex-direction: column !important;
  }

  .step {
    padding: 1rem 0.5rem !important;
  }

  .step-number {
    width: 2rem !important;
    height: 2rem !important;
    font-size: 0.85rem !important;
    margin: 0 auto 0.5rem !important;
  }

  .step-arrow {
    display: none !important;
  }

  /* Pricing wrapper - single column */
  .pricing-wrapper {
    gap: 1rem !important;
  }

  .pricing-card {
    padding: 1.25rem !important;
  }

  .price-display {
    margin-bottom: 1rem !important;
  }

  .price {
    font-size: 2rem !important;
  }

  .pricing-list li {
    padding: 0.4rem 0 !important;
    font-size: 0.8rem !important;
  }

  /* Differentiators - single column */
  .differentiators-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin-top: 1.25rem !important;
  }

  .differentiator {
    padding: 1rem !important;
  }

  /* Footer - very compact */
  footer {
    padding: 1.5rem 1rem 0 !important;
  }

  .footer-content {
    gap: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .footer-section h4 {
    margin-bottom: 0.6rem !important;
    font-size: 0.75rem !important;
  }

  .footer-section > p {
    font-size: 0.75rem !important;
    margin-bottom: 0.5rem !important;
  }

  .footer-section ul li {
    margin-bottom: 0.3rem !important;
    font-size: 0.75rem !important;
  }

  .footer-bottom {
    padding: 0.75rem 0 !important;
  }

  .footer-bottom p {
    font-size: 0.75rem !important;
  }

  /* Forms */
  .form-group {
    margin-bottom: 0.75rem !important;
  }

  label {
    font-size: 0.75rem !important;
  }

  input, textarea, select {
    padding: 0.5rem 0.6rem !important;
    font-size: 16px !important;
  }

  textarea {
    min-height: 100px !important;
  }

  /* Page title section */
  .page-title-section {
    padding: 1.5rem 1rem 0 !important;
  }

  /* Trust signal section */
  .trust-signal-section {
    padding: 0.75rem 1rem !important;
  }

  /* Portfolio sections */
  .portfolio-card {
    border-radius: 4px !important;
  }

  .portfolio-content {
    padding: 0.75rem !important;
  }

  .portfolio-tag {
    font-size: 0.7rem !important;
  }

  .portfolio-desc {
    font-size: 0.8rem !important;
  }

  .industry-callout {
    margin: 1.5rem auto 0 !important;
    padding: 1rem 1rem !important;
  }

  .industry-callout-text {
    font-size: 0.9rem !important;
  }

  /* Testimonial (legacy) */
  .testimonial {
    padding: 1rem !important;
  }

  /* Social proof */
  .social-proof {
    padding: 1.5rem 1rem !important;
    gap: 0.75rem !important;
  }

  /* Process steps */
  .process-step {
    padding: 1rem !important;
  }

  /* Container and navbar */
  .container {
    padding: 0 1rem !important;
  }

  .navbar {
    padding: 0.75rem 1rem !important;
  }

  /* Grid utilities - all single column */
  .grid {
    gap: 0.75rem !important;
  }

  /* Tier hints - reduce padding */
  .tier-hints {
    padding: 1.25rem 0 !important;
  }

  .tier-primary {
    font-size: 0.95rem !important;
    margin-bottom: 0.4rem !important;
  }

  .tier-secondary {
    font-size: 0.8rem !important;
  }

  /* Icon reduction */
  .icon {
    width: 2rem !important;
    height: 2rem !important;
    margin-bottom: 0.6rem !important;
    font-size: 0.9rem !important;
  }

  /* Pricing extras */
  .extras-intro {
    margin-bottom: 0.75rem !important;
    font-size: 0.8rem !important;
  }

  .extras-list {
    gap: 0.5rem !important;
  }

  .extras-list strong {
    font-size: 0.85rem !important;
  }

  .extras-list p {
    font-size: 0.8rem !important;
  }

  /* Direct contact founder - tighter spacing */
  .direct-contact-founder {
    gap: 0.75rem !important;
    margin-bottom: 1rem !important;
  }

  .direct-contact-photo {
    width: 60px !important;
  }

  .direct-contact-heading {
    font-size: 0.9rem !important;
  }

  .direct-contact-intro {
    font-size: 0.8rem !important;
  }

  /* Thank you page */
  .thankyou-header {
    padding: 2rem 1rem !important;
  }

  .thankyou-container {
    max-width: 100% !important;
  }

  .thankyou-lead {
    font-size: 1rem !important;
  }

  /* Button adjustments */
  .btn {
    padding: 0.65rem 1.25rem !important;
    font-size: 0.9rem !important;
  }

  .btn-sm {
    padding: 0.4rem 1rem !important;
  }

  .btn-lg {
    padding: 0.75rem 1.75rem !important;
  }
}

/* ============================================
   MOBILE OVERRIDES — MUST BE LAST IN FILE
   These override base rules defined later in the
   cascade (services, about, consulting sections).
   ============================================ */
@media (max-width: 768px) {
  .tier-nav-grid {
    grid-template-columns: 1fr !important;
  }

  .about-founder-photo {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    margin: 0 auto !important;
  }

  .about-founder-img {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .about-founder-wrap {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }

  .about-ryan-image {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    margin: 0 auto !important;
  }

  .about-ryan-image-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .about-ryan-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }

  .portfolio-info-block .portfolio-builder {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.75rem !important;
    padding: 1.25rem 1.25rem !important;
  }

  .portfolio-faq-inline {
    padding: 0.25rem 1.25rem 0.5rem !important;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .tier-nav-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 375px) {
  .tier-nav-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-cta{display:none}

/* Conversion CTA Section */
.conversion-cta-section{padding:80px 0;background:var(--off-white);text-align:center}
.conversion-cta-section h2{font-size:1.8rem;font-weight:700;color:var(--primary);margin-bottom:24px}
.conversion-cta-section .btn{font-size:1rem}

@media (max-width: 768px) {
  body{padding-bottom:48px}
  footer{margin-bottom:0}
  .mobile-cta{display:flex;position:fixed;bottom:0;left:0;right:0;z-index:9998;background:#1B2B4B;padding:12px 16px;gap:12px;align-items:center;justify-content:space-between;box-shadow:0 -2px 12px rgba(0,0,0,.25)}
  .mobile-cta-phone{display:flex;align-items:center;gap:8px;color:#fff;font-size:.9rem;font-weight:600;white-space:nowrap;text-decoration:none}
  .mobile-cta-btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 20px;font-size:.9rem;font-weight:700;background:var(--accent);color:var(--primary);border-radius:6px;text-decoration:none;flex-shrink:0}
  .conversion-cta-section{padding:48px 24px}
  .conversion-cta-section h2{font-size:1.4rem}
}
