/* ===================================================
   TXELL WELLNESS — style.css v4 (multipágina)
   Espai de Benestar Holístic · Meritxell Pagès
   =================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --cream-50:  #faf6ee;
  --cream-100: #f3ece0;
  --cream-200: #e8ddc8;
  --cream-300: #d9c9ab;
  --paper:     #f7f1e5;

  --olive-50:  #eef0e5;
  --olive-100: #d8dcc3;
  --olive-200: #b4bd95;
  --olive-300: #8a9568;
  --olive-400: #6b7548;
  --olive-500: #515b35;
  --olive-600: #3d4527;
  --olive-700: #2a301b;

  --terracotta-50:  #f9ece3;
  --terracotta-100: #f0d2bf;
  --terracotta-300: #d49a7b;
  --terracotta-400: #c47a55;
  --terracotta-500: #b15f3a;
  --terracotta-600: #8e4a2c;

  --ink-900: #1f2418;
  --ink-700: #3a3f32;
  --ink-500: #6a6d5e;
  --ink-300: #9a9c8e;

  --wa-green: #25D366;

  --display: 'Fraunces', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(60, 50, 25, 0.06), 0 1px 2px rgba(60, 50, 25, 0.04);
  --shadow-md: 0 6px 20px rgba(60, 50, 25, 0.08), 0 2px 6px rgba(60, 50, 25, 0.05);
  --shadow-lg: 0 20px 50px rgba(60, 50, 25, 0.10), 0 8px 16px rgba(60, 50, 25, 0.06);
  --shadow-xl: 0 32px 64px rgba(60, 50, 25, 0.14);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink-700);
  background: var(--cream-50);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; height: auto; }
::selection { background: var(--olive-200); color: var(--olive-700); }

/* CUSTOM CURSOR */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--olive-400); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: transform 0.05s;
  mix-blend-mode: multiply;
}
.cursor-follower {
  position: fixed; width: 38px; height: 38px;
  border: 1.5px solid var(--olive-400); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s, border-color 0.2s;
  opacity: 0.45;
}
.cursor-follower.hovered { width: 60px; height: 60px; opacity: 0.2; border-color: var(--terracotta-400); }
@media (hover: none), (max-width: 768px) { .cursor, .cursor-follower { display: none; } }

/* CONTAINERS */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .container, .container-narrow { padding: 0 22px; } }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--olive-500) 0%, var(--olive-400) 100%);
  color: var(--cream-50); padding: 16px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.2px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 24px rgba(81, 91, 53, 0.28);
  position: relative; overflow: hidden; cursor: pointer; border: none;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--olive-400), var(--olive-300));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(81, 91, 53, 0.4); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-700); font-size: 15px; font-weight: 500;
  padding: 15px 26px; border-radius: 100px;
  border: 1.5px solid var(--cream-300);
  background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-out); cursor: pointer;
}
.btn-ghost:hover { color: var(--olive-600); border-color: var(--olive-300); background: var(--cream-100); transform: translateY(-2px); }

.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--olive-500); color: var(--cream-50);
  padding: 11px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 4px 14px rgba(81, 91, 53, 0.25);
}
.btn-nav:hover { background: var(--olive-600); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(81, 91, 53, 0.35); }
.btn-arrow { transition: transform 0.25s; display: inline-block; }
.btn-nav:hover .btn-arrow, .btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* LABELS & TITLES */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--olive-500); margin-bottom: 16px;
  position: relative; padding-left: 28px;
}
.section-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 18px; height: 1px; background: var(--olive-400);
}
.section-label.center { display: block; text-align: center; padding-left: 0; }
.section-label.center::before { display: none; }

.section-title {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.08;
  color: var(--ink-900); margin-bottom: 1.2rem; letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, var(--olive-500), var(--terracotta-500) 70%, var(--olive-400));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

.section-desc {
  font-size: 1.0625rem; color: var(--ink-500);
  max-width: 620px; line-height: 1.75; font-weight: 300; margin-bottom: 3rem;
}

/* REVEAL */
.reveal-up { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }

/* NAVBAR */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s var(--ease-out); padding: 20px 0;
  background: rgba(250, 246, 238, 0.5); backdrop-filter: blur(10px);
}
.nav.scrolled {
  padding: 12px 0; background: rgba(250, 246, 238, 0.92); backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(107, 117, 72, 0.10), 0 4px 30px rgba(60, 50, 25, 0.06);
}
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 1.4rem; font-weight: 500;
  color: var(--ink-900); letter-spacing: -0.02em; transition: transform 0.3s;
}
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo-icon { width: 34px; height: 34px; transition: transform 0.6s var(--ease-out); }
.nav-logo:hover .nav-logo-icon { transform: rotate(-12deg) scale(1.08); }
.nav-logo em { font-style: italic; color: var(--olive-500); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-700);
  position: relative; padding: 6px 0; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--olive-500);
  transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--olive-600); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--olive-600); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255, 255, 255, 0.5); border: 1px solid var(--cream-300);
  border-radius: 100px; padding: 4px; backdrop-filter: blur(8px);
}
.lang-btn {
  padding: 5px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--ink-500); border-radius: 100px; transition: all 0.3s; text-transform: uppercase;
}
.lang-btn:hover { color: var(--olive-600); }
.lang-btn.active { background: var(--olive-500); color: var(--cream-50); }

