/* ============================================
   BOOSTLAB v3 — SHARED STYLES
   No @font-face here — loaded separately per level
   ============================================ */

/* ---- VARIABLES ---- */
:root {
  --black:        #393939;
  --cream:        #FBF8EF;
  --orange:       #ED8762;
  --sand:         #D7CCC3;
  --green:        #4F6E57;
  --white:        #ffffff;
  --green-light:  rgba(79,110,87,0.10);
  --orange-light: rgba(237,135,98,0.12);

  --font-title:  'Garet', 'Arial Black', sans-serif;
  --font-body:   'Inter', Arial, sans-serif;
  --font-accent: 'ShadowsIntoLight', cursive;

  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(57,57,57,0.07);
  --shadow-md: 0 8px 32px rgba(57,57,57,0.12);
  --shadow-lg: 0 20px 56px rgba(57,57,57,0.16);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem);   letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; line-height: 1.8; opacity: 0.82; }
.lead { font-size: 1.12rem; opacity: 1; line-height: 1.75; }

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ---- GRID ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 100px;
  font-family: var(--font-title); font-size: 0.9rem; font-weight: 800;
  cursor: pointer; border: none; transition: all 0.25s ease;
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-primary   { background: var(--orange); color: var(--white); }
.btn-primary:hover   { background: #d9724d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(237,135,98,0.38); }
.btn-dark      { background: var(--black); color: var(--cream); }
.btn-dark:hover      { background: #2a2a2a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(57,57,57,0.3); }
.btn-outline   { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover   { background: var(--black); color: var(--cream); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-2px); }
.btn-lg  { padding: 17px 36px; font-size: 0.95rem; }
.btn-xl  { padding: 20px 44px; font-size: 1.02rem; }

/* ---- LABELS / TAGS ---- */
.section-label {
  display: inline-block; margin-bottom: 12px;
  font-family: var(--font-title); font-size: 0.7rem;
  font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
}
.section-label-light { color: rgba(251,248,239,0.5); }

.tag {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-family: var(--font-title); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
}
.tag-green  { background: var(--green-light); color: var(--green); }
.tag-orange { background: var(--orange-light); color: #bf5d3b; }
.tag-sand   { background: var(--sand); color: var(--black); }
.tag-light  { background: rgba(251,248,239,0.15); color: var(--cream); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(251,248,239,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(57,57,57,0.08);
  padding: 13px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-title); font-size: 0.8rem; font-weight: 800;
  color: var(--black); opacity: 0.6; transition: opacity 0.2s;
  letter-spacing: 0.03em; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--orange); border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { opacity: 1; color: var(--green); }
.nav-cta { margin-left: 6px; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; padding: 150px 0 90px;
  background: var(--cream); display: flex; align-items: center;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

/* Left — all text left aligned */
.hero-left { text-align: left; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.hero h1 { margin-bottom: 20px; text-align: left; }
.hero-h1-accent { color: var(--green); }
.hero-sub {
  font-family: var(--font-title); font-weight: 800;
  font-size: 1.18rem; color: var(--black); opacity: 0.85;
  margin-bottom: 18px; text-align: left;
}
.hero-body { margin-bottom: 38px; max-width: 500px; font-size: 1rem; text-align: left; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }
.hero-text-link {
  font-family: var(--font-title); font-weight: 800; font-size: 0.86rem;
  color: var(--black); opacity: 0.6;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.hero-text-link:hover { opacity: 1; gap: 10px; }

/* Right — visual */
.hero-right { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.hero-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}
.hero-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(251,248,239,0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.hero-badge-icon { font-size: 1.6rem; flex-shrink: 0; }
.hero-badge-label { font-family: var(--font-title); font-size: 0.72rem; font-weight: 800; opacity: 0.55; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-badge-value { font-family: var(--font-title); font-weight: 800; font-size: 1rem; }

.hero-float {
  position: absolute; top: 32px; right: -20px;
  background: var(--green); color: var(--cream);
  border-radius: var(--radius-lg); padding: 18px 22px;
  box-shadow: var(--shadow-md); min-width: 150px;
}
.hero-float-number {
  font-family: var(--font-title); font-size: 2rem; font-weight: 800;
  color: var(--cream); line-height: 1;
}
.hero-float-label { font-size: 0.72rem; opacity: 0.7; margin-top: 4px; }

/* ============================================
   SECTION DIVIDERS — clean diagonal/wave, no gaps
   Key: divider inherits bg from section above it
   ============================================ */
.divider-cream-to-black { background: var(--cream); line-height: 0; margin: 0; padding: 0; }
.divider-black-to-cream { background: var(--black);  line-height: 0; margin: 0; padding: 0; }
.divider-cream-to-green { background: var(--cream);  line-height: 0; margin: 0; padding: 0; }
.divider-green-to-cream { background: var(--green);  line-height: 0; margin: 0; padding: 0; }
.divider-cream-to-black svg,
.divider-black-to-cream svg,
.divider-cream-to-green svg,
.divider-green-to-cream svg { display: block; width: 100%; height: 64px; }

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section { background: var(--black); padding: 90px 0; }
.problem-section h2 { color: var(--cream); }
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; border-radius: var(--radius-lg);
  overflow: hidden; margin: 52px 0 52px;
}
.problem-item {
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.25s;
}
.problem-item:hover { background: rgba(237,135,98,0.1); }
.problem-emoji { font-size: 2.2rem; margin-bottom: 16px; }
.problem-item h4 { color: var(--cream); margin-bottom: 10px; font-size: 1rem; }
.problem-item p  { color: rgba(251,248,239,0.65); font-size: 0.9rem; line-height: 1.7; opacity: 1; }
.problem-footer  { text-align: center; max-width: 660px; margin: 0 auto; }
.problem-footer p { color: rgba(251,248,239,0.72); font-size: 1.02rem; opacity: 1; margin-bottom: 8px; }
.problem-footer strong { color: var(--orange); }

/* ============================================
   BOOST CARDS (homepage modules)
   ============================================ */
.boosts-section { background: var(--cream); padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.02rem; }

.boost-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.boost-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--sand);
  padding: 40px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.boost-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.boost-card.c-social::before  { background: var(--orange); }
.boost-card.c-business::before { background: var(--green); }
.boost-card.c-growth::before  { background: var(--sand); }

.boost-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.boost-card-tag {
  font-family: var(--font-title); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.38;
  margin-bottom: 6px;
}
.boost-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px; flex-shrink: 0;
}
.boost-card-icon.orange { background: var(--orange-light); }
.boost-card-icon.green  { background: var(--green-light); }
.boost-card-icon.sand   { background: rgba(215,204,195,0.35); }

.boost-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.boost-card-tagline {
  font-family: var(--font-title); font-size: 0.83rem; font-weight: 800;
  color: var(--orange); margin-bottom: 22px;
}
.boost-card-features { flex: 1; margin-bottom: 24px; }
.boost-card-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; font-size: 0.9rem;
  border-bottom: 1px solid rgba(215,204,195,0.5);
}
.boost-card-features li:last-child { border-bottom: none; }
.ci { color: var(--green); font-weight: 800; flex-shrink: 0; }

.boost-card-result {
  background: var(--cream); border-radius: var(--radius);
  padding: 13px 16px; margin-bottom: 22px;
  font-family: var(--font-title); font-size: 0.84rem; font-weight: 800;
}
.boost-card-link {
  font-family: var(--font-title); font-size: 0.84rem; font-weight: 800;
  color: var(--green); display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s; margin-top: auto;
}
.boost-card-link:hover { gap: 10px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section { background: var(--green); padding: 100px 0; }
.how-section h2 { color: var(--cream); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; margin-top: 60px;
}
.step { text-align: center; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-family: var(--font-title); font-size: 1.9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(237,135,98,0.4);
}
.step h4 { color: var(--cream); margin-bottom: 10px; font-size: 0.98rem; }
.step p  { color: rgba(251,248,239,0.68); font-size: 0.86rem; opacity: 1; line-height: 1.65; }
.step-time {
  display: inline-block; margin-top: 12px; padding: 4px 14px;
  background: rgba(251,248,239,0.1); border-radius: 100px;
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 800;
  color: rgba(251,248,239,0.7);
}

/* ============================================
   STATS / RESULTS
   ============================================ */
.results-section { background: var(--cream); padding: 100px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 52px; }
.stat-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 44px 32px; text-align: center;
  border: 2px solid var(--sand);
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--orange); }
.stat-number { font-family: var(--font-title); font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 10px; }
.stat-label  { font-family: var(--font-title); font-size: 0.96rem; font-weight: 800; margin-bottom: 10px; }
.stat-desc   { font-size: 0.85rem; opacity: 0.6; line-height: 1.7; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--black); padding: 100px 0; }
.testimonials-section h2 { color: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: 36px;
  position: relative; transition: background 0.25s;
}
.testimonial:hover { background: rgba(255,255,255,0.08); }
.testimonial::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: var(--font-title); font-size: 4.5rem; font-weight: 800;
  color: var(--orange); opacity: 0.18; line-height: 1;
}
.testimonial-text  { font-size: 0.93rem; line-height: 1.75; font-style: italic; color: rgba(251,248,239,0.82); margin-bottom: 22px; }
.testimonial-author { font-family: var(--font-title); font-weight: 800; font-size: 0.86rem; color: var(--cream); }
.testimonial-role   { font-size: 0.78rem; color: rgba(251,248,239,0.42); margin-top: 2px; }

/* ============================================
   CASESTUDY
   ============================================ */
.case-card {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.case-header {
  background: var(--green); padding: 32px 44px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.case-header h3 { color: var(--cream); font-size: 1.25rem; }
.case-header-right { text-align: right; }
.case-header-label { font-family: var(--font-title); font-size: 0.72rem; font-weight: 800; color: rgba(251,248,239,0.55); text-transform: uppercase; letter-spacing: 0.06em; }
.case-header-value { font-family: var(--font-title); font-weight: 800; font-size: 1.1rem; color: var(--cream); margin-top: 4px; }
.case-body { padding: 44px; }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-start; }
.case-problems li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; padding: 6px 0;
}
.case-problems li::before { content: '→'; color: var(--orange); flex-shrink: 0; }
.case-systems li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; padding: 5px 0;
}
.case-systems .ci { color: var(--green); }
.case-results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.case-result {
  background: var(--cream); border-radius: var(--radius);
  padding: 16px 18px;
}
.case-result-num   { font-family: var(--font-title); font-size: 1.5rem; font-weight: 800; color: var(--green); line-height: 1; }
.case-result-label { font-size: 0.76rem; opacity: 0.6; margin-top: 3px; }
.case-result.hl    { background: rgba(79,110,87,0.1); }
.case-quote {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 24px 28px; margin-top: 18px;
}
.case-quote-text   { font-family: var(--font-accent); font-size: 1.05rem; color: var(--orange); margin-bottom: 10px; }
.case-quote-body   { font-size: 0.85rem; color: rgba(251,248,239,0.75); line-height: 1.75; font-style: italic; margin-bottom: 12px; }
.case-quote-author { font-family: var(--font-title); font-weight: 800; font-size: 0.8rem; color: var(--cream); }
.case-roi {
  background: rgba(79,110,87,0.1); border-left: 3px solid var(--green);
  border-radius: var(--radius); padding: 16px 20px; margin-top: 14px;
}
.case-roi-label { font-family: var(--font-title); font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); margin-bottom: 6px; }
.case-roi-line  { font-size: 0.86rem; opacity: 0.72; }
.case-roi-total { font-family: var(--font-title); font-weight: 800; color: var(--green); margin-top: 6px; font-size: 1rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 100px 0; }
.faq-list { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 3px; }
.faq-item { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-title); font-size: 0.94rem; font-weight: 800;
  color: var(--black); text-align: left; transition: background 0.2s;
}
.faq-question:hover { background: var(--cream); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: all 0.25s;
  font-family: var(--font-title); font-weight: 800; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 28px 22px; font-size: 0.92rem; opacity: 0.76; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: var(--orange); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.07); pointer-events: none; }
