/* ══════════════════════════════════════════
   EmailBarista — Homepage
   ══════════════════════════════════════════ */

/* Mega menu styles moved to global.css */

/* ── BOOK A CALL BUTTON ── */
.btn-book-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: #333333;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  width: 400px;
}

.btn-book-call:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* ── HERO ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-top {
  background: var(--red);
  padding: 72px 64px 64px;
  width: 100%;
  box-sizing: border-box;
}

.hero-top h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 5.5vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 32px;
  text-align: left;
  width: 100%;
}

h1 em { font-style: italic; color: rgba(255,255,255,0.45); }

.hero-desc {
  font-size: 1.5rem;
  color: white;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 400;
  text-align: left;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-cta-divider {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-cta-vline {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
}
.hero-cta-trust {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 180px;
}
.cta-wrapper { padding: 0; margin-top: 50px; }

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: var(--brown);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  width: auto;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.hero-btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* Hero bottom row (photo area) */
.hero-bottom-row {
  background: var(--cream-dark);
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.hero-bottom-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ede4d8 0%, #d9c9b4 100%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide.active {
  opacity: 1;
}

.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px 60px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(61,43,31,0.3);
}

/* Floating stats card */
.hero-card {
  display: block;
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(61,43,31,0.18);
  z-index: 3;
  transition: opacity 0.3s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.hero-card:hover {
  box-shadow: 0 28px 90px rgba(61,43,31,0.22);
}

.hero-card.card-fading {
  opacity: 0;
}

.hero-card-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brown);
  line-height: 1.2;
  margin: 0 0 16px 0;
}

.hero-card-stats {
  display: flex;
  align-items: stretch;
  background: var(--cream);
  border-radius: 14px;
  padding: 18px 12px;
  margin-top: 20px;
  margin-bottom: 0;
  gap: 0;
}

.hero-card-stat { flex: 1; text-align: center; padding: 0 8px; }
.hero-card-stat + .hero-card-stat { border-left: 1px solid rgba(61,43,31,0.1); }

.hero-card-stat-val {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-card-stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1.3;
}

.hero-card-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.hero-card-text strong { color: var(--brown); }

.hero-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--brown);
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.hero-card-link:hover { background: var(--red); color: #fff; }

.hero-card-dots { display: flex; justify-content: center; gap: 6px; }
.hcd { height: 6px; border-radius: 3px; background: rgba(61,43,31,0.15); }
.hcd.active { width: 20px; background: var(--red); }
.hcd:not(.active) { width: 6px; border-radius: 50%; }

/* Nav arrows */
.hero-nav {
  position: absolute;
  bottom: 48px;
  left: 60px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  font-size: 1.3rem;
  color: var(--brown);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(61,43,31,0.1);
  transition: background 0.2s;
  line-height: 1;
}

.hero-nav-btn:hover { background: white; }

/* ── EMAIL CARD ── */
.email-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(61,43,31,0.12), 0 2px 8px rgba(61,43,31,0.06);
  overflow: hidden;
  border: 1px solid rgba(61,43,31,0.06);
}

