/* ============================================================
   HOLDBACK — styles.css
   Independent Automotive Advisory · Toronto, Ontario
   ============================================================ */

/* ----------------------------------------------------------
   1. RESET & ROOT VARIABLES
   ---------------------------------------------------------- */

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

:root {
  --slate:   #1A2332;
  --orange:  #C94A00;
  --orange-dark: #A83D00;
  --dark:    #0D1520;
  --cream:   #F5F4F1;
  --white:   #FFFFFF;
  --stone:   #6B7280;
  --border:  #E0DDD8;
  --success: #10B981;
  --light:   #F5F4F1;

  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --shadow-sm:  0 1px 3px rgba(26,35,50,0.08), 0 1px 2px rgba(26,35,50,0.06);
  --shadow-md:  0 4px 12px rgba(26,35,50,0.10), 0 2px 6px rgba(26,35,50,0.06);
  --shadow-lg:  0 10px 30px rgba(26,35,50,0.12), 0 4px 12px rgba(26,35,50,0.08);
  --shadow-xl:  0 20px 50px rgba(26,35,50,0.18), 0 8px 20px rgba(26,35,50,0.10);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --transition: all 0.25s ease;

  --container: 1140px;
  --section-pad: 96px 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--slate);
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--slate);
}

p {
  color: var(--stone);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* ----------------------------------------------------------
   2. UTILITY CLASSES
   ---------------------------------------------------------- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 640px;
  line-height: 1.75;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

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

.bg-dark {
  background: var(--dark);
}

.bg-slate {
  background: var(--slate);
}

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

/* ----------------------------------------------------------
   3. BUTTONS
   ---------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,74,0,0.35);
}

.btn-slate {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}

.btn-slate:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,35,50,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.70);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ----------------------------------------------------------
   4. NAVIGATION
   ---------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: var(--slate);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(13,21,32,0.40);
}

/* nav-solid: always solid — no transparent phase, no JS dependency */
.nav.nav-solid {
  background: var(--slate);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(13,21,32,0.40);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1;
}

.nav-logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--orange);
}

.mobile-nav .mobile-nav-cta {
  margin-top: 24px;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

/* ----------------------------------------------------------
   5. HERO SECTION
   ---------------------------------------------------------- */

.hero {
  background: var(--slate);
  color: var(--white);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(201,74,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,74,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,74,0,0.15);
  border: 1px solid rgba(201,74,0,0.30);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.hero-social-proof::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.30);
}

/* Hero Card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  color: var(--slate);
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
}

.hero-card-list li::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-card-price {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stone);
  border: 1px solid var(--border);
}

.hero-card-price strong {
  color: var(--slate);
}

/* ----------------------------------------------------------
   6. TRUST BAR
   ---------------------------------------------------------- */

.trust-bar {
  background: var(--dark);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item .trust-icon {
  font-size: 0.95rem;
}

/* ----------------------------------------------------------
   7. HOW IT WORKS / STEPS
   ---------------------------------------------------------- */

.steps-section {
  padding: var(--section-pad);
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.step-card {
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--slate);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.65;
}

.step-connector {
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: var(--border);
}

.step-card:last-child .step-connector {
  display: none;
}

/* ----------------------------------------------------------
   8. SERVICES GRID / CARDS
   ---------------------------------------------------------- */

.services-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,74,0,0.25);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--slate);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.65;
}

.services-cta {
  text-align: center;
  margin-top: 44px;
}

/* Service Detail Cards (services.html) */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.service-detail-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,74,0,0.10);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.service-detail-header-text h3 {
  font-size: 1.3rem;
  color: var(--slate);
  margin-bottom: 8px;
}

.service-detail-header-text p {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.65;
}

.service-detail-list {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.55;
}

.service-detail-list li::before {
  content: '\2192';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   9. ABOUT SECTION
   ---------------------------------------------------------- */

.about-section {
  padding: var(--section-pad);
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-content p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.55;
}

.about-highlights li::before {
  content: '\2713';
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-quote {
  background: var(--cream);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-top: 32px;
}

.about-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--stone);
  line-height: 1.4;
}

/* ----------------------------------------------------------
   10. TESTIMONIALS
   ---------------------------------------------------------- */

.testimonials-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--stone);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-author span {
  display: block;
  color: var(--stone);
  font-weight: 400;
  margin-top: 2px;
}

.testimonials-footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--stone);
  font-style: italic;
}

/* ----------------------------------------------------------
   11. FAQ ACCORDION
   ---------------------------------------------------------- */

.faq-section {
  padding: var(--section-pad);
  background: var(--white);
}

.faq-container {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(201,74,0,0.35);
  box-shadow: 0 2px 12px rgba(201,74,0,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.2s;
  gap: 16px;
  user-select: none;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.45;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--stone);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item.active .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--stone);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ----------------------------------------------------------
   12. CTA BANNER
   ---------------------------------------------------------- */

.cta-section {
  background: var(--slate);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,74,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-inner p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   13. PRICING
   ---------------------------------------------------------- */

.pricing-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.pricing-intro {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 2px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--slate);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card.featured .pricing-badge {
  background: var(--orange);
}

.pricing-tier-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--slate);
  margin-bottom: 6px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--slate);
  line-height: 1;
  margin: 16px 0 4px;
}

.pricing-price sup {
  font-size: 1.1rem;
  vertical-align: super;
  font-family: var(--font-body);
  font-weight: 600;
}

.pricing-duration {
  font-size: 0.82rem;
  color: var(--stone);
  margin-bottom: 16px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.65;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.5;
}

