:root {
  --cream: #FAF7F2;
  --cream-dark: #F2EDE4;
  --cream-mid: #EDE6DA;
  --warm-white: #FFFDF9;
  --text-primary: #2C2416;
  --text-secondary: #5C4F3A;
  --text-muted: #8C7D68;
  --terracotta: #C4603A;
  --terracotta-light: #D4785A;
  --terracotta-dark: #A84D2A;
  --amber: #D4943A;
  --amber-light: #E8B060;
  --warm-green: #5A7A5A;
  --warm-green-light: #7A9A7A;
  --border: #DDD4C4;
  --border-light: #EDE6DA;
  --shadow-warm-sm: 0 2px 8px rgba(44,36,22,0.06), 0 1px 3px rgba(44,36,22,0.04);
  --shadow-warm-md: 0 4px 20px rgba(44,36,22,0.08), 0 2px 8px rgba(44,36,22,0.05), 0 1px 3px rgba(44,36,22,0.03);
  --shadow-warm-lg: 0 8px 40px rgba(44,36,22,0.10), 0 4px 16px rgba(44,36,22,0.07), 0 2px 6px rgba(44,36,22,0.04);
  --shadow-warm-xl: 0 16px 60px rgba(44,36,22,0.12), 0 8px 24px rgba(44,36,22,0.08), 0 3px 8px rgba(44,36,22,0.05);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);
  --space-3xl: clamp(4rem, 8vw, 9rem);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --transition-fast: 0.18s ease;
  --transition-mid: 0.32s ease;
  --transition-slow: 0.5s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--amber), var(--terracotta-light));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition-mid), background var(--transition-mid);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-warm-md);
  background: rgba(250, 247, 242, 0.97);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 1px;
  transition: width var(--transition-mid);
}

.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}
.lang-btn:hover { color: var(--terracotta); }
.lang-btn.active { color: var(--terracotta); }

.lang-divider {
  color: var(--border);
  font-size: 0.75rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--warm-white) !important;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 12px rgba(196,96,58,0.25);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196,96,58,0.35);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.hamburger:hover { background: var(--cream-dark); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-mid), opacity var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--warm-white);
  z-index: 999;
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-sm);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-mid);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--terracotta); }
.mobile-menu a.active { color: var(--terracotta); }

.mobile-lang {
  display: flex;
  gap: 12px;
  padding: var(--space-md) 0;
}
.mobile-lang a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  border-bottom: 1px solid var(--border) !important;
  transition: all var(--transition-fast);
}
.mobile-lang a:hover, .mobile-lang a.active {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: rgba(196,96,58,0.05);
}

.mobile-cta {
  margin-top: var(--space-md);
  background: var(--terracotta) !important;
  color: var(--warm-white) !important;
  border-radius: 12px !important;
  justify-content: center !important;
  border-bottom: none !important;
  padding: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.875rem !important;
  box-shadow: 0 4px 16px rgba(196,96,58,0.25);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 75px;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-image-side:hover img { transform: scale(1.04); }

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,36,22,0.15) 0%, rgba(44,36,22,0.05) 100%);
}

.hero-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-warm-md);
}
.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.hero-badge-text { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); line-height: 1.3; }
.hero-badge-text span { display: block; font-size: 0.7rem; color: var(--text-muted); font-weight: 400; }

.hero-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) var(--space-xl);
  background: var(--warm-white);
  position: relative;
}

.hero-content-side::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,148,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 1px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

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

.hero-description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: var(--warm-white);
  padding: 16px 32px;
  border-radius: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(196,96,58,0.3), 0 2px 8px rgba(196,96,58,0.15);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,96,58,0.38), 0 4px 12px rgba(196,96,58,0.2);
}
.btn-primary i { transition: transform var(--transition-fast); }
.btn-primary:hover i { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  padding: 16px 24px;
  border-radius: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: rgba(196,96,58,0.04);
  transform: translateY(-1px);
}

