/* ══════════════════════════════════════════════════════════════
   1:1 Pinnacle Physical Therapy — Shared Styles
   Source of truth for all pages (index.html + service pages)
   ══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: #1a1a2e; line-height: 1.6; background: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --primary: #1A6FD4;
  --primary-dark: #1459A8;
  --primary-light: rgba(26,111,212,0.08);
  --accent: #F1C500;
  --dark: #0a0f1a;
  --text: #1a1a2e;
  --text-secondary: #5a5f7a;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --border: #e8eaf0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,15,26,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; transition: all 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); background: rgba(10,15,26,0.98); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand a { display: flex; align-items: center; }
.nav-logo-img {
  height: 48px; width: auto;
  object-fit: contain;
}
.nav-name { font-weight: 700; font-size: 1.05rem; color: var(--dark); }
.nav-name span { color: var(--primary); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.6);
  padding: 8px 16px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--primary) !important; color: white !important;
  padding: 10px 24px !important; border-radius: var(--radius-sm) !important;
  font-weight: 600 !important; transition: all 0.2s !important;
  box-shadow: 0 2px 8px rgba(26,111,212,0.3);
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,111,212,0.4) !important; }

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(10,15,26,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 20px 20px; z-index: 99;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.6);
  padding: 12px 16px; border-radius: 8px; transition: all 0.2s;
}
.mobile-menu a:hover { color: white; background: rgba(255,255,255,0.08); }
.mobile-menu .nav-cta {
  margin-top: 8px; text-align: center;
}

/* ── HERO ── */
.hero {
  padding: 140px clamp(20px, 5vw, 80px) 100px;
  background: linear-gradient(165deg, #0a0f1a 0%, #101830 50%, #0d1f40 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(26,111,212,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,111,212,0.3), transparent);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(241,197,0,0.1); border: 1px solid rgba(241,197,0,0.25);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1.12;
  color: white; margin-bottom: 20px; font-weight: 600;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-text {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin-bottom: 36px; max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 16px rgba(26,111,212,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,111,212,0.45); }
.btn-outline {
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

/* Hero right - headshot */
.hero-photo-container {
  display: flex; justify-content: center; align-items: center;
}
.hero-photo {
  width: 380px; height: 460px; border-radius: 20px;
  object-fit: cover; object-position: center top;
  border: 3px solid rgba(26,111,212,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(26,111,212,0.15);
}

/* ── SERVICE HERO (sub-pages) ── */
.service-hero {
  padding: 120px clamp(20px, 5vw, 80px) 72px;
  background: linear-gradient(165deg, #0a0f1a 0%, #101830 50%, #0d1f40 100%);
  position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(26,111,212,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.service-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,111,212,0.3), transparent);
}
.service-hero-inner {
  max-width: 900px; margin: 0 auto; position: relative; z-index: 1;
}
.breadcrumb {
  font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 8px; }
.service-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15;
  color: white; margin-bottom: 20px; font-weight: 600;
}
.service-hero h1 em { font-style: normal; color: var(--accent); }
.service-hero-text {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin-bottom: 32px; max-width: 700px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px clamp(20px, 4vw, 60px);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-secondary); font-weight: 500;
}
.trust-icon { color: var(--primary); width: 18px; height: 18px; }

/* ── SECTIONS ── */
.section { padding: 96px clamp(20px, 5vw, 80px); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--primary); margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.section-label::before, .section-label::after {
  content: ''; width: 24px; height: 1px; background: var(--primary); opacity: 0.3;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2;
  color: var(--dark); margin-bottom: 16px; font-weight: 600;
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }

/* ── APPROACH (3-phase) ── */
.approach { background: var(--off-white); }
.approach-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.approach-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  text-align: center; transition: all 0.3s; position: relative;
}
.approach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26,111,212,0.15); }
.approach-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-weight: 800; font-size: 1.2rem;
}
.approach-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.approach-card .approach-subtitle {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary); margin-bottom: 12px;
}
.approach-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ── WHY US ── */
.why { background: white; }
.why-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  text-align: center; transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26,111,212,0.15); }
.why-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--primary);
}
.why-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ── SERVICES ── */
.services { background: var(--off-white); }
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s;
}
.service-card:hover { border-color: rgba(26,111,212,0.2); box-shadow: var(--shadow-sm); }
.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.service-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
  margin-top: 10px; transition: gap 0.2s;
}
.service-card:hover .learn-more { gap: 8px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--dark); }
.testimonials .section-label { color: var(--accent); }
.testimonials .section-label::before, .testimonials .section-label::after { background: var(--accent); }
.testimonials .section-header h2 { color: white; }
.testimonials .section-header p { color: rgba(255,255,255,0.45); }
.testimonials-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 36px 28px;
  transition: all 0.3s; position: relative;
}
.testimonial-card:hover { background: rgba(255,255,255,0.04); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 20px; left: 24px;
  font-size: 3rem; color: rgba(26,111,212,0.3); font-family: 'Playfair Display', serif; line-height: 1;
}
.testimonial-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-card blockquote {
  font-size: 0.92rem; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 24px; font-style: italic;
}
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(26,111,212,0.2); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: var(--primary);
}
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: white; }
.testimonial-detail { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.google-badge {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 40px; font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.google-badge span { color: var(--accent); font-weight: 600; }

/* Single testimonial variant (service pages) */
.testimonials-single {
  max-width: 700px; margin: 0 auto;
}
.testimonials-single .testimonial-card {
  padding: 40px 36px;
}

/* ── CTA / BOOKING FORM ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px clamp(20px, 5vw, 80px); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.08), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); color: white; margin-bottom: 16px; font-weight: 600;
}
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.7; }
.intake-form { text-align: left; }
.intake-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
.intake-form .form-row.full { grid-template-columns: 1fr; }
.intake-form label {
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; display: block;
}
.intake-form input, .intake-form select {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--primary-dark); background: #fff;
  color: var(--primary-dark); font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s;
  box-sizing: border-box;
}
.intake-form input::placeholder { color: var(--primary); }
.intake-form select { color: var(--primary-dark); appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230C63FF' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.intake-form select option { background: #fff; color: var(--primary-dark); }
.intake-form input:focus, .intake-form select:focus {
  outline: none; border-color: var(--primary);
}
.btn-white {
  background: white; color: var(--primary); padding: 16px 40px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: inline-flex; align-items: center; gap: 8px;
  width: 100%; justify-content: center; margin-top: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 16px; }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success h3 { color: white; font-size: 1.3rem; margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.7); }
@media (max-width: 480px) {
  .intake-form .form-row { grid-template-columns: 1fr; }
}

/* ── MAP ── */
.map-section { width: 100%; height: 320px; filter: grayscale(0.3); }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* ── CONTACT / FOOTER ── */
.contact {
  background: var(--off-white); padding: 64px clamp(20px, 4vw, 60px);
}
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.contact-block h4 {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--primary); margin-bottom: 12px;
}
.contact-block p { font-size: 0.92rem; color: var(--text); line-height: 1.8; }
.contact-block a { color: var(--primary); font-weight: 500; transition: color 0.2s; }
.contact-block a:hover { color: var(--primary-dark); }

.footer {
  background: var(--dark); padding: 32px clamp(20px, 4vw, 60px);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { height: 50px; width: auto; opacity: 0.7; border-radius: 6px; }
.footer p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ── Mobile headshot (hidden on desktop, shown on mobile) ── */
.hero-mobile-photo {
  display: none;
}

/* ── RELATED SERVICES (service pages) ── */
.related-services { background: var(--off-white); }
.related-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.related-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.3s; display: block;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26,111,212,0.2); }
.related-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.related-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.related-card .arrow {
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.related-card:hover .arrow { gap: 8px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — LARGE PHONES (all phones)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 8px 16px !important; font-size: 0.8rem !important; }
  .hamburger { display: flex; }
  .mobile-menu { top: 72px; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-photo-container { display: none; }
  .hero-mobile-photo {
    display: block; margin: 0 auto 24px;
    width: 120px; height: 120px; border-radius: 50%;
    object-fit: cover; object-position: center top;
    border: 3px solid rgba(26,111,212,0.4);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(26,111,212,0.15);
  }
  .hero { padding: 92px 20px 56px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-badge { font-size: 0.62rem; padding: 5px 12px; margin-bottom: 18px; }
  .hero-text { margin: 0 auto 24px; font-size: 0.92rem; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn { padding: 11px 22px; font-size: 0.85rem; }

  .service-hero { padding: 84px 20px 48px; }
  .service-hero h1 { font-size: 1.7rem; }
  .service-hero-text { font-size: 0.92rem; }
  .breadcrumb { font-size: 0.7rem; margin-bottom: 14px; }

  .trust-bar { padding: 12px 16px; }
  .trust-inner { gap: 6px 20px; justify-content: center; }
  .trust-item { font-size: 0.75rem; gap: 6px; }
  .trust-icon { width: 14px; height: 14px; }

  .approach-grid, .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 18px; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.55rem; }
  .section-header p { font-size: 0.88rem; }
  .section-label { font-size: 0.65rem; }

  .approach-card, .why-card { padding: 28px 22px; }
  .approach-card h3 { font-size: 1.1rem; }
  .approach-card p, .why-card p { font-size: 0.82rem; }
  .approach-number { width: 40px; height: 40px; font-size: 1rem; }
  .approach-subtitle { font-size: 0.7rem !important; }
  .why-card h3 { font-size: 1rem; }

  .service-card { padding: 24px 18px; gap: 14px; }
  .service-card h3 { font-size: 0.9rem; }
  .service-card p { font-size: 0.8rem; }
  .service-icon { width: 40px; height: 40px; }

  .testimonial-card { padding: 28px 22px; }
  .testimonial-card blockquote { font-size: 0.82rem; margin-bottom: 18px; }
  .testimonial-name { font-size: 0.8rem; }
  .testimonial-detail { font-size: 0.68rem; }
  .google-badge { font-size: 0.72rem; margin-top: 28px; }

  .cta-section { padding: 56px 18px; }
  .cta-section h2 { font-size: 1.45rem; }
  .cta-section p { font-size: 0.88rem; margin-bottom: 24px; }
  .btn-white { padding: 13px 28px; font-size: 0.88rem; }
  .cta-note { font-size: 0.7rem; }

  .contact { padding: 44px 18px; }
  .contact-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-block h4 { font-size: 0.62rem; }
  .contact-block p { font-size: 0.82rem; }

  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }

  .related-card { padding: 22px 18px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (iPhone 14/13/12 and smaller, up to ~430px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 430px) {
  .nav { height: 56px; padding: 0 16px; }
  .nav-logo-img { height: 34px; }
  .nav-cta { padding: 8px 14px !important; font-size: 0.75rem !important; white-space: nowrap; }
  .mobile-menu { top: 56px; }

  .hero { padding: 78px 18px 48px; }
  .hero-mobile-photo { width: 100px; height: 100px; margin-bottom: 18px; border-width: 2px; }
  .hero-badge { font-size: 0.6rem; padding: 4px 10px; margin-bottom: 14px; letter-spacing: 0.08em; }
  .hero h1 { font-size: 1.55rem; margin-bottom: 14px; }
  .hero-text { font-size: 0.88rem; margin-bottom: 22px; line-height: 1.6; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 12px 18px; font-size: 0.85rem; }

  .service-hero { padding: 72px 18px 40px; }
  .service-hero h1 { font-size: 1.45rem; }

  .trust-bar { padding: 12px 16px; }
  .trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; }
  .trust-item { font-size: 0.72rem; gap: 6px; line-height: 1.4; }
  .trust-item:first-child { width: 100%; justify-content: center; }
  .trust-item:last-child { width: 100%; justify-content: center; }
  .trust-icon { width: 14px; height: 14px; flex-shrink: 0; }

  .section { padding: 44px 16px; }
  .section-header { margin-bottom: 30px; }
  .section-header h2 { font-size: 1.4rem; }
  .section-header p { font-size: 0.85rem; line-height: 1.65; }
  .section-label { font-size: 0.62rem; letter-spacing: 0.12em; }
  .section-label::before, .section-label::after { width: 16px; }

  .approach-card, .why-card { padding: 26px 20px; }
  .approach-card h3 { font-size: 1.05rem; }
  .approach-card p, .why-card p { font-size: 0.84rem; line-height: 1.6; }
  .approach-number { width: 38px; height: 38px; font-size: 0.95rem; }
  .approach-subtitle { font-size: 0.65rem !important; }
  .why-icon { width: 40px; height: 40px; }
  .why-card h3 { font-size: 0.95rem; }

  .service-card { padding: 22px 16px; gap: 12px; }
  .service-card h3 { font-size: 0.88rem; }
  .service-card p { font-size: 0.82rem; line-height: 1.55; }
  .service-icon { width: 38px; height: 38px; min-width: 38px; }

  .testimonial-card { padding: 26px 20px; }
  .testimonial-card::before { font-size: 2.2rem; top: 14px; left: 16px; }
  .testimonial-card blockquote { font-size: 0.84rem; line-height: 1.65; margin-bottom: 16px; }
  .testimonial-name { font-size: 0.8rem; }
  .testimonial-detail { font-size: 0.7rem; }
  .testimonial-stars { font-size: 0.78rem; margin-bottom: 14px; letter-spacing: 2px; }
  .testimonial-avatar { width: 38px; height: 38px; font-size: 0.78rem; }
  .google-badge { font-size: 0.72rem; margin-top: 26px; }

  .cta-section { padding: 48px 16px; }
  .cta-section h2 { font-size: 1.3rem; }
  .cta-section p { font-size: 0.85rem; margin-bottom: 22px; line-height: 1.6; }
  .btn-white { padding: 12px 24px; font-size: 0.85rem; }
  .cta-note { font-size: 0.7rem; }

  .map-section { height: 240px; }

  .contact { padding: 40px 16px; }
  .contact-inner { grid-template-columns: 1fr; gap: 22px; }
  .contact-block h4 { font-size: 0.62rem; margin-bottom: 8px; }
  .contact-block p { font-size: 0.82rem; line-height: 1.6; }

  .footer { padding: 24px 16px; }
  .footer-logo { height: 40px; }
  .footer p { font-size: 0.68rem; }
  .footer-links a { font-size: 0.68rem; }
  .footer-links { gap: 18px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — EXTRA SMALL PHONES (iPhone SE, ~375px and below)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .nav { height: 52px; padding: 0 14px; }
  .nav-logo-img { height: 30px; }
  .nav-cta { padding: 7px 12px !important; font-size: 0.7rem !important; }
  .mobile-menu { top: 52px; }

  .hero { padding: 72px 16px 42px; }
  .hero-mobile-photo { width: 88px; height: 88px; margin-bottom: 14px; }
  .hero-badge { font-size: 0.55rem; padding: 4px 9px; margin-bottom: 12px; }
  .hero h1 { font-size: 1.4rem; margin-bottom: 12px; }
  .hero-text { font-size: 0.82rem; margin-bottom: 18px; line-height: 1.6; }
  .hero-actions .btn { padding: 10px 16px; font-size: 0.8rem; }

  .service-hero { padding: 66px 16px 36px; }
  .service-hero h1 { font-size: 1.3rem; }
  .service-hero-text { font-size: 0.82rem; }

  .trust-item { font-size: 0.66rem; }
  .trust-inner { gap: 5px 16px; }

  .section { padding: 38px 14px; }
  .section-header h2 { font-size: 1.25rem; }
  .section-header p { font-size: 0.8rem; }

  .approach-card h3 { font-size: 0.95rem; }
  .approach-card p, .why-card p { font-size: 0.8rem; }
  .service-card h3 { font-size: 0.84rem; }
  .service-card p { font-size: 0.78rem; }
  .testimonial-card blockquote { font-size: 0.8rem; }

  .cta-section h2 { font-size: 1.2rem; }
  .cta-section p { font-size: 0.8rem; }
  .btn-white { padding: 11px 22px; font-size: 0.82rem; }
}