.pricing-features li.included {
  color: var(--slate);
}

.pricing-features li .feat-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}

.pricing-features li.included .feat-icon {
  color: var(--success);
}

.pricing-features li.excluded {
  color: var(--stone);
  opacity: 0.55;
}

.pricing-features li.excluded .feat-icon {
  color: var(--stone);
}

/* Add-ons */
.addons-section {
  padding: var(--section-pad);
  background: var(--white);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.addon-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.addon-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.addon-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--slate);
}

.addon-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.addon-card p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.65;
}

/* Referral Section */
.referral-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.referral-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.referral-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.referral-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.referral-step-num {
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.referral-step p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.65;
  margin: 0;
  padding-top: 5px;
}

.referral-note {
  font-size: 0.82rem;
  color: var(--stone);
  font-style: italic;
  margin-top: 16px;
}

.referral-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  text-align: center;
}

.referral-visual .referral-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 8px;
}

.referral-visual p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.65;
}

/* Guarantee */
.guarantee-section {
  padding: 64px 0;
  background: var(--white);
}

.guarantee-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.guarantee-inner h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.guarantee-inner p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 12px;
}

.guarantee-sub {
  font-size: 0.875rem;
  font-style: italic;
}

/* ----------------------------------------------------------
   14. PAGE HEADER (inner pages)
   ---------------------------------------------------------- */

.page-header {
  background: var(--slate);
  padding: 120px 0 64px;
  color: var(--white);
}

.page-header .section-label {
  color: var(--orange);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  line-height: 1.75;
}

/* ----------------------------------------------------------
   15. HIGHLIGHT BOX
   ---------------------------------------------------------- */

.highlight-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin-bottom: 48px;
}

.highlight-box .highlight-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-box p {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.75;
  margin: 0;
}

/* ----------------------------------------------------------
   16. DELIVERABLES
   ---------------------------------------------------------- */

.deliverables-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.deliverable-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.deliverable-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,74,0,0.25);
}

.deliverable-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.deliverable-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--slate);
}

.deliverable-card p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   17. FORMS
   ---------------------------------------------------------- */

.form-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

label .required {
  color: var(--orange);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--slate);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(201,74,0,0.12);
}

input.error,
select.error,
textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}

.error-msg {
  display: none;
  font-size: 0.8rem;
  color: #EF4444;
  margin-top: 4px;
  font-weight: 500;
}

.error-msg.visible {
  display: block;
}

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

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.5;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
  margin-top: 1px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--stone);
  margin-top: 5px;
  line-height: 1.5;
}

.form-section-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-top: 32px;
}

.form-section-title:first-child {
  margin-top: 0;
}

/* ----------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------- */

.footer {
  background: var(--dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand .footer-logo span {
  color: var(--orange);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.65);
}

/* ----------------------------------------------------------
   19. FADE-IN ANIMATION
   ---------------------------------------------------------- */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ----------------------------------------------------------
   20. PRICING FAQ
   ---------------------------------------------------------- */

.pricing-faq-section {
  padding: 64px 0;
  background: var(--cream);
}

.pricing-faq-section .faq-container {
  margin-top: 32px;
}

/* ----------------------------------------------------------
   21. BOOKING PAGE
   ---------------------------------------------------------- */

.booking-hero {
  background: var(--slate);
  padding: 120px 0 48px;
  color: var(--white);
}

.booking-hero .step-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(201,74,0,0.12);
  border: 1px solid rgba(201,74,0,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.booking-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.booking-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.75;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 48px 0 80px;
  align-items: start;
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
}

.booking-form-card h2 {
  font-size: 1.3rem;
  color: var(--slate);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-card h3 {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-price-tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 14px;
}

.sidebar-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-checklist li,
.sidebar-commitment li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.5;
}

.sidebar-checklist li::before,
.sidebar-commitment li::before {
  content: '\2713';
  color: var(--success);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.sidebar-commitment {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sidebar-step-num {
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-step p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.5;
  margin: 0;
  padding-top: 2px;
}

.sidebar-trust-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.5;
}

/* Payment Block */
.payment-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 28px;
}

.payment-block h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--slate);
}

.payment-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.payment-block p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 20px;
}

.payment-secure-note {
  font-size: 0.78rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

/* ----------------------------------------------------------
   22. THANK YOU PAGE
   ---------------------------------------------------------- */

.ty-page {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.ty-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.ty-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 640px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.ty-icon {
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(201,74,0,0.30);
}

.ty-card h1 {
  font-size: 2.2rem;
  color: var(--slate);
  margin-bottom: 12px;
}

.ty-card .ty-subtitle {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.ty-steps {
  text-align: left;
  margin-bottom: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ty-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

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

.ty-step-num {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ty-step-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 3px;
}

.ty-step-content p {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.55;
  margin: 0;
}

.ty-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ty-social {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.ty-social p {
  font-size: 0.875rem;
  color: var(--stone);
  margin-bottom: 14px;
}

.ty-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ty-social-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.ty-social-links a:hover {
  background: var(--cream);
  border-color: var(--stone);
}

/* ----------------------------------------------------------
   23. RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-card {
    max-width: 480px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .referral-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .step-connector {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .trust-bar-inner {
    gap: 0;
  }

  .trust-item {
    padding: 8px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 50%;
    font-size: 0.78rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

  .service-detail-header {
    flex-direction: column;
    gap: 12px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    text-align: center;
    justify-content: center;
  }

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

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

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

  .trust-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

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

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .ty-card {
    padding: 36px 24px;
  }

  .booking-form-card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