/* Decorative Strip */
.deco-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--amber) 35%, var(--warm-green) 65%, var(--terracotta-light) 100%);
  position: relative;
  overflow: hidden;
}
.deco-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.deco-strip-pattern {
  height: 32px;
  background-color: var(--cream-dark);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(196,96,58,0.08) 8px,
    rgba(196,96,58,0.08) 9px
  );
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Section Styles */
.section-pad { padding: var(--space-3xl) 0; }
.section-pad-sm { padding: var(--space-2xl) 0; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 1px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.section-heading em {
  font-style: italic;
  color: var(--terracotta);
}

.section-subheading {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
  margin-top: var(--space-sm);
}

.text-center { text-align: center; }
.text-center .section-subheading { margin-left: auto; margin-right: auto; }
.text-center .section-eyebrow { justify-content: center; }
.text-center .section-eyebrow::before { display: none; }

/* Problem/Solution Section */
.problem-section { background: var(--text-primary); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.problem-side {
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-side-left {
  background: var(--text-primary);
  position: relative;
}
.problem-side-left::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--terracotta), transparent);
}

.problem-side-right { background: #1E1710; }

.problem-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 8px;
}
.problem-eyebrow.red { color: #E07050; }
.problem-eyebrow.green { color: var(--warm-green-light); }
.problem-eyebrow::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}

.problem-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.problem-text {
  font-size: 0.95rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.8;
}

.problem-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(250,247,242,0.75);
  line-height: 1.6;
}

.problem-list li i {
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.problem-list.bad li i { color: #E07050; }
.problem-list.good li i { color: var(--warm-green-light); }

/* Services Horizontal Scroll */
.services-scroll-section { background: var(--cream); overflow: hidden; }

.services-scroll-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}
.scroll-hint i { color: var(--terracotta); animation: nudge 2s ease-in-out infinite; }
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.h-scroll-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding-bottom: var(--space-md);
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.h-scroll-track:active { cursor: grabbing; }
.h-scroll-track::-webkit-scrollbar { height: 4px; }
.h-scroll-track::-webkit-scrollbar-track { background: transparent; }
.h-scroll-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.service-card {
  flex: 0 0 320px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-warm-sm);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm-lg);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card-img { transform: scale(1.04); }

.service-card-img-wrap { overflow: hidden; height: 200px; }

.service-card-body { padding: var(--space-md) var(--space-lg); }

.service-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--terracotta), var(--amber));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 12px rgba(196,96,58,0.25);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.service-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card-tag {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(196,96,58,0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Process Section */
.process-section { background: var(--cream-dark); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.process-step {
  position: relative;
  padding: var(--space-lg);
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-warm-sm);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm-md);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(196,96,58,0.12);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.process-step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--terracotta), var(--amber));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 16px rgba(196,96,58,0.25);
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.process-step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Why Section */
.why-section { background: var(--warm-white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.why-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-warm-xl);
}
.why-image-wrap img { width: 100%; height: 500px; object-fit: cover; }
.why-image-wrap::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.why-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--cream);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.why-feature:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-warm-sm);
  transform: translateX(4px);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(196,96,58,0.1), rgba(212,148,58,0.1));
  border: 1.5px solid rgba(196,96,58,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.why-feature:hover .why-feature-icon {
  background: linear-gradient(135deg, var(--terracotta), var(--amber));
  border-color: transparent;
  color: white;
}

.why-feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.why-feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section { background: var(--cream); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-xl);
}

.faq-intro { position: sticky; top: 100px; }

.faq-intro-img {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-warm-lg);
  margin-top: var(--space-lg);
}
.faq-intro-img img { width: 100%; height: 340px; object-fit: cover; }

.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }

.faq-item {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-warm-sm);
  transition: box-shadow var(--transition-fast);
}
.faq-item:hover { box-shadow: var(--shadow-warm-md); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--terracotta); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: background var(--transition-fast), transform var(--transition-mid);
}
.faq-item.open .faq-icon {
  background: var(--terracotta);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-sm);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--text-primary) 0%, #1E1710 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196,96,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,148,58,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.cta-banner-heading em { font-style: italic; color: var(--amber-light); }