.email-card-header {
  background: var(--red);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.email-card-header .dots { display: flex; gap: 6px; }
.email-card-header .dot  { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.email-card-header .dot.active { background: white; }
.email-meta { margin-left: auto; font-size: 0.75rem; opacity: 0.8; font-weight: 500; }
.email-card-body { padding: 28px; }

.email-subject {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.email-metrics {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  padding: 16px;
  background: var(--cream);
  border-radius: 12px;
}

.metric { text-align: center; flex: 1; }
.metric-val { font-family: 'Inter Tight', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--red); }
.metric-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

.email-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag { padding: 5px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.tag-green { background: #E8F5E9; color: #2E7D32; }
.tag-red   { background: rgba(217,48,37,0.08); color: var(--red); }
.tag-tan   { background: rgba(196,168,130,0.15); color: #7A5C38; }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  padding: 16px 0;
  margin: 60px 0 0;
  background: var(--red);
}

.ticker-track {
  display: flex;
  gap: 40px;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.03em;
}

.ticker-item::after {
  content: '•';
  font-style: normal;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* ── SECTION OVERRIDES (homepage variants) ── */
section { padding: 72px 64px; }
section.hero-section { padding: 0; }

.section-label {
  font-size: 0.75rem;
  color: var(--tan);
}

h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.section-intro {
  font-size: 1.5rem;
  color: var(--muted);
  max-width: 100%;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: white;
  border-radius: 32px;
  max-width: 100%;
  margin: 0;
  padding: 56px;
  box-shadow: 0 4px 40px rgba(61,43,31,0.06);
}

.how-header { margin-bottom: 32px; }
.how-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 36px;
  align-items: stretch;
}

.steps { display: flex; flex-direction: column; gap: 0; height: 100%; justify-content: space-between; }

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(61,43,31,0.06);
  transition: all 0.2s;
}

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

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(217,48,37,0.08);
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.step-title { font-weight: 700; font-size: 1rem; color: var(--brown); margin-bottom: 4px; }
.step-desc  { font-size: 1.5rem; color: var(--muted); line-height: 1.6; }

.how-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  background: var(--cream);
}

.how-preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-preview-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  height: 100%;
  box-sizing: border-box;
  justify-content: center;
}

.preview-bubble {
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(61,43,31,0.06);
  font-size: 0.85rem;
  line-height: 1.6;
  border: 1px solid rgba(61,43,31,0.05);
}

.preview-bubble .bubble-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 6px;
}

.preview-bubble strong { color: var(--brown); font-weight: 600; }

/* ── SERVICES GRID ── */
.services-header {
  text-align: left;
  max-width: 100%;
  margin: 0 auto 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(61,43,31,0.08);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(61,43,31,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured { background: var(--brown); color: white; border-color: var(--brown); }

.service-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }

.service-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--brown);
}

.service-card.featured .service-name { color: white; }

.service-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.service-desc { font-size: 1.5rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.65); }

.service-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }

.include-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text); }
.service-card.featured .include-item { color: rgba(255,255,255,0.85); }

.include-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(217,48,37,0.1);
  color: var(--red);
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.include-check::after { content: '✓'; }
.service-card.featured .include-check { background: rgba(255,255,255,0.15); color: white; }

/* Homepage .btn override */
.btn {
  gap: 6px;
  padding: 14px 28px;
  border-radius: 60px;
  font-size: 0.9rem;
  margin-top: auto;
}

.btn-outline:hover { transform: translateY(-1px); }

.service-card.featured .btn-white { background: white; color: var(--brown); }
.service-card.featured .btn-white:hover { background: var(--cream); transform: translateY(-1px); }

.service-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 4px;
  line-height: 1.2;
}

.service-price span { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.service-card.featured .service-price { color: white; }
.service-card.featured .service-price span { color: rgba(255,255,255,0.6); }

/* ── RESULTS ── */
#how { padding: 72px 0; }
#services { padding: 80px 60px 100px; }
.results-section { background: var(--brown); color: white; padding: 72px 64px; }
.results-section h2 { color: white; }
.results-section .section-label { color: var(--tan); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 100%;
  margin: 0;
}

.result-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px;
  transition: background 0.2s;
}

.result-card:hover { background: rgba(255,255,255,0.1); }

.result-big {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.result-desc { font-size: 1.5rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

.results-header {
  max-width: 100%;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 0px 80px;
  box-sizing: border-box;
}
.testimonials-header { text-align: left; margin-bottom: 40px; }

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

.testi-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(61,43,31,0.07);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(61,43,31,0.09); }

.testi-quote {
  font-size: 2rem;
  color: var(--red);
  font-family: 'Inter Tight', sans-serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testi-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--brown); }
