
:root {
  --terracotta: #C2785C;
  --terracotta-deep: #A35D42;
  --terracotta-light: #D99A7E;
  --blush: #E8C4B8;
  --blush-light: #F2DDD6;
  --rose: #B56576;
  --rose-light: #D4919E;
  --sand: #F5EDE4;
  --sand-dark: #E8DDD0;
  --cream: #FBF7F3;
  --white: #FFFFFF;
  --charcoal: #2D2926;
  --text-dark: #3A3330;
  --text-mid: #6B5E57;
  --text-light: #9A8D85;
  --sage: #8FA68A;
  --sage-deep: #6B8B65;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(45, 41, 38, 0.92);
  backdrop-filter: blur(20px);
  padding: 0.7rem 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

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

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(194, 120, 92, 0.4);
}

.nav-cta-alt {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta-alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(181, 101, 118, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A3B34 40%, var(--terracotta-deep) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(232, 196, 184, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(181, 101, 118, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 196, 184, 0.15);
  border: 1px solid rgba(232, 196, 184, 0.3);
  color: var(--blush);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta-light);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194, 120, 92, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--blush);
  color: var(--blush);
  background: rgba(232, 196, 184, 0.08);
}

/* ========== SECTIONS SHARED ========== */
section {
  padding: 6rem 2rem;
}

.section-label {
  display: inline-block;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
}

/* ========== PROBLEM / PAIN POINTS ========== */
.problem-section {
  background: var(--sand);
}

.problem-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.problem-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--sand-dark);
  transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(194, 120, 92, 0.1);
}

.problem-icon {
  width: 56px;
  height: 56px;
  background: var(--blush-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.problem-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.problem-card p {
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.95rem;
}

/* ========== ABOUT / APPROCHE ========== */
.about-section {
  background: var(--cream);
}

.about-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--blush-light) 0%, var(--terracotta-light) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.about-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-floating-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--terracotta);
  font-weight: 700;
}

.about-floating-badge .label {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.about-content .about-text {
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
  margin: 1.5rem 0;
  font-size: 0.98rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--blush-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feature span {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ========== METHODOLOGY ========== */
.method-section {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.method-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(194, 120, 92, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.method-section .section-label { color: var(--terracotta-light); }
.method-section .section-title { color: var(--white); }
.method-section .section-subtitle { color: rgba(255,255,255,0.65); }

.method-steps {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.method-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s, background 0.3s;
}

.method-step:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--terracotta-light);
  font-weight: 700;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}

.method-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.method-step p {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.92rem;
}

.method-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.method-cta a {
  color: var(--blush);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.method-cta a:hover { color: var(--white); }

/* ========== FORMATIONS / PRICING ========== */
.pricing-section {
  background: var(--sand);
}

.pricing-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  border: 1px solid var(--sand-dark);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(194, 120, 92, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--terracotta);
  background: linear-gradient(180deg, var(--white) 0%, var(--blush-light) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: var(--blush-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.pricing-card .tagline {
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-card .desc {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--sage-deep);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}

.pricing-features li.disabled {
  color: var(--text-light);
}

.pricing-features li.disabled::before {
  content: '—';
  color: var(--sand-dark);
}

.pricing-card .btn-primary {
  width: 100%;
  text-align: center;
}

.pricing-card .btn-outline {
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--terracotta);
  padding: 1rem 2.2rem;
  border: 2px solid var(--terracotta);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.pricing-card .btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

.pricing-cta {
  text-align: center;
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta a {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.pricing-cta a:hover { color: var(--terracotta-deep); }

/* ========== BLOG ========== */
.blog-section {
  background: var(--cream);
}

.blog-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--sand-dark);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(194, 120, 92, 0.1);
}

.blog-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-thumb.t1 { background: linear-gradient(135deg, var(--blush-light), var(--blush)); }
.blog-thumb.t2 { background: linear-gradient(135deg, var(--terracotta-light), var(--terracotta)); }
.blog-thumb.t3 { background: linear-gradient(135deg, var(--rose-light), var(--rose)); }

.blog-body {
  padding: 2rem;
}

.blog-tag {
  display: inline-block;
  background: var(--blush-light);
  color: var(--terracotta-deep);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

.blog-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-link:hover { color: var(--terracotta-deep); }

/* ========== CTA FINAL ========== */
.cta-final {
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A3B34 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(194, 120, 92, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-final .section-label { color: var(--terracotta-light); }
.cta-final .section-title { color: var(--white); }

.cta-final p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-weight: 300;
  margin: 1rem 0 2rem;
}

.cta-final .btn-primary {
  background: var(--white);
  color: var(--charcoal);
}

.cta-final .btn-primary:hover {
  background: var(--blush);
}

/* ========== FOOTER ========== */
footer {
  background: var(--charcoal);
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.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: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--blush); }

.footer-copy {
  width: 100%;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2.2rem; }
  section { padding: 4rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}