.cta-banner-text {
  font-size: 1rem;
  color: rgba(250,247,242,0.7);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  color: var(--terracotta);
  padding: 16px 36px;
  border-radius: 32px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-light:hover {
  background: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.btn-light i { transition: transform var(--transition-fast); }
.btn-light:hover i { transform: translateX(4px); }

/* Footer */
.site-footer {
  background: var(--text-primary);
  color: rgba(250,247,242,0.75);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand-logo { margin-bottom: var(--space-md); }
.footer-brand-logo img { height: 32px; width: auto; filter: brightness(0) invert(1) opacity(0.9); }

.footer-brand-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(250,247,242,0.6);
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250,247,242,0.4);
  margin-bottom: var(--space-md);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(250,247,242,0.65);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--terracotta-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(196,96,58,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-light);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.5;
}
.footer-contact-text a {
  color: rgba(250,247,242,0.65);
  transition: color var(--transition-fast);
}
.footer-contact-text a:hover { color: var(--terracotta-light); }

.footer-bottom {
  border-top: 1px solid rgba(250,247,242,0.1);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.4);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.4);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: rgba(250,247,242,0.7); }

/* Page Hero (inner pages) */
.page-hero {
  background: var(--text-primary);
  padding: calc(75px + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(196,96,58,0.08));
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--terracotta-light);
  border-radius: 1px;
}
.page-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.12;
  max-width: 700px;
}
.page-hero-heading em { font-style: italic; color: var(--amber-light); }
.page-hero-sub {
  font-size: 1rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.75;
  max-width: 580px;
  margin-top: var(--space-md);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.45);
  margin-bottom: var(--space-md);
}
.breadcrumb a {
  color: rgba(250,247,242,0.45);
  transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--terracotta-light); }
.breadcrumb i { font-size: 0.6rem; }

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.content-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-warm-sm);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.content-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm-lg);
}

.content-card-img { width: 100%; height: 220px; object-fit: cover; }
.content-card-img-wrap { overflow: hidden; height: 220px; }
.content-card:hover .content-card-img { transform: scale(1.04); transition: transform var(--transition-slow); }

.content-card-body { padding: var(--space-lg); }

.content-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.25;
}

.content-card-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--space-md);
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.feature-item:hover {
  border-color: rgba(196,96,58,0.3);
  box-shadow: var(--shadow-warm-sm);
}

.feature-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(196,96,58,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.feature-item-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Form */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info { position: sticky; top: 100px; }

.contact-info-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-xl);
  box-shadow: var(--shadow-warm-md);
  margin-bottom: var(--space-md);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(196,96,58,0.1), rgba(212,148,58,0.1));
  border: 1.5px solid rgba(196,96,58,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.contact-detail-value a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.contact-detail-value a:hover { color: var(--terracotta); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm-md);
  border: 1px solid var(--border-light);
}
.map-embed iframe { display: block; width: 100%; height: 280px; border: none; }

.contact-form-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-xl);
  box-shadow: var(--shadow-warm-md);
}

.form-group { margin-bottom: var(--space-md); }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--terracotta);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(196,96,58,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C7D68' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,96,58,0.1);
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-checkbox {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  flex-shrink: 0;
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  margin-top: 2px;
}
.form-checkbox:checked {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.form-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.form-checkbox-label a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.iti { width: 100%; }
#phone { width: 100%; }

/* Thanks Page */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding-top: 75px;
}

.thanks-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl);
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-warm-xl);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--terracotta), var(--amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 8px 24px rgba(196,96,58,0.3);
}

.thanks-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.thanks-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

/* Legal Pages */
.legal-section { background: var(--cream); padding-top: 75px; }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.legal-header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--border);
}

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--space-xl) 0 var(--space-sm);
}

