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

:root {
  --cream: #FAF6EF;
  --cream-dark: #F0E9DC;
  --espresso: #2A1A0E;
  --brown-mid: #5C3D25;
  --terracotta: #D05A2B;
  --terracotta-light: #F5E4D9;
  --terracotta-pale: #FBF1EB;
  --sage: #6B8F71;
  --sage-light: #E5EDDF;
  --warm-gray: #8A7B6F;
  --text-body: #3D2B1C;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Nunito', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(208, 90, 43, 0.12);
  padding: 0 5vw;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--terracotta) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: #b84d22 !important; transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 5vw 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(208,90,43,0.07) 0%, transparent 70%);
  right: -100px; top: -100px;
}
.hero-bg-circle-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107,143,113,0.08) 0%, transparent 70%);
  left: -80px; bottom: 0;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta-pale);
  border: 1px solid rgba(208, 90, 43, 0.2);
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--terracotta);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(208, 90, 43, 0.25);
}
.btn-primary:hover {
  background: #b84d22;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(208, 90, 43, 0.35);
}
.btn-ghost {
  color: var(--brown-mid);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--terracotta); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }
.hero-trust {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
}
.hero-trust-avatar:first-child { margin-left: 0; }
.av1 { background: #D05A2B; }
.av2 { background: #6B8F71; }
.av3 { background: #8B6E50; }
.av4 { background: #C4956A; }
.hero-trust-text { font-size: 0.82rem; color: var(--warm-gray); line-height: 1.4; }
.hero-trust-text strong { color: var(--espresso); font-weight: 700; }

/* Hero illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 380px;
}
.h-card {
  position: absolute;
  background: white;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(42, 26, 14, 0.1);
  padding: 20px 22px;
}
.h-card-back {
  width: 280px;
  height: 320px;
  top: 30px;
  right: 0;
  background: var(--terracotta-pale);
  border: 1px solid rgba(208,90,43,0.15);
  transform: rotate(4deg);
  box-shadow: 0 4px 20px rgba(42,26,14,0.08);
}
.h-card-main {
  width: 300px;
  top: 0;
  left: 0;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.h-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.h-card-icon {
  width: 38px; height: 38px;
  background: var(--terracotta-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.h-card-title { font-weight: 700; font-size: 0.9rem; color: var(--espresso); }
.h-card-sub { font-size: 0.75rem; color: var(--warm-gray); }
.h-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(42,26,14,0.06);
  font-size: 0.82rem;
  color: var(--text-body);
}
.h-card-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-tc { background: var(--terracotta); }
.dot-sg { background: var(--sage); }
.dot-am { background: #C4956A; }
.h-card-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--sage);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(107,143,113,0.35);
  z-index: 3;
  white-space: nowrap;
}

/* ---- SECTION WRAPPER ---- */
section { padding: 6rem 5vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-lead {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 580px;
  line-height: 1.75;
}

/* ---- STRIP ---- */
.strip {
  background: var(--espresso);
  color: white;
  padding: 1.5rem 5vw;
  overflow: hidden;
}
.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.strip-icon { font-size: 1.2rem; }
.strip-text { font-size: 0.85rem; font-weight: 600; opacity: 0.85; }
.strip-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}

/* ---- ABOUT ---- */
.about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.5;
  border-left: 3px solid var(--terracotta);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.about-body { color: var(--warm-gray); line-height: 1.8; font-size: 1rem; }
.about-body + .about-body { margin-top: 1rem; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}
.about-stat {
  background: var(--cream);
  padding: 1.75rem;
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-stat-num span { color: var(--terracotta); }
.about-stat-label { font-size: 0.82rem; color: var(--warm-gray); font-weight: 600; }

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: white;
  border: 1px solid rgba(42,26,14,0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42,26,14,0.1);
}
.service-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.accent-tc { background: var(--terracotta); }
.accent-sg { background: var(--sage); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 1.25rem;
}
.icon-tc { background: var(--terracotta-pale); }
.icon-sg { background: var(--sage-light); }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-features { list-style: none; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 6px 0;
  border-top: 1px solid rgba(42,26,14,0.05);
}
.feature-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: white;
  font-weight: 700;
}
.check-tc { background: var(--terracotta); }
.check-sg { background: var(--sage); }
.service-tag {
  display: inline-block;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.service-tag-sg {
  background: var(--sage-light);
  color: var(--sage);
}

/* ---- HOW IT WORKS ---- */
.how { background: var(--espresso); color: white; }
.how .section-title { color: white; }
.how .section-lead { color: rgba(255,255,255,0.55); }
.how .section-label { color: rgba(208,90,43,0.9); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}
.step-num-1 { background: var(--terracotta); color: white; }
.step-num-2 {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}
.step-num-3 { background: var(--sage); color: white; }
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ---- FOR YOU ---- */
.foryou-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.foryou-card {
  background: white;
  border: 1px solid rgba(42,26,14,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.foryou-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(42,26,14,0.08);
}
.foryou-emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.foryou-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.foryou-card p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--terracotta-pale); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(42,26,14,0.06);
}
.testimonial-stars {
  color: var(--terracotta);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(42,26,14,0.06);
  padding-top: 1rem;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.82rem; font-weight: 700; color: var(--espresso); }
.testimonial-role { font-size: 0.75rem; color: var(--warm-gray); }

/* ---- CTA ---- */
.cta-section { background: var(--espresso); overflow: hidden; position: relative; }
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,90,43,0.15) 0%, transparent 70%);
  right: -100px; top: -150px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,143,113,0.1) 0%, transparent 70%);
  left: 10%; bottom: -100px;
  pointer-events: none;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner .section-label { color: rgba(208,90,43,0.8); }
.cta-inner .section-title { color: white; }
.cta-inner .section-title em { color: var(--terracotta); }
.cta-body {
  color: rgba(255,255,255,0.5);
  margin: 1rem 0 2.5rem;
  font-size: 1rem;
  line-height: 1.75;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.cta-contact {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.cta-contact a {
  color: rgba(208,90,43,0.8);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.cta-contact a:hover { color: var(--terracotta); }

/* ---- FOOTER ---- */
footer {
  background: #1A0E07;
  padding: 3rem 5vw;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .foryou-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
