/* ========================================
   LAYOUT C - Warm Organic Theme
   Шрифт: DM Sans
   Стиль: Тёплые цвета, большие скругления, мягкие тени
======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-main: 'DM Sans', -apple-system, sans-serif;
  
  /* Warm Palette */
  --cream: #fffbf5;
  --cream-dark: #f5ede3;
  --warm-white: #fdfcfa;
  
  --terracotta: #c45d3e;
  --terracotta-dark: #a84d32;
  --terracotta-light: #d97a5e;
  
  --olive: #5c6b4d;
  --olive-light: #7a8c68;
  --sage: #a3b899;
  
  --sand: #d4c4a8;
  --sand-light: #e8dcc8;
  
  --charcoal: #2d2d2d;
  --brown-dark: #3d3228;
  --brown-medium: #5c5148;
  --brown-light: #8a7e72;
  
  --white: #ffffff;
  --black: #1a1a1a;
  
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 100px;
  
  --shadow-soft: 0 4px 20px rgba(60, 50, 40, 0.08);
  --shadow-medium: 0 8px 40px rgba(60, 50, 40, 0.12);
  --shadow-large: 0 20px 60px rgba(60, 50, 40, 0.15);
  
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.75;
  color: var(--brown-medium);
  background: var(--cream);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }

svg {
  flex-shrink: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 93, 62, 0.3);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 93, 62, 0.4);
}

.btn-secondary {
  background: var(--olive);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--olive-light);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--sand);
}

.btn-outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.btn-light {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.btn-light:hover {
  box-shadow: var(--shadow-medium);
}

.btn svg { width: 18px; height: 18px; }

.btn-warm {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 93, 62, 0.3);
}

.btn-warm:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 93, 62, 0.4);
}

.btn-outline-warm {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.btn-outline-warm:hover {
  background: var(--terracotta);
  color: var(--white);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1rem;
}

.btn-block { width: 100%; }

/* ========================================
   HEADER
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--brown-medium);
  position: relative;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-links a:hover::after {
  width: 100%;
}

.burger-btn {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: var(--cream-dark);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}

.burger-btn span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.close-overlay {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.close-overlay svg {
  width: 24px;
  height: 24px;
  color: var(--charcoal);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--sand-light);
}

.overlay-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.overlay-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
}

.overlay-nav a:hover {
  color: var(--terracotta);
}

.overlay-footer {
  padding: 24px;
  border-top: 1px solid var(--sand-light);
}

@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .burger-btn { display: flex; }
}

/* ========================================
   HERO
======================================== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  color: var(--terracotta);
  font-style: normal;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--brown-light);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--charcoal);
}

.phone-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 50%;
}

.phone-icon svg {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-card.card-stats {
  bottom: -20px;
  left: -20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.floating-card.card-badge {
  top: 20px;
  right: -20px;
}

.card-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
}

.card-label {
  font-size: 0.8125rem;
  color: var(--brown-light);
}

.card-badge svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
}

.card-badge span {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
}

@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { text-align: center; }
  .hero-text { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .floating-card.card-stats { left: 10px; bottom: -10px; }
  .floating-card.card-badge { right: 10px; }
}

/* ========================================
   SECTIONS
======================================== */
section { padding: 120px 0; }

.section-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  padding: 10px 20px;
  background: var(--cream-dark);
  color: var(--terracotta);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; color: var(--brown-light); }

/* Logos */
.logos-section {
  padding: 80px 0;
  background: var(--cream-dark);
}

.logos-title {
  text-align: center;
  font-size: 0.875rem;
  color: var(--brown-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logos-row img {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
}

.logos-row img:hover {
  opacity: 1;
  filter: none;
}

.trust-badge {
  text-align: center;
  padding: 20px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.badge-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}

.badge-label {
  font-size: 0.8125rem;
  color: var(--brown-light);
}

/* Services */
.services-section { background: var(--cream); }

.section-intro {
  max-width: 600px;
  margin-bottom: 48px;
}

.section-intro.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: var(--cream-dark);
  color: var(--terracotta);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-intro h2 { margin-bottom: 12px; }
.section-intro p { font-size: 1.0625rem; color: var(--brown-light); }

.services-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-large-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.service-large-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-large);
}

.service-large-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-large-card .card-image {
  height: 220px;
  overflow: hidden;
}

.service-large-card.featured .card-image {
  height: 100%;
  min-height: 320px;
}

.service-large-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-large-card .card-body {
  padding: 32px;
}

.service-large-card .card-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--terracotta);
  background: rgba(196, 93, 62, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.service-large-card h3 {
  margin-bottom: 12px;
}

.service-large-card > .card-body > p {
  color: var(--brown-light);
  margin-bottom: 20px;
}

.card-features {
  margin-bottom: 24px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--brown-medium);
  border-bottom: 1px solid var(--sand-light);
}

.card-features li:last-child {
  border-bottom: none;
}

.card-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--terracotta);
}