.legal-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: var(--space-lg) 0 var(--space-xs);
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-body ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-body ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-body a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}
.legal-body a:hover { color: var(--terracotta-dark); }

/* About/Enfoque Page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.value-card {
  padding: var(--space-lg);
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-warm-sm);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--amber));
  transform: scaleX(0);
  transition: transform var(--transition-mid);
  transform-origin: left;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm-md);
}

.value-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--terracotta), var(--amber));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 16px rgba(196,96,58,0.25);
}

.value-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.value-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Two-col text */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.two-col-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

/* Spacer image section */
.img-full-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.img-full-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,36,22,0.6) 0%, rgba(44,36,22,0.2) 100%);
  display: flex;
  align-items: center;
}
.img-full-quote {
  max-width: 700px;
  padding: 0 var(--space-2xl);
}
.img-full-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
  font-style: italic;
}
.img-full-quote cite {
  display: block;
  font-size: 0.85rem;
  color: rgba(250,247,242,0.6);
  font-style: normal;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Services Detail Page */
.service-detail {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border-light);
}
.service-detail:last-child { border-bottom: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-warm-lg);
}
.service-detail-img img { width: 100%; height: 360px; object-fit: cover; }

.service-detail-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  background: rgba(196,96,58,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
}

.service-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}

.service-detail-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.service-includes li i {
  color: var(--warm-green);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Animate on scroll */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.anim-fade-in.visible { opacity: 1; }

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--text-primary);
  border-top: 1px solid rgba(250,247,242,0.1);
  padding: var(--space-lg);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-text-wrap { flex: 1; min-width: 280px; }

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.6;
}
.cookie-text a {
  color: var(--terracotta-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}
.cookie-btn-accept {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 2px 10px rgba(196,96,58,0.3);
}
.cookie-btn-accept:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}
.cookie-btn-reject {
  background: rgba(250,247,242,0.1);
  color: rgba(250,247,242,0.75);
  border: 1px solid rgba(250,247,242,0.2);
}
.cookie-btn-reject:hover {
  background: rgba(250,247,242,0.15);
  color: var(--cream);
}
.cookie-btn-customize {
  background: transparent;
  color: rgba(250,247,242,0.55);
  border: 1px solid rgba(250,247,242,0.15);
}
.cookie-btn-customize:hover {
  color: rgba(250,247,242,0.8);
  border-color: rgba(250,247,242,0.3);
}

/* Cookie Modal */
#cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(44,36,22,0.7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
#cookie-modal.open { display: flex; }

.cookie-modal-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-warm-xl);
}

.cookie-modal-header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}
.cookie-modal-close {
  width: 32px;
  height: 32px;
  background: var(--cream-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.cookie-modal-close:hover { background: var(--border); color: var(--text-primary); }

.cookie-modal-body { padding: var(--space-lg) var(--space-xl); }

.cookie-category {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
}
.cookie-category:last-child { border-bottom: none; }

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.cookie-category-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.cookie-category-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  transition: background var(--transition-fast);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle-switch input:checked + .toggle-slider { background: var(--terracotta); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { background: var(--terracotta); opacity: 0.6; cursor: not-allowed; }

.cookie-modal-footer {
  padding: var(--space-md) var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .nav-links { gap: var(--space-md); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { min-height: 45vh; order: -1; }
  .hero-content-side { padding: var(--space-xl) var(--space-lg); }
  .hero-heading { font-size: clamp(2rem, 5vw, 3rem); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-side-left::after { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap img { height: 350px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .two-col-text { grid-template-columns: 1fr; gap: var(--space-lg); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .service-detail-img img { height: 280px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .service-card { flex: 0 0 280px; }
  .services-scroll-header { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: var(--space-lg); }
  .contact-info-card { padding: var(--space-lg); }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .img-full-section { height: 300px; }
  .values-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .nav-logo-text { display: none; }
  .service-card { flex: 0 0 260px; }
}