.menu-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; z-index: 1001; }
.menu-toggle span { width: 22px; height: 1.5px; background: var(--ink-900); border-radius: 2px; transition: all 0.3s var(--ease-out); }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* HERO (home) */
.hero { min-height: 100vh; padding: 130px 0 80px; position: relative; background: var(--cream-50); overflow: hidden; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none; z-index: 0;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(107, 117, 72, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 117, 72, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; animation: blobDrift 24s infinite ease-in-out; }
.blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--olive-100) 0%, transparent 70%); top: -200px; right: -180px; opacity: 0.7; }
.blob-2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--terracotta-100) 0%, transparent 70%); bottom: -150px; left: -120px; opacity: 0.5; animation-delay: -8s; }
.blob-3 { width: 380px; height: 380px; background: radial-gradient(circle, var(--cream-200) 0%, transparent 70%); top: 35%; left: 35%; opacity: 0.6; animation-delay: -16s; }
@keyframes blobDrift { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(40px, -30px) scale(1.06); } 66% { transform: translate(-30px, 40px) scale(0.96); } }

.leaf-deco { position: absolute; pointer-events: none; opacity: 0.18; z-index: 1; animation: leafFloat 22s infinite ease-in-out; }
.leaf-deco svg { width: 100%; height: 100%; }
.leaf-1 { width: 64px; height: 64px; top: 18%; left: 7%; }
.leaf-2 { width: 44px; height: 44px; top: 68%; right: 9%; animation-duration: 30s; animation-delay: -6s; }
.leaf-3 { width: 52px; height: 52px; top: 28%; right: 14%; animation-duration: 28s; animation-delay: -12s; }
@keyframes leafFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-36px) rotate(180deg); } }

.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--olive-400) 30%, var(--terracotta-400) 60%, transparent); z-index: 10;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem;
  align-items: center; min-height: calc(100vh - 210px); position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.6); color: var(--olive-600);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px;
  padding: 9px 20px; border-radius: 100px; border: 1px solid var(--olive-100);
  margin-bottom: 2rem; backdrop-filter: blur(10px);
}
.dot { width: 7px; height: 7px; background: var(--olive-500); border-radius: 50%; animation: dotPulse 2.4s infinite; box-shadow: 0 0 10px var(--olive-400); }
@keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.65); } }

.hero-title {
  font-family: var(--display); font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400; line-height: 1.02; color: var(--ink-900);
  letter-spacing: -0.025em; margin-bottom: 1.5rem;
}
.hero-em {
  font-style: italic; font-weight: 500; display: inline-block;
  background: linear-gradient(135deg, var(--olive-400) 0%, var(--olive-600) 40%, var(--terracotta-500) 80%, var(--olive-500) 100%);
  background-size: 250% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
}
.hero-sub-title { display: block; font-family: var(--display); font-style: italic; font-weight: 300; color: var(--ink-500); font-size: 0.5em; margin-top: 14px; }
.hero-desc { font-size: 1.125rem; color: var(--ink-500); max-width: 520px; line-height: 1.75; font-weight: 300; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-wrap {
  position: relative; width: 100%; max-width: 460px; aspect-ratio: 4/5;
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--olive-100), var(--cream-200));
}
.hero-image {
  width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 50%;
  border-radius: inherit; transform: scale(1.012);
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  filter: saturate(0.94) contrast(0.98) brightness(1.03);
}
.hero-visual:hover .hero-image { transform: scale(1.045); }
.hero-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.28), transparent 55%), linear-gradient(180deg, rgba(250, 246, 238, 0.03) 0%, transparent 45%, rgba(42, 48, 27, 0.18) 100%);
  z-index: 2; pointer-events: none;
}
.hero-image-frame { position: absolute; inset: -16px; border: 1px solid var(--olive-300); border-radius: var(--radius-xl); z-index: -1; transition: transform 0.6s var(--ease-out); }
.hero-visual:hover .hero-image-frame { transform: translate(14px, 14px); }
.floating-badge {
  position: absolute; background: var(--cream-50); border-radius: 100px;
  padding: 10px 18px; font-size: 12px; font-weight: 600; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px; border: 1px solid var(--cream-200);
  white-space: nowrap; animation: floatY 4s ease-in-out infinite; z-index: 3;
}
.floating-badge svg { width: 16px; height: 16px; }
.badge-1 { top: -16px; right: -20px; color: var(--olive-600); }
.badge-1 svg { color: var(--olive-500); }
.badge-2 { bottom: 50px; left: -28px; color: var(--terracotta-600); animation-delay: 2s; }
.badge-2 svg { color: var(--terracotta-500); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.scroll-indicator { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeIn 1s 1.6s forwards; }
.scroll-indicator span { font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-500); font-weight: 500; }
.scroll-mouse { width: 22px; height: 34px; border: 1.4px solid var(--ink-500); border-radius: 12px; position: relative; }
.scroll-mouse::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 2.5px; height: 7px; background: var(--olive-500); border-radius: 2px; animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0% { transform: translate(-50%, 0); opacity: 1; } 60% { transform: translate(-50%, 12px); opacity: 0; } 100% { transform: translate(-50%, 0); opacity: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

/* MARQUEE */
.marquee-strip { overflow: hidden; background: var(--olive-600); padding: 18px 0; position: relative; }
.marquee-strip::before, .marquee-strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 2; }
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--olive-600), transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(-90deg, var(--olive-600), transparent); }
.marquee-track { display: flex; gap: 24px; white-space: nowrap; animation: marquee 32s linear infinite; width: max-content; align-items: center; }
.marquee-track span { font-family: var(--display); font-size: 15px; font-style: italic; color: rgba(255, 255, 255, 0.85); letter-spacing: 0.5px; }
.marquee-track .sep { color: var(--cream-200); opacity: 0.6; font-size: 12px; font-style: normal; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 110px 0; position: relative; }