.cta-blob-1 { width: 380px; height: 380px; top: -160px; left: -80px; }
.cta-blob-2 { width: 280px; height: 280px; bottom: -100px; right: -60px; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p  { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-meta { margin-top: 22px; font-size: 0.82rem; color: rgba(255,255,255,0.65); position: relative; z-index: 1; }
.cta-meta span { margin: 0 12px; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero { padding: 148px 0 84px; position: relative; overflow: hidden; }
.page-hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.page-hero-blob-1 { width: 480px; height: 480px; top: -200px; right: -120px; background: radial-gradient(circle, rgba(79,110,87,0.09) 0%, transparent 70%); }
.page-hero-blob-2 { width: 300px; height: 300px; bottom: -80px; left: -60px;  background: radial-gradient(circle, rgba(237,135,98,0.07) 0%, transparent 70%); }
.page-hero-inner { max-width: 740px; position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero-tagline { font-family: var(--font-title); font-weight: 800; font-size: 1.2rem; margin-bottom: 14px; }
.page-hero-sub { font-size: 1.1rem; opacity: 0.72; line-height: 1.75; max-width: 620px; }

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 60px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px; border: 2px solid var(--sand);
  box-shadow: var(--shadow-sm); transition: all 0.3s;
  display: flex; flex-direction: column;
}
.pricing-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.featured { background: var(--green); border-color: var(--green); }
.pricing-card.featured * { color: var(--cream) !important; }
.pricing-card.featured .pricing-features li { border-bottom-color: rgba(251,248,239,0.15) !important; }
.pricing-badge {
  display: inline-block; padding: 4px 12px; background: var(--orange);
  color: white !important; border-radius: 100px;
  font-family: var(--font-title); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.06em; margin-bottom: 14px;
}
.pricing-name { font-family: var(--font-title); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.45; margin-bottom: 6px; }
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.pricing-price { font-family: var(--font-title); font-size: 2.6rem; font-weight: 800; margin: 14px 0 4px; line-height: 1; }
.pricing-price span { font-size: 0.9rem; font-weight: 400; opacity: 0.5; }
.pricing-period { font-size: 0.8rem; opacity: 0.5; margin-bottom: 24px; }
.pricing-features { flex: 1; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: 0.88rem; border-bottom: 1px solid rgba(215,204,195,0.3); line-height: 1.5; }
.pricing-features li:last-child { border-bottom: none; }

/* ============================================
   AANPAK CARDS
   ============================================ */
.aanpak-list { display: flex; flex-direction: column; gap: 18px; max-width: 760px; margin: 0 auto; }
.aanpak-card {
  display: grid; grid-template-columns: 70px 1fr; gap: 24px; align-items: flex-start;
  padding: 32px 36px; background: var(--white);
  border-radius: var(--radius-xl); border: 2px solid var(--sand);
  box-shadow: var(--shadow-sm); transition: all 0.25s;
}
.aanpak-card:hover { box-shadow: var(--shadow-md); transform: translateX(6px); border-color: var(--orange); }
.aanpak-num { font-family: var(--font-title); font-size: 2.8rem; font-weight: 800; color: var(--orange); opacity: 0.28; line-height: 1; }
.aanpak-card h3 { margin-bottom: 8px; }
.aanpak-card p  { font-size: 0.92rem; }

/* ============================================
   CHECKLIST
   ============================================ */
.checklist li { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--sand); font-size: 0.96rem; }
.checklist li:last-child { border-bottom: none; }
.cl-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.cl-yes { background: rgba(79,110,87,0.14); color: var(--green); }
.cl-no  { background: rgba(237,135,98,0.14); color: #bf5d3b; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form { max-width: 680px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-family: var(--font-title); font-size: 0.72rem; font-weight: 800; margin-bottom: 6px; opacity: 0.58; letter-spacing: 0.04em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--sand); border-radius: var(--radius);
  background: var(--white); font-family: var(--font-body);
  font-size: 0.95rem; color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(79,110,87,0.1); }
textarea { resize: vertical; min-height: 120px; }
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='%23393939' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px;
}
.form-note { font-size: 0.78rem; opacity: 0.5; margin-top: 10px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--black); color: var(--cream); padding: 68px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 40px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-tagline { font-size: 0.86rem; opacity: 0.48; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-family: var(--font-title); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 0.87rem; opacity: 0.52; transition: opacity 0.2s; }
.footer-col li a:hover { opacity: 1; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(251,248,239,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.78rem; opacity: 0.32; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-green  { color: var(--green); }
.text-orange { color: var(--orange); }
.text-cream  { color: var(--cream); }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.divider-line { border: none; border-top: 1px solid var(--sand); margin: 48px 0; }

/* ============================================
   SCROLL FADE-UP
   ============================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-float { right: -8px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.85rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-right { display: none; }
  .grid-2, .grid-3, .boost-cards-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .case-results { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(251,248,239,0.97); backdrop-filter: blur(14px);
    padding: 28px 24px; gap: 18px; box-shadow: var(--shadow-lg); z-index: 99;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .aanpak-card { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero { padding: 120px 0 72px; }
  .pricing-wrap { grid-template-columns: 1fr; }
}
