/* ============================================================
   CORICA SOLUTIONS — MAIN STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display&display=swap');

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ─────────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────────── */
:root {
  --bg:           #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B6B;
  --accent:       #C8724A;
  --accent-hover: #B5603A;
  --bg-light:     #FAF8F6;
  --border:       #EBEBEB;
  --white:        #FFFFFF;
  --dark:         #1A1A1A;

  --font-display: 'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --max-width:    1100px;
  --radius-card:  12px;
  --radius-btn:   8px;
  --radius-pill:  100px;

  --shadow-card:       0 2px 20px rgba(0,0,0,0.07);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.12);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: 64px; }
h2 { font-size: 48px; }
h3 { font-size: 24px; font-family: var(--font-body); font-weight: 600; }

p { font-size: 17px; color: var(--text-secondary); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

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

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
}

.section-header .label { display: block; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 1.5px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}
.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--white);
}

.btn-secondary-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-secondary-white:hover {
  background: var(--white);
  color: var(--text-primary);
}

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

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-logo-mark {
  display: flex;
  align-items: center;
  height: 56px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-mark img {
  height: 56px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.mobile-nav a:hover { color: var(--text-primary); }
.mobile-nav .btn {
  margin: 8px 24px;
  text-align: center;
}

/* ─────────────────────────────────────────
   FADE-IN ANIMATION (Intersection Observer)
───────────────────────────────────────── */
.fade-in {
  opacity: 1;
  transform: none;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.hero-deco-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 114, 74, 0.22) 0%, rgba(200, 114, 74, 0) 70%);
  opacity: 0.22;
  z-index: -1;
  pointer-events: none;
}

.hero-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.hero-trust {
  font-size: 14px;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

/* ─────────────────────────────────────────
   WHO WE HELP — 3-COL CARDS
───────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}

.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.who-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.who-card .icon { font-size: 36px; margin-bottom: 16px; }
.who-card h3 { margin-bottom: 12px; }
.who-card p { font-size: 16px; }

/* ─────────────────────────────────────────
   HOW IT WORKS — 3-STEP ROW
───────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
  margin-top: 0;
}

.step {
  position: relative;
  padding-top: 0;
}

.step-number {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--border);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content h3 { margin-bottom: 12px; }
.step-content p { font-size: 16px; }

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  color: var(--border);
  font-size: 24px;
}

/* ─────────────────────────────────────────
   BENEFITS — 3x2 GRID
───────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.benefit-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.benefit-card .icon { font-size: 28px; margin-bottom: 14px; }
.benefit-card h3 { font-size: 17px; margin-bottom: 8px; }
.benefit-card p { font-size: 15px; line-height: 1.6; }

/* ─────────────────────────────────────────
   WHAT YOU GET — 2-COL
───────────────────────────────────────── */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  color: var(--text-primary);
}