/* FOR YOU */
.section-foryou { background: var(--paper); position: relative; overflow: hidden; }
.section-foryou::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(180, 95, 58, 0.08), transparent 70%); top: -150px; right: -150px; filter: blur(60px); pointer-events: none; }
.foryou-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.foryou-head .section-label { display: inline-block; }
.foryou-head .section-desc { margin: 0 auto; max-width: 580px; }
.foryou-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; position: relative; z-index: 1; }
.foryou-item { background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--radius-md); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; transition: all 0.4s var(--ease-out); position: relative; }
.foryou-item:hover { transform: translateY(-4px); border-color: var(--terracotta-100); box-shadow: var(--shadow-md); }
.foryou-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--terracotta-50), var(--cream-100)); display: flex; align-items: center; justify-content: center; transition: all 0.4s var(--ease-out); }
.foryou-item:hover .foryou-icon { background: linear-gradient(135deg, var(--terracotta-500), var(--terracotta-400)); transform: rotate(-6deg); }
.foryou-icon svg { width: 22px; height: 22px; color: var(--terracotta-500); transition: color 0.3s; }
.foryou-item:hover .foryou-icon svg { color: var(--cream-50); }
.foryou-item p { font-size: 15px; color: var(--ink-700); line-height: 1.65; font-weight: 300; }
.foryou-item p strong { color: var(--ink-900); font-weight: 600; }
.foryou-cta { text-align: center; max-width: 640px; margin: 3.5rem auto 0; }
.foryou-cta p { font-family: var(--display); font-style: italic; font-size: 1.25rem; color: var(--olive-600); margin-bottom: 1.75rem; line-height: 1.5; font-weight: 400; }

/* SERVICES */
.section-services { background: var(--cream-50); }
.services-head { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.services-head .section-desc { margin-bottom: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--radius-lg); padding: 2.2rem; position: relative; overflow: hidden; transition: all 0.4s var(--ease-out); }
.service-card::after { content: ''; position: absolute; top: -50%; right: -50%; width: 250px; height: 250px; background: radial-gradient(circle, rgba(180, 189, 149, 0.18), transparent 70%); opacity: 0; transition: opacity 0.5s; pointer-events: none; }
.service-card:hover { transform: translateY(-6px); border-color: var(--olive-200); box-shadow: var(--shadow-lg); }
.service-card:hover::after { opacity: 1; }
.service-num { font-family: var(--display); font-size: 11px; font-weight: 600; color: var(--olive-300); letter-spacing: 3px; margin-bottom: 1.5rem; font-style: italic; }
.service-icon-wrap { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--olive-50), var(--cream-100)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.4s var(--ease-out); }
.service-card:hover .service-icon-wrap { background: linear-gradient(135deg, var(--olive-500), var(--olive-400)); transform: rotate(-6deg) scale(1.05); }
.service-icon-wrap svg { width: 26px; height: 26px; color: var(--olive-500); transition: color 0.3s; stroke-width: 1.6; }
.service-card:hover .service-icon-wrap svg { color: var(--cream-50); }
.service-card h3 { font-family: var(--display); font-size: 1.375rem; font-weight: 500; color: var(--ink-900); margin-bottom: 12px; letter-spacing: -0.01em; }
.service-card p { font-size: 15px; color: var(--ink-500); line-height: 1.7; font-weight: 300; }
.service-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--olive-500), var(--terracotta-400)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-out); }
.service-card:hover .service-line { transform: scaleX(1); }
.service-card.featured { background: linear-gradient(135deg, var(--terracotta-50), var(--cream-100)); border-color: var(--terracotta-100); }
.service-card.featured .service-icon-wrap { background: linear-gradient(135deg, var(--cream-50), var(--terracotta-50)); }
.service-card.featured .service-icon-wrap svg { color: var(--terracotta-500); }
.service-card.featured:hover .service-icon-wrap { background: linear-gradient(135deg, var(--terracotta-500), var(--terracotta-400)); }
.service-card.featured:hover .service-icon-wrap svg { color: var(--cream-50); }