.testi-role { font-size: 0.78rem; color: var(--muted); }
.stars { color: #F59E0B; font-size: 0.75rem; margin-bottom: 2px; }

/* Trust seal */
.seal {
  text-align: center;
  margin: 40px auto 0;
  padding: 24px;
  background: var(--cream);
  border-radius: 16px;
  max-width: 360px;
  border: 1px solid rgba(61,43,31,0.08);
}

.seal-icon { font-size: 2.5rem; margin-bottom: 8px; }
.seal-text { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--red);
  color: white;
  border-radius: 32px;
  max-width: 100%;
  margin: 0 0 72px;
  padding: 64px;
  text-align: center;
}

.cta-section h2 { color: white; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-section .section-label { color: rgba(255,255,255,0.6); }

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.5rem;
  max-width: 100%;
  margin: 16px 0 36px;
  line-height: 1.7;
}

/* Homepage .btn-white override */
.btn-white { font-weight: 700; }
.btn-white:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.15); }

.cta-section .btn-book-call { width: 100%; max-width: 100%; display: block; text-align: center; }
.cta-note { margin-top: 16px; font-size: 1.5rem; color: rgba(255,255,255,0.5); }

/* ── ARTICLES GRID ── */
.articles-section {
  padding: 20px 0px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--brown);
}

.articles-header h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 0; }

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s;
}

.view-all:hover { gap: 10px; }

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

.article-card { text-decoration: none; display: block; cursor: pointer; }

.article-card:hover .article-img-wrap img,
.article-card:hover .article-img-wrap .article-img-placeholder { transform: scale(1.05); }

.article-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--brown);
  aspect-ratio: 1 / 1;
}

.article-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.4s ease;
}