.feature-list li .check {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.store-preview {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.store-preview span {
  font-size: 15px;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  border-left: 3px solid var(--accent);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-card .client-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-card .client-type {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────
   PRICING TEASER
───────────────────────────────────────── */
.pricing-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.teaser-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.teaser-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.teaser-card .tier-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.teaser-card .tier-price {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--text-primary);
}

.popular-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.teaser-card.featured {
  border-top: 4px solid var(--accent);
}

/* ─────────────────────────────────────────
   FINAL CTA SECTION (dark)
───────────────────────────────────────── */
.cta-dark {
  text-align: center;
}

.cta-dark h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-dark .sub {
  color: #9B9B9B;
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ─────────────────────────────────────────
   PRICING PAGE — TIER CARDS
───────────────────────────────────────── */
.pricing-header {
  padding-top: 140px;
  padding-bottom: 80px;
}

.pricing-header h1 { margin-bottom: 16px; }
.pricing-header p { font-size: 19px; max-width: 540px; }

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: box-shadow 0.2s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-card-hover); }

.pricing-card.featured {
  border-top: 4px solid var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card .tier-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.pricing-card .price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-card .price-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-card .tier-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

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

.pricing-features li .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─────────────────────────────────────────
   ADD-ONS TABLE
───────────────────────────────────────── */
.addons-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0;
}

.addons-table th {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.addons-table td {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.addons-table thead th { background: var(--white); }
.addons-table tbody tr:nth-child(even) td { background: var(--white); }
.addons-table tbody tr:nth-child(odd) td  { background: var(--bg-light); }
.addons-table tbody tr:last-child td { border-bottom: none; }

.addons-table .price-cell {
  font-weight: 600;
  color: var(--text-primary);
}

.type-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.type-badge.monthly {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ─────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  user-select: none;
  gap: 16px;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  transition: transform 0.25s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .tagline {
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.6;
  max-width: 280px;
}

.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav ul a {
  font-size: 15px;
  color: #6B6B6B;
  transition: color 0.2s ease;
}
.footer-nav ul a:hover { color: var(--white); }

.footer-cta h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-cta p {
  font-size: 15px;
  color: #6B6B6B;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #2A2A2A;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #4A4A4A;
}

/* ─────────────────────────────────────────
   PRICING PAGE HEADER STANDALONE
───────────────────────────────────────── */
.page-header {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--white);
}
.page-header .label { display: block; }
.page-header h1 { margin-bottom: 16px; }
.page-header .sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET & MOBILE
───────────────────────────────────────── */
@media (max-width: 900px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }

  .who-grid,
  .benefits-grid,
  .testimonials-grid,
  .pricing-teaser-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step-arrow { display: none; }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }

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

@media (max-width: 640px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }

  section { padding: 64px 0; }
  .page-header { padding-top: 110px; padding-bottom: 40px; }

  .nav-right { display: none; }
  .hamburger { display: flex; }

  .who-grid,
  .benefits-grid,
  .testimonials-grid,
  .pricing-teaser-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: 40px; }
  .hero-sub { font-size: 17px; }

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

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

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

  .addons-table { font-size: 14px; }
  .addons-table td,
  .addons-table th { padding: 12px 14px; }
}

/* ─────────────────────────────────────────
   WHY US — STATS FLEX ROW
───────────────────────────────────────── */
.stats-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid #EBEBEB;
  flex: 1;
}

.stat-item--last {
  border-right: none;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.1;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.stat-item:hover .stat-number {
  color: #C8724A;
}

.stat-item .stat-label {
  font-family: var(--font-body);
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .stats-flex {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 0 0 50%;
    padding: 24px 16px;
    border-right: none;
    border-bottom: 1px solid #EBEBEB;
  }
  .stat-item--last {
    border-bottom: none;
  }
}

/* ─────────────────────────────────────────
   PRICING PAGE — ONE-TIME BADGE (FIX 6)
───────────────────────────────────────── */
.type-badge.one-time-badge {
  background: #F0EFED;
  color: #6B6B6B;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 20px;
  padding: 3px 10px;
  border: none;
  display: inline-block;
}

/* ─────────────────────────────────────────
   PRICING PAGE — TABLE HEADER (FIX 7)
───────────────────────────────────────── */
.addons-table thead th {
  font-size: 12px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.08em;
  background: #F5F4F2;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* ─────────────────────────────────────────
   PRICING — TWO CARD CENTERED LAYOUT
───────────────────────────────────────── */
.pricing-two-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-two-col .pricing-card {
  max-width: 420px;
  flex: 1;
  transform: none;
  margin-top: 0;
}

@media (max-width: 720px) {
  .pricing-two-col {
    flex-direction: column;
    align-items: center;
  }
  .pricing-two-col .pricing-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ─────────────────────────────────────────
   HOME PRICING TEASER — TWO CARD LAYOUT
───────────────────────────────────────── */
.home-pricing-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.home-pricing-card {
  flex: 1;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #E8E4DF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.home-tier-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B5632A;
  margin-bottom: 16px;
}

.home-price {
  font-family: var(--font-display);
  font-size: 52px;
  color: #1A1A1A;
  line-height: 1;
  margin-bottom: 6px;
}

.home-price-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: #9B9B9B;
  margin-bottom: 16px;
}

.home-tier-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.6;
  margin-bottom: 20px;
}

.home-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #3A3A3A;
  line-height: 2;
}