.card-link svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.card-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .services-showcase { grid-template-columns: 1fr; }
  .service-large-card.featured { grid-template-columns: 1fr; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.service-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--olive);
  color: var(--white);
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.service-card.featured .service-icon {
  background: rgba(255,255,255,0.2);
}

.service-card.featured .service-icon svg {
  color: var(--white);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
}

.service-card h3 { margin-bottom: 12px; }
.service-card > p { color: var(--brown-light); margin-bottom: 24px; }

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--sand-light);
}

.service-list li:last-child { border-bottom: none; }

.service-list svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
}

.service-card.featured .service-list li {
  border-color: rgba(255,255,255,0.2);
}

.service-card.featured .service-list svg {
  color: var(--sage);
}

.service-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-template-columns: 1fr; gap: 40px; }
}

/* About */
.about-section { background: var(--cream-dark); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-large);
  width: 100%;
}

.about-content h2 { margin-bottom: 20px; }

.about-lead {
  font-size: 1.125rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 16px;
}

.about-content > p {
  color: var(--brown-light);
  margin-bottom: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-box {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--brown-light);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--olive);
}

.about-feature span {
  font-weight: 600;
  color: var(--charcoal);
}

@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .about-stats { grid-template-columns: 1fr; }
}

/* Benefits */
.benefits-section { background: var(--cream); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  color: var(--terracotta);
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--brown-light);
}

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* Process */
.process-section { background: var(--olive); color: var(--white); }

.process-section .section-intro h2,
.process-section .section-intro p {
  color: var(--white);
}

.process-section .section-eyebrow {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.step-content h3 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* Team */
.team-section { background: var(--cream); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-image {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.team-info h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.875rem;
  color: var(--brown-light);
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Testimonials */
.testimonials-section { background: var(--cream-dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #f59e0b;
}

.testimonial-card blockquote {
  font-size: 1.0625rem;
  color: var(--brown-medium);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--brown-light);
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

/* FAQ */
.faq-section { background: var(--cream); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  width: 100%;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
}

.faq-header svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
  transition: var(--transition);
}

.faq-card.active .faq-header svg {
  transform: rotate(45deg);
}

.faq-body {
  display: none;
  padding: 0 28px 24px;
}

.faq-card.active .faq-body {
  display: block;
}

.faq-body p {
  color: var(--brown-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* CTA */
.cta-section { 
  padding: 0;
  background: var(--cream); 
}

.cta-band {
  background: var(--terracotta);
  padding: 80px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-band .btn-light {
  background: var(--white);
  color: var(--terracotta);
}

.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.cta-band .btn-outline:hover {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}

@media (max-width: 768px) {
  .cta-band { padding: 48px 24px; border-radius: var(--radius-lg); }
}

/* Contact */
.contact-section { background: var(--cream-dark); padding-top: 160px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--brown-light); margin-bottom: 40px; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
}

.method-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
}

.method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
}

/* Contact Items */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { color: var(--brown-light); margin-bottom: 32px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

.item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
}

.contact-item strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9375rem;
  color: var(--brown-light);
  margin: 0;
}

.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

.contact-method strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-method span {
  font-size: 0.9375rem;
  color: var(--brown-light);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--brown-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-check input { width: auto; margin-top: 4px; }
.form-check label { font-size: 0.875rem; color: var(--brown-light); margin-bottom: 0; }
.form-check a { color: var(--terracotta); text-decoration: underline; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrapper { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-top {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-cta-band {
  text-align: center;
}

.footer-cta-band h3 {
  color: var(--white);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-main {
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-brand > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--terracotta);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col address {
  font-style: normal;
}

.footer-col address p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.footer-col address a {
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Cookie */
.cookie-modal {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  z-index: 9999;
  display: none;
  box-shadow: var(--shadow-large);
}

.cookie-modal.active { display: block; }
.cookie-modal h4 { margin-bottom: 10px; font-size: 1.0625rem; }
.cookie-modal p { font-size: 0.875rem; color: var(--brown-light); margin-bottom: 20px; }
.cookie-modal a { color: var(--terracotta); }
.cookie-actions { display: flex; gap: 12px; }
.cookie-actions .btn { flex: 1; padding: 12px 20px; }

/* Legal */
.legal-hero { padding: 160px 0 60px; background: var(--cream-dark); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--brown-light); margin-bottom: 16px; }
.breadcrumb a { color: var(--terracotta); }
.legal-hero h1 { font-size: 2.5rem; }
.legal-content { padding: 80px 0; background: var(--cream); }
.legal-content .container { max-width: 800px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 48px; margin-bottom: 20px; }
.legal-content h3 { font-size: 1.25rem; margin-top: 32px; margin-bottom: 16px; }
.legal-content p { color: var(--brown-medium); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul, .legal-content ol { margin-bottom: 16px; padding-left: 24px; }
.legal-content li { color: var(--brown-medium); margin-bottom: 8px; list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content a { color: var(--terracotta); }