.article-img-placeholder.style-1 { background: linear-gradient(135deg, #f5e6d3 0%, #e8cdb0 100%); }
.article-img-placeholder.style-2 { background: linear-gradient(135deg, #fde8e8 0%, #f5c4c4 100%); }
.article-img-placeholder.style-3 { background: linear-gradient(135deg, #e8f0e8 0%, #c8dcc8 100%); }
.article-img-placeholder.style-4 { background: linear-gradient(135deg, #e8e8f5 0%, #c8c8e8 100%); }
.article-img-placeholder.style-5 { background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%); }
.article-img-placeholder.style-6 { background: linear-gradient(135deg, #f0e8f5 0%, #d8c8e8 100%); }

.article-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.article-date { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; font-weight: 500; }

.article-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.article-card:hover .article-title { color: var(--red); }

.article-excerpt { font-size: 0.82rem; color: #fff; line-height: 1.6; }

.hero-float-card {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border-radius: 24px;
  padding: 32px;
  width: 320px;
  box-shadow: 0 24px 80px rgba(61,43,31,0.16);
  z-index: 3;
}

.hero-float-card-graphic { margin-bottom: 20px; }

.float-card-metric-row {
  display: flex;
  align-items: center;
  background: var(--cream);
  border-radius: 14px;
  padding: 16px;
  gap: 4px;
}

.float-card-metric { flex: 1; text-align: center; }

.float-card-val {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.float-card-label {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.float-card-divider { width: 1px; height: 36px; background: rgba(61,43,31,0.1); flex-shrink: 0; }

.float-card-body { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.float-card-body strong { color: var(--brown); }

.float-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.float-card-link:hover { color: var(--red); }

.float-card-dots { display: flex; gap: 6px; justify-content: center; }
.float-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(61,43,31,0.15); display: inline-block; }
.float-dot.active { background: var(--red); width: 18px; border-radius: 3px; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 1.4rem;
  color: var(--brown);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(61,43,31,0.12);
  z-index: 4;
  transition: background 0.2s;
  line-height: 1;
}

.hero-arrow:hover { background: white; }
.hero-arrow-left  { left: 24px; }
.hero-arrow-right { left: 80px; }

/* ── STATEMENT BAR ── */
.statement-bar {
  background: var(--red);
  color: white;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  padding: 60px 64px;
  text-align: left;
  margin: 60px auto 0;
  max-width: 1280px;
}

/* ── ABOUT SECTION (homepage) ── */
.about-section {
  padding: 72px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
  max-width: 100%;
  margin: 0;
}

.about-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.about-heading {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--brown);
  margin-bottom: 24px;
}

.about-body { font-size: 1.5rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

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

.about-stat {
  background: var(--cream);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(61,43,31,0.07);
}

.about-stat-val {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

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

.about-image-block {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8d5c4 0%, #c4a882 100%);
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-placeholder { font-size: 6rem; opacity: 0.3; }

.about-image-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--red);
  color: white;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.about-image-badge span { font-size: 1.4rem; font-weight: 900; display: block; margin-bottom: 2px; }

/* ── SERVICES PROVIDED (horizontal cards) ── */
.svc-section { padding: 72px 0px; background: var(--cream); }

.svc-header { text-align: left; margin-bottom: 48px; }
.svc-header h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 12px; }
.svc-header .svc-intro { font-size: 1.5rem; line-height: 1.7; color: var(--muted); }

.svc-list { max-width: 1280px; display: flex; flex-direction: column; gap: 16px; margin: 0px; }

.svc-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--brown);
  background: white;
  min-height: 180px;
  border: 1.5px solid rgba(61,43,31,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.svc-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(61,43,31,0.12); }

.svc-photo { position: relative; overflow: hidden; }

.svc-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(61,43,31,0.3);
}

.svc-content {
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.svc-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--brown);
}

.svc-desc { font-size: 1.5rem; line-height: 1.7; margin-bottom: 28px; color: inherit; opacity: 0.8; }
.svc-card.t-dark .svc-desc { color: rgba(255,255,255,0.7); opacity: 1; }

.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  align-self: flex-end;
  transition: all 0.2s;
  text-decoration: none;
  border: 1.5px solid rgba(61,43,31,0.2);
  color: var(--brown);
  background: transparent;
}

.svc-btn:hover { background: var(--brown); color: white; border-color: var(--brown); }

/* Card colour themes */
.svc-card.t-red   .svc-content { background: #f5e8e6; }
.svc-card.t-red   .svc-photo-placeholder { background: #e8c4bf; }
.svc-card.t-red   .svc-title { color: var(--brown); }
.svc-card.t-red   .svc-check { color: var(--brown); }
.svc-card.t-red   .svc-check-tick { color: var(--red); }

.svc-card.t-tan   .svc-content { background: #ede0d0; }
.svc-card.t-tan   .svc-photo-placeholder { background: #d9c4aa; }
.svc-card.t-tan   .svc-title { color: var(--brown); }
.svc-card.t-tan   .svc-check { color: var(--brown); }
.svc-card.t-tan   .svc-check-tick { color: var(--red); }

.svc-card.t-dark  .svc-content { background: var(--brown); }
.svc-card.t-dark  .svc-photo-placeholder { background: #2a1e14; }
.svc-card.t-dark  .svc-title { color: white; }
.svc-card.t-dark  .svc-check { color: rgba(255,255,255,0.75); }
.svc-card.t-dark  .svc-check-tick { color: var(--tan); }

.svc-card.t-dark  .svc-btn { border-color: rgba(255,255,255,0.25); color: white; }
.svc-card.t-dark  .svc-btn:hover { background: white; color: var(--brown); }

.svc-card.t-cream .svc-content { background: var(--cream-dark); }
.svc-card.t-cream .svc-photo-placeholder { background: #ddd4c6; }
.svc-card.t-cream .svc-title { color: var(--brown); }
.svc-card.t-cream .svc-check { color: var(--muted); }
.svc-card.t-cream .svc-check-tick { color: var(--red); }

/* ── FAQ (homepage variant) ── */
.faq-section {
  padding: 72px 0px;
  max-width: 1300px;
  margin: 0 auto;
}

.faq-header { margin-bottom: 60px; }
.faq-header h2 { margin-bottom: 12px; }
.faq-header p { font-size: 1.5rem; color: var(--muted); line-height: 1.7; }


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 60px 24px; }

  /* Hero */
  .hero-bottom-row { display: none !important; }
  .hero-top { padding: 48px 24px 40px !important; }
  .hero-top h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); font-weight: 900; }
  .hero-desc { font-size: 1.5rem; margin-bottom: 32px; }
  .hero-bottom-row { min-height: 420px; }
  .hero-card {
    position: static;
    transform: none;
    width: calc(100% - 40px);
    max-width: 100%;
    margin: 24px 20px;
    box-sizing: border-box;
  }
  .hero-nav { left: 20px; bottom: 24px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-cta-row .btn-book-call { width: 100%; max-width: 100%; box-sizing: border-box; }
  .hero-cta-vline { display: none; }
  .hero-cta-divider { width: 100%; text-align: center; justify-content: center; }
  .hero-cta-trust { max-width: 100%; text-align: center; }

  /* Process */
  #how { padding: 48px 24px; }
  .how-section { padding: 40px 24px; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-preview { min-height: 360px; }

  /* Services (cards) */
  .svc-section { padding: 60px 24px; }
  .svc-card { grid-template-columns: 1fr; }
  .svc-photo { min-height: 200px; }
  .svc-content { padding: 24px 20px !important; }

  /* Pricing */
  #services { padding: 48px 24px 60px; }
  .services-grid { grid-template-columns: 1fr; }

  /* Results */
  .results-section { padding: 48px 24px; }
  .results-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials { padding: 60px 24px 80px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* About */
  .about-section { grid-template-columns: 1fr; padding: 48px 24px !important; gap: 32px; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Articles */
  .articles-section { padding: 60px 24px; }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* FAQ */
  .faq-section { padding: 60px 24px; }

  /* CTA */
  .cta-wrapper { padding: 0 24px; }
  .cta-section { padding: 48px 24px !important; border-radius: 24px; margin-bottom: 60px; overflow: hidden; }

  /* Statement bar */
  .statement-bar { padding: 40px 24px !important; font-size: clamp(1.4rem, 5vw, 2rem); }
}

@media (max-width: 480px) {
  section { padding: 40px 20px; }

  /* Hero */
  .hero-top { padding: 36px 20px 32px !important; }
  .hero-top h1 { font-size: 5rem; font-weight: 900; }
  .hero-bottom-row { min-height: 320px; }
  .hero-card { margin: 20px 16px; padding: 20px; }
  .hero-card-stats { flex-direction: column; gap: 12px; }
  .hero-card-stat + .hero-card-stat { border-left: none; border-top: 1px solid rgba(61,43,31,0.1); padding-top: 12px; }
  .hero-nav { left: 16px; bottom: 20px; }

  /* Process */
  #how { padding: 40px 20px; }
  .how-section { padding: 32px 20px; }
  .how-preview { min-height: 300px; }
  .how-preview-cards { padding: 16px; gap: 10px; }

  /* Services (cards) */
  .svc-section { padding: 40px 20px; }

  /* Pricing */
  #services { padding: 40px 20px; }

  /* Results */
  .results-section { padding: 40px 20px; }
  .result-big { font-size: 2.5rem; }
  .result-card { padding: 24px; }

  /* Testimonials */
  .testimonials { padding: 40px 20px 60px; }

  /* About */
  .about-section { padding: 40px 20px !important; }
  .about-stats { grid-template-columns: 1fr; }

  /* Articles */
  .articles-section { padding: 40px 20px; }

  /* FAQ */
  .faq-section { padding: 40px 20px; }

  /* CTA */
  .cta-wrapper { padding: 0 20px; }
  .cta-section { padding: 40px 20px !important; border-radius: 24px; margin-bottom: 48px; overflow: hidden; }

  /* Statement bar */
  .statement-bar { padding: 32px 20px !important; }
}