/* METHOD */
.section-method { background: linear-gradient(135deg, var(--olive-600) 0%, var(--olive-700) 100%); color: var(--cream-100); overflow: hidden; }
.section-method::before, .section-method::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
.section-method::before { width: 600px; height: 600px; background: radial-gradient(circle, rgba(180, 189, 149, 0.12), transparent 70%); top: -200px; right: -180px; filter: blur(40px); }
.section-method::after { width: 500px; height: 500px; background: radial-gradient(circle, rgba(180, 95, 58, 0.08), transparent 70%); bottom: -150px; left: -100px; filter: blur(40px); }
.section-method .section-title { color: var(--cream-50); }
.section-method .section-label { color: var(--olive-200); }
.section-method .section-label::before { background: var(--olive-200); }
.section-method .section-title em { background: linear-gradient(135deg, var(--cream-100), var(--terracotta-300), var(--olive-200)); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; }
.method-header { text-align: center; max-width: 760px; margin: 0 auto 4rem; position: relative; z-index: 1; }
.method-header .section-label { display: inline-block; padding-left: 28px; }
.method-intro { color: rgba(243, 236, 224, 0.78); font-size: 1.0625rem; line-height: 1.75; font-weight: 300; max-width: 620px; margin: 0 auto; }
.phases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 4rem; position: relative; z-index: 1; }
.phase-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(180, 189, 149, 0.18); border-radius: var(--radius-lg); padding: 2rem 1.5rem; position: relative; transition: all 0.4s var(--ease-out); }
.phase-card:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--olive-200); transform: translateY(-6px); }
.phase-num { font-family: var(--display); font-style: italic; font-size: 11px; letter-spacing: 3px; color: var(--terracotta-300); text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.phase-card h3 { font-family: var(--display); font-size: 1.35rem; font-weight: 500; color: var(--cream-50); letter-spacing: -0.01em; margin-bottom: 8px; }
.phase-q { font-family: var(--display); font-style: italic; font-size: 0.95rem; color: var(--olive-200); margin-bottom: 1rem; font-weight: 400; }
.phase-card > p:last-child { font-size: 14.5px; color: rgba(243, 236, 224, 0.7); line-height: 1.65; font-weight: 300; }
.method-pillars { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; position: relative; z-index: 1; padding-top: 2.5rem; border-top: 1px solid rgba(180, 189, 149, 0.15); }
.method-pillar { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(180, 189, 149, 0.2); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--cream-100); transition: all 0.3s var(--ease-out); }
.method-pillar:hover { background: var(--olive-200); color: var(--olive-700); border-color: var(--olive-200); }
.method-pillar svg { width: 18px; height: 18px; color: var(--olive-200); transition: color 0.3s; }
.method-pillar:hover svg { color: var(--olive-700); }

/* TESTIMONIALS */
.section-testimonials { background: var(--cream-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.testimonial-card { background: linear-gradient(135deg, var(--paper) 0%, var(--cream-100) 100%); border: 1px solid var(--cream-200); border-radius: var(--radius-lg); padding: 2rem 1.5rem; position: relative; transition: all 0.4s var(--ease-out); }
.testimonial-card:hover { transform: translateY(-6px); border-color: var(--olive-200); box-shadow: var(--shadow-md); }
.testimonial-quote { width: 32px; height: 32px; color: var(--terracotta-400); opacity: 0.5; margin-bottom: 1rem; }
.testimonial-card p { font-family: var(--display); font-style: italic; font-size: 1.05rem; line-height: 1.55; color: var(--ink-900); font-weight: 400; }
.testimonial-author { display: block; font-family: var(--body); font-style: normal; font-size: 12.5px; font-weight: 600; color: var(--olive-500); margin-top: 1rem; letter-spacing: 0.3px; }

/* ABOUT */
.section-about { background: var(--paper); }
.about-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--olive-100), var(--cream-200)); box-shadow: var(--shadow-xl); }
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; display: block; transform: scale(1.02); transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out); filter: saturate(0.96) contrast(1.03) brightness(1.02); }
.about-image-wrap:hover .about-photo { transform: scale(1.06); }
.about-image::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%), linear-gradient(180deg, transparent 52%, rgba(42, 48, 27, 0.10)); z-index: 1; }
.about-image-frame { position: absolute; inset: -16px; border: 1px solid var(--olive-300); border-radius: var(--radius-xl); z-index: -1; transition: transform 0.6s var(--ease-out); }
.about-image-wrap:hover .about-image-frame { transform: translate(14px, 14px); }
.about-content h2 { margin: 14px 0 24px; }
.about-content p { font-size: 1.0625rem; margin-bottom: 18px; color: var(--ink-700); line-height: 1.75; font-weight: 300; }
.about-quote { font-family: var(--display); font-style: italic; font-size: 1.25rem; line-height: 1.45; color: var(--olive-600); border-left: 2px solid var(--terracotta-400); padding: 12px 0 12px 20px; margin: 28px 0; font-weight: 400; }

/* PAGE HERO (interior pages) */
.page-hero { padding: 170px 0 70px; position: relative; background: var(--cream-50); overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--olive-400) 30%, var(--terracotta-400) 60%, transparent); }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero .section-label { display: inline-block; padding-left: 28px; }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; line-height: 1.05; color: var(--ink-900); letter-spacing: -0.025em; margin-bottom: 1.2rem; }
.page-hero h1 em { font-style: italic; font-weight: 500; background: linear-gradient(135deg, var(--olive-400), var(--olive-600) 40%, var(--terracotta-500) 80%, var(--olive-500)); background-size: 250% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 7s linear infinite; }
.page-hero p { font-size: 1.125rem; color: var(--ink-500); max-width: 580px; margin: 0 auto; line-height: 1.75; font-weight: 300; }

/* SERVICE DETAIL (serveis page) */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 6rem; }
.service-detail:last-child { margin-bottom: 0; }
.service-detail.reverse .service-detail-media { order: 2; }
.service-detail-body h3 { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; color: var(--ink-900); margin-bottom: 1rem; letter-spacing: -0.01em; line-height: 1.1; }
.service-detail-body > p { font-size: 1.0625rem; color: var(--ink-500); line-height: 1.75; font-weight: 300; margin-bottom: 1.5rem; }
.service-detail-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.75rem; }
.service-detail-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-700); font-weight: 300; }
.service-detail-list li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%; background-color: var(--olive-50); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23515b35' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 13px; background-repeat: no-repeat; background-position: center; }
.service-detail-media { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, var(--olive-100), var(--cream-200)); box-shadow: var(--shadow-lg); }
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) brightness(1.02); transition: transform 0.7s var(--ease-out); }
.service-detail:hover .service-detail-media img { transform: scale(1.05); }
.service-detail-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(42, 48, 27, 0.14)); }
.service-detail-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--olive-500), var(--olive-400)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-detail-icon svg { width: 26px; height: 26px; color: var(--cream-50); stroke-width: 1.6; }
.service-detail.terra .service-detail-icon { background: linear-gradient(135deg, var(--terracotta-500), var(--terracotta-400)); }