.home-features li .check {
  color: #B5632A;
  font-weight: 700;
  flex-shrink: 0;
}

.home-upsell {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: #B5632A;
  margin-bottom: 24px;
  line-height: 1.5;
}

.home-pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 2px solid #B5632A;
  color: #B5632A;
  border-radius: var(--radius-btn);
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-pricing-btn:hover {
  background: #B5632A;
  color: #ffffff;
}

@media (max-width: 720px) {
  .home-pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  .home-pricing-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ─────────────────────────────────────────
   CONTACT PAGE — FORM
───────────────────────────────────────── */
.contact-form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #3A3A3A;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #1A1A1A;
  background: #ffffff;
  border: 1px solid #DDDAD6;
  border-radius: 8px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #B5632A;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-submit-btn {
  width: 100%;
  padding: 16px;
  background: #B5632A;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.contact-submit-btn:hover {
  background: #9E5525;
}

.contact-success {
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  color: #3A3A3A;
  padding: 60px 20px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   FOOTER LOGO IMAGE
───────────────────────────────────────── */
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

/* ─────────────────────────────────────────
   WHY US — THREE COLUMN LAYOUT
───────────────────────────────────────── */
.why-cols {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 0 0;
}

.why-col {
  flex: 1;
  min-width: 0;
}

.why-col svg {
  display: block;
  flex-shrink: 0;
}

.why-heading {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 16px 0 8px;
}

.why-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .why-cols {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0 0;
  }
  .why-col {
    width: 100%;
  }
}

/* ─────────────────────────────────────────
   MOBILE — 768px BREAKPOINT
───────────────────────────────────────── */
@media (max-width: 768px) {

  /* GLOBAL */
  .container,
  section > div,
  [style*="max-width: 1100px"],
  [style*="max-width: 960px"],
  [style*="max-width: 900px"],
  [style*="max-width: 640px"] {
    padding-left: 24px !important;
    padding-right: 24px !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* NAV */
  nav {
    padding: 16px 24px !important;
  }

  /* NAV MOBILE MENU — matches existing .mobile-nav implementation */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .nav-links.open {
    display: flex;
  }

  /* HERO */
  .hero {
    padding: 60px 24px !important;
    text-align: center;
  }
  .hero h1 {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }
  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .hero-buttons a {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
  }

  /* WHO WE HELP */
  .who-grid {
    grid-template-columns: 1fr !important;
  }

  /* PROCESS STEPS */
  .steps-row {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .step-arrow {
    display: none !important;
  }

  /* WHAT'S INCLUDED */
  .what-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* TESTIMONIALS */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  /* EMAIL CAPTURE FORM — stack input and button */
  form[name="sample-store"] {
    flex-direction: column !important;
    width: 100% !important;
  }
  form[name="sample-store"] input {
    width: 100% !important;
  }
  form[name="sample-store"] button {
    width: 100% !important;
  }

  /* PRICING CARDS — inline flex rows */
  [style*="display: flex"][style*="gap: 32px"],
  [style*="display:flex"][style*="gap: 32px"] {
    flex-direction: column !important;
    align-items: center !important;
  }

  /* PRICING CARDS — individual card widths */
  [style*="max-width: 420px"],
  [style*="max-width: 400px"],
  [style*="max-width: 300px"] {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* WHY US FLEX ROWS */
  [style*="gap: 48px"] {
    flex-direction: column !important;
    gap: 40px !important;
  }

  /* WHY US GRID (inline grid) */
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* DARK CTA / EMAIL CAPTURE HEADINGS */
  [style*="background: #1A1A1A"] h2,
  [style*="background:#1A1A1A"] h2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* SECTION HEADINGS */
  h1 { font-size: 36px !important; }
  h2 { font-size: 30px !important; }

  /* SECTION PADDING */
  section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

}