/* WHEEL */
.section-wheel { background: var(--cream-100); }
.wheel-card { max-width: 880px; margin: 0 auto; text-align: center; background: var(--cream-50); border-radius: var(--radius-xl); padding: 64px 56px; border: 1px solid var(--cream-200); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.wheel-card::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 400px; height: 200px; background: radial-gradient(ellipse, var(--olive-50), transparent 70%); }
.wheel-card > * { position: relative; z-index: 1; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px; background: var(--olive-50); color: var(--olive-600); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 100px; border: 1px solid var(--olive-100); }
.badge-pill::before { content: ''; width: 6px; height: 6px; background: var(--olive-500); border-radius: 50%; animation: dotPulse 2s infinite; }
.wheel-card h2 { font-family: var(--display); font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 400; color: var(--ink-900); margin: 18px 0 14px; line-height: 1.1; letter-spacing: -0.02em; }
.wheel-card > p { color: var(--ink-500); max-width: 520px; margin: 0 auto 36px; font-weight: 300; }
.radar-wrap { position: relative; width: 380px; height: 380px; max-width: 100%; margin: 0 auto 36px; }
.radar-wrap svg { width: 100%; height: 100%; overflow: visible; }
.radar-grid-poly { fill: none; stroke: var(--cream-300); stroke-width: 1; opacity: 0.55; }
.radar-grid-poly.outer { stroke: var(--olive-300); opacity: 0.65; }
.radar-axis-line { stroke: var(--cream-300); stroke-width: 1; opacity: 0.5; }
.radar-poly { fill: var(--olive-200); fill-opacity: 0.45; stroke: var(--olive-500); stroke-width: 2.2; stroke-linejoin: round; transition: all 0.6s var(--ease-out); filter: drop-shadow(0 4px 12px rgba(107, 117, 72, 0.2)); }
.radar-poly.empty { fill-opacity: 0.18; stroke-dasharray: 4 4; }
.radar-label { font-family: var(--body); font-size: 12.5px; fill: var(--ink-700); font-weight: 600; letter-spacing: 0.2px; }
.radar-dot { fill: var(--olive-600); transition: r 0.3s, fill 0.3s; }
.radar-dot.highlight { fill: var(--terracotta-500); r: 5; }
.radar-center-num { font-family: var(--display); font-size: 32px; font-weight: 500; fill: var(--olive-600); font-style: italic; }
.radar-center-label { font-family: var(--body); font-size: 9px; fill: var(--ink-500); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
#wheelToggleBtn { margin-top: 8px; }
#wheelToggleBtn[aria-expanded="true"] #wheelToggleArrow { transform: rotate(180deg); }
.wheel-test { max-height: 0; overflow: hidden; transition: max-height 0.8s var(--ease-in-out), opacity 0.5s, margin-top 0.5s; opacity: 0; margin-top: 0; text-align: left; }
.wheel-test.open { max-height: 10000px; opacity: 1; margin-top: 48px; }
.wheel-test-inner { background: var(--cream-100); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--cream-200); }
.wheel-intro { text-align: center; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--cream-200); }
.wheel-intro h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 500; color: var(--ink-900); margin-bottom: 12px; letter-spacing: -0.01em; }
.wheel-intro p { color: var(--ink-500); font-size: 15px; max-width: 580px; margin: 0 auto 8px; font-weight: 300; line-height: 1.7; }
.wheel-source { font-size: 12.5px; color: var(--ink-300); font-weight: 300; margin-top: 8px; }
.wheel-source em { font-style: italic; color: var(--olive-500); }
.wheel-progress { position: sticky; top: 76px; z-index: 10; background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: 100px; padding: 10px 18px; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-sm); }
.wheel-progress-bar { flex: 1; height: 6px; background: var(--cream-200); border-radius: 100px; overflow: hidden; }
.wheel-progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--olive-500), var(--terracotta-500)); border-radius: 100px; transition: width 0.4s var(--ease-out); }
.wheel-progress-text { font-size: 12px; font-weight: 600; color: var(--olive-600); white-space: nowrap; letter-spacing: 0.3px; }
.wheel-categories { display: flex; flex-direction: column; gap: 16px; }
.wheel-cat { background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.wheel-cat.complete { border-color: var(--olive-200); box-shadow: 0 0 0 3px rgba(180, 189, 149, 0.15); }
.wheel-cat-head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 18px 22px; text-align: left; cursor: pointer; transition: background 0.3s; }
.wheel-cat-head:hover { background: var(--cream-100); }
.wheel-cat-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--olive-50); color: var(--olive-600); font-family: var(--display); font-style: italic; font-weight: 600; font-size: 15px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.wheel-cat.complete .wheel-cat-num { background: var(--olive-500); color: var(--cream-50); }
.wheel-cat-titles { flex: 1; min-width: 0; }
.wheel-cat-titles h4 { font-family: var(--display); font-size: 1.1rem; font-weight: 500; color: var(--ink-900); letter-spacing: -0.01em; margin-bottom: 2px; }
.wheel-cat-titles .wheel-cat-hint { font-size: 12px; color: var(--ink-500); font-weight: 400; }
.wheel-cat-score { flex-shrink: 0; font-family: var(--display); font-style: italic; font-size: 1.1rem; font-weight: 500; color: var(--olive-600); min-width: 50px; text-align: right; }
.wheel-cat-score em { font-style: italic; font-size: 0.6em; color: var(--ink-300); margin-left: 1px; }
.wheel-cat-icon { flex-shrink: 0; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 300; color: var(--olive-500); transition: transform 0.4s var(--ease-out); }
.wheel-cat.open .wheel-cat-icon { transform: rotate(45deg); }
.wheel-cat-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-in-out); }
.wheel-cat.open .wheel-cat-body { max-height: 1200px; }
.wheel-cat-body-inner { padding: 0 22px 22px; border-top: 1px dashed var(--cream-200); }
.wheel-cat-desc { font-size: 13.5px; color: var(--ink-500); line-height: 1.7; margin: 18px 0 6px; font-weight: 300; font-style: italic; }
.wheel-cat-rule { font-size: 11.5px; color: var(--olive-500); font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 16px; padding: 6px 12px; background: var(--olive-50); border-radius: 6px; display: inline-block; }
.wheel-questions { display: flex; flex-direction: column; gap: 12px; }
.wheel-q { display: flex; align-items: center; gap: 14px; padding: 12px 14px; background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: 10px; transition: border-color 0.3s; }
.wheel-q.answered { border-color: var(--olive-200); }
.wheel-q-text { flex: 1; font-size: 14px; color: var(--ink-700); line-height: 1.55; font-weight: 400; }
.wheel-q-answers { flex-shrink: 0; display: flex; gap: 6px; }
.wheel-q-btn { padding: 7px 16px; background: var(--cream-50); border: 1.5px solid var(--cream-300); border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--ink-500); letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; transition: all 0.25s var(--ease-out); }
.wheel-q-btn:hover { border-color: var(--olive-400); color: var(--olive-600); transform: translateY(-1px); }
.wheel-q-btn.selected.yes { background: var(--olive-500); border-color: var(--olive-500); color: var(--cream-50); }
.wheel-q-btn.selected.no { background: var(--terracotta-500); border-color: var(--terracotta-500); color: var(--cream-50); }
.wheel-results { display: none; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--cream-200); text-align: center; }
.wheel-results.show { display: block; }
.wheel-results h3 { font-family: var(--display); font-size: 1.6rem; font-weight: 500; color: var(--ink-900); margin-bottom: 10px; letter-spacing: -0.01em; }
.wheel-results > p { color: var(--ink-500); max-width: 520px; margin: 0 auto 28px; font-weight: 300; font-size: 15px; }
.results-scores { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; max-width: 520px; margin: 0 auto 36px; text-align: left; }
.result-score-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: 10px; }
.result-score-row.weak { border-left: 3px solid var(--terracotta-500); }
.result-score-row.strong { border-left: 3px solid var(--olive-500); }
.result-score-label { flex: 1; font-size: 13px; color: var(--ink-700); font-weight: 500; }
.result-score-value { font-family: var(--display); font-style: italic; font-size: 1.05rem; font-weight: 600; color: var(--olive-600); }
.result-score-row.weak .result-score-value { color: var(--terracotta-500); }
.results-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.results-cta { background: linear-gradient(135deg, var(--terracotta-50), var(--cream-100)); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--terracotta-100); }
.results-cta p { color: var(--ink-700); margin-bottom: 18px; font-size: 15px; font-weight: 400; max-width: 480px; margin-left: auto; margin-right: auto; }

/* BOOKING */
.section-booking { background: linear-gradient(135deg, var(--terracotta-50) 0%, var(--cream-100) 100%); position: relative; overflow: hidden; }
.section-booking::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(180, 95, 58, 0.1), transparent 70%); top: -200px; right: -200px; filter: blur(60px); }
.section-booking::after { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(107, 117, 72, 0.08), transparent 70%); bottom: -150px; left: -100px; filter: blur(60px); }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.booking-text .section-title em { background: linear-gradient(135deg, var(--terracotta-500), var(--olive-500)); -webkit-background-clip: text; background-clip: text; }
.booking-features { display: flex; flex-direction: column; gap: 18px; margin: 2rem 0; }
.booking-feature { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--ink-700); }
.booking-feature-icon { width: 38px; height: 38px; background: var(--cream-50); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--cream-200); }
.booking-feature-icon svg { width: 18px; height: 18px; color: var(--terracotta-500); stroke-width: 1.8; }
.calendly-mock { background: var(--cream-50); border-radius: var(--radius-xl); border: 1px solid var(--cream-200); box-shadow: var(--shadow-xl); padding: 32px; position: relative; }
.calendly-mock-head { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--cream-200); margin-bottom: 20px; }
.calendly-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--olive-400), var(--olive-600)); display: flex; align-items: center; justify-content: center; color: var(--cream-50); font-family: var(--display); font-style: italic; font-weight: 500; }
.calendly-mock-head h4 { font-family: var(--display); font-size: 1.05rem; font-weight: 500; color: var(--ink-900); }
.calendly-mock-head p { font-size: 12.5px; color: var(--ink-500); }
.calendly-mock-body { text-align: center; padding: 8px 0 4px; }
.calendly-mock-body p { font-size: 14px; color: var(--ink-500); line-height: 1.6; margin-bottom: 22px; font-weight: 300; }
.calendly-cta { width: 100%; justify-content: center; text-decoration: none; }
.calendly-mock-note { margin-top: 12px; font-size: 11.5px; color: var(--ink-500); text-align: center; font-style: italic; font-weight: 300; }

/* FAQ */
.section-faq { background: var(--paper); }
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--cream-200); }
.faq-item:first-child { border-top: 1px solid var(--cream-200); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; padding: 24px 4px; font-family: var(--display); font-size: 1.125rem; font-weight: 500; color: var(--ink-900); cursor: pointer; gap: 16px; transition: color 0.3s; }
.faq-q:hover { color: var(--olive-600); }
.faq-icon { width: 28px; height: 28px; background: var(--olive-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; color: var(--olive-500); flex-shrink: 0; transition: all 0.4s var(--ease-out); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--olive-500); color: var(--cream-50); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-in-out); }
.faq-a.open { max-height: 500px; }
.faq-a p { font-size: 15.5px; color: var(--ink-500); line-height: 1.8; padding: 0 4px 24px; font-weight: 300; }

/* NEWSLETTER */
.section-newsletter { background: var(--cream-50); padding: 80px 0; }
.newsletter-inner { background: linear-gradient(135deg, var(--olive-600) 0%, var(--olive-700) 100%); border-radius: var(--radius-xl); padding: 70px 56px; text-align: center; position: relative; overflow: hidden; }
.newsletter-inner::before, .newsletter-inner::after { content: ''; position: absolute; border-radius: 50%; }
.newsletter-inner::before { width: 350px; height: 350px; background: radial-gradient(circle, rgba(180, 189, 149, 0.18), transparent 70%); top: -120px; left: -120px; }
.newsletter-inner::after { width: 400px; height: 400px; background: radial-gradient(circle, rgba(180, 95, 58, 0.12), transparent 70%); bottom: -150px; right: -100px; }
.newsletter-inner > * { position: relative; z-index: 1; }
.newsletter-inner h2 { color: var(--cream-50); font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; margin-bottom: 14px; letter-spacing: -0.02em; }
.newsletter-inner h2 em { font-style: italic; background: linear-gradient(135deg, var(--cream-100), var(--terracotta-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.newsletter-inner p { color: rgba(243, 236, 224, 0.75); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; font-weight: 300; }
.newsletter-form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; background: rgba(255, 255, 255, 0.08); padding: 6px; border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(8px); }
.newsletter-form input { flex: 1; padding: 14px 22px; background: transparent; border: none; color: var(--cream-50); font-size: 15px; outline: none; }
.newsletter-form input::placeholder { color: rgba(243, 236, 224, 0.5); }
.newsletter-form button { padding: 12px 26px; background: var(--cream-50); color: var(--olive-700); border-radius: 100px; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.newsletter-form button:hover { background: var(--terracotta-500); color: var(--cream-50); transform: scale(1.03); }

/* CONTACT */
.section-contact { background: var(--cream-50); padding-bottom: 120px; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; margin-top: 3rem; }
.contact-form-card { background: var(--cream-50); padding: 42px; border-radius: var(--radius-xl); border: 1px solid var(--cream-200); box-shadow: var(--shadow-md); }
.contact-form-card h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 500; color: var(--ink-900); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-500); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; border: 1.5px solid var(--cream-200); border-radius: 10px; font-size: 15px; color: var(--ink-900); background: var(--cream-50); outline: none; transition: all 0.3s; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--olive-400); box-shadow: 0 0 0 4px rgba(107, 117, 72, 0.08); }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--radius-md); transition: all 0.3s var(--ease-out); }
.contact-item:hover { border-color: var(--olive-200); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-item-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: var(--olive-50); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.contact-item:hover .contact-item-icon { background: var(--olive-500); transform: rotate(-6deg); }
.contact-item-icon svg { width: 18px; height: 18px; color: var(--olive-600); stroke-width: 1.7; transition: color 0.3s; }
.contact-item:hover .contact-item-icon svg { color: var(--cream-50); }
.contact-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-500); font-weight: 600; margin-bottom: 3px; }
.contact-item-value { font-size: 15px; font-weight: 500; color: var(--ink-900); }
.contact-socials { display: flex; gap: 10px; margin-top: 4px; }
.social-pill { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--radius-md); font-size: 13px; font-weight: 500; color: var(--ink-700); transition: all 0.3s var(--ease-out); }
.social-pill:hover { border-color: var(--olive-300); background: var(--olive-50); color: var(--olive-700); transform: translateY(-2px); }
.social-pill svg { width: 16px; height: 16px; }

/* FOOTER */
.footer { background: var(--olive-700); color: rgba(243, 236, 224, 0.7); padding: 80px 0 32px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(180, 189, 149, 0.3) 40%, rgba(180, 95, 58, 0.3) 60%, transparent); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(243, 236, 224, 0.08); }
.footer-brand .nav-logo { color: var(--cream-50); margin-bottom: 18px; }
.footer-brand .nav-logo em { color: var(--olive-200); }
.footer-tagline { font-size: 14.5px; max-width: 320px; line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300; }
.footer h5 { color: var(--cream-100); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14.5px; transition: color 0.3s; font-weight: 300; }
.footer ul a:hover { color: var(--olive-200); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(243, 236, 224, 0.4); flex-wrap: wrap; gap: 16px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(243, 236, 224, 0.06); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease-out); }
.social-links a:hover { background: var(--olive-300); transform: translateY(-3px); }
.social-links a:hover svg { color: var(--olive-700); }
.social-links svg { width: 16px; height: 16px; color: var(--cream-100); transition: color 0.3s; }

/* CTA BAND (interior pages) */
.cta-band { background: var(--cream-50); padding: 40px 0 110px; }
.cta-band-inner { max-width: 760px; margin: 0 auto; text-align: center; background: linear-gradient(135deg, var(--terracotta-50), var(--cream-100)); border: 1px solid var(--terracotta-100); border-radius: var(--radius-xl); padding: 56px 40px; }
.cta-band-inner h2 { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 400; color: var(--ink-900); margin-bottom: 12px; letter-spacing: -0.02em; }
.cta-band-inner h2 em { font-style: italic; font-weight: 500; background: linear-gradient(135deg, var(--terracotta-500), var(--olive-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-band-inner p { color: var(--ink-500); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; font-weight: 300; }

/* WHATSAPP FLOAT */
.wa-float-wrap { position: fixed; bottom: 28px; right: 28px; z-index: 9000; display: flex; align-items: center; gap: 12px; }
.wa-float-tooltip { background: var(--olive-700); color: var(--cream-50); font-size: 13px; font-weight: 500; padding: 10px 18px; border-radius: 100px; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: opacity 0.25s, transform 0.25s; pointer-events: none; box-shadow: var(--shadow-lg); }
.wa-float-wrap:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }
.wa-float { width: 58px; height: 58px; background: var(--wa-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); transition: transform 0.25s; animation: waPulse 3s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 28px; height: 28px; color: white; }
@keyframes waPulse { 0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); } }

/* SCROLLBAR & COOKIE */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--olive-200); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--olive-300); }
.cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9990; width: calc(100% - 48px); max-width: 680px; background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); padding: 22px 26px; transition: transform 0.4s var(--ease-out), opacity 0.4s; }
.cookie-banner.hidden { transform: translateX(-50%) translateY(120%); opacity: 0; pointer-events: none; }
.cookie-content { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cookie-content p { font-size: 13.5px; color: var(--ink-500); line-height: 1.55; flex: 1; min-width: 180px; }
.cookie-content a { color: var(--olive-600); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }
.btn-cookie-accept { background: var(--olive-500); color: var(--cream-50); padding: 9px 22px; border-radius: 100px; font-size: 13px; font-weight: 600; }
.btn-cookie-accept:hover { background: var(--olive-600); }
.btn-cookie-reject { background: transparent; color: var(--ink-500); border: 1px solid var(--cream-300); padding: 9px 20px; border-radius: 100px; font-size: 13px; }
.btn-cookie-reject:hover { background: var(--cream-100); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .services-head { grid-template-columns: 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .foryou-grid { grid-template-columns: repeat(2, 1fr); }
  .phases-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-width: 420px; margin: 0 auto; }
  .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .results-scores { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reverse .service-detail-media { order: 0; }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  .section { padding: 80px 0; }
  .nav-inner { padding: 0 22px; }
  .menu-toggle { display: flex; }
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: 100%; max-width: 340px; background: var(--cream-50); flex-direction: column; justify-content: center; padding: 60px 40px; gap: 30px; transform: translateX(100%); transition: transform 0.4s var(--ease-out); box-shadow: -10px 0 40px rgba(60, 50, 25, 0.1); }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; font-family: var(--display); }
  .lang-switch { padding: 3px; }
  .lang-btn { padding: 4px 8px; font-size: 10px; }
  .btn-nav { display: none; }
  .hero { padding: 110px 0 60px; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .hero-inner { padding: 0 22px; }
  .scroll-indicator { display: none; }
  .floating-badge { display: none; }
  .page-hero { padding: 130px 0 50px; }
  .services-grid { grid-template-columns: 1fr; }
  .foryou-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .wheel-card { padding: 44px 22px; }
  .wheel-test-inner { padding: 24px 16px; }
  .radar-wrap { width: 300px; height: 300px; }
  .wheel-q { flex-direction: column; align-items: stretch; gap: 10px; }
  .wheel-q-answers { justify-content: center; }
  .wheel-cat-head { padding: 14px 16px; }
  .wheel-cat-body-inner { padding: 0 16px 18px; }
  .newsletter-inner { padding: 48px 28px; }
  .newsletter-form { flex-direction: column; background: transparent; border: none; padding: 0; gap: 12px; }
  .newsletter-form input { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 100px; padding: 14px 22px; }
  .contact-form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float-tooltip { display: none; }
  .cta-band { padding: 20px 0 80px; }
  .cta-band-inner { padding: 40px 24px; }
}
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { width: 100%; justify-content: center; }
  .hero-image-wrap { max-width: 320px; margin: 0 auto; }
  .hero-image { object-position: 48% 50%; }
  .phases-grid { grid-template-columns: 1fr; }
  .calendly-mock { padding: 22px; }
  .contact-socials { flex-direction: column; }
  .radar-wrap { width: 260px; height: 260px; }
  .wheel-cat-titles h4 { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .cursor, .cursor-follower { display: none; }
}
