:root {
  --color-primary: #8B4513;
  --color-secondary: #D2691E;
  --color-accent: #CD853F;
  --color-dark: #2C1810;
  --color-light: #FDF5E6;
  --color-cream: #FAEBD7;
  --color-muted: #A0826D;
  --color-white: #FFFFFF;
  --color-text: #3D2914;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.1);
  --shadow-medium: 0 8px 30px rgba(44, 24, 16, 0.15);
  --shadow-strong: 0 12px 40px rgba(44, 24, 16, 0.2);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.8rem; }
  h3 { font-size: 2rem; }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 245, 230, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
  transition: var(--transition);
}

.nav-header.scrolled {
  box-shadow: var(--shadow-soft);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

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

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--color-cream);
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: var(--shadow-strong);
}

.nav-menu.active {
  right: 0;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-dark);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .nav-menu ul {
    flex-direction: row;
    gap: 35px;
  }

  .nav-menu a {
    font-size: 0.95rem;
    padding: 0;
    border-bottom: none;
  }

  .nav-menu a:hover {
    color: var(--color-primary);
  }

  .nav-close {
    display: none;
  }
}

/* Hero Section */
.hero-funnel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-funnel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%238B4513" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: 60px;
  transform: rotate(15deg);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.hero-title em {
  color: var(--color-primary);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-float-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-badge .icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-badge .icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.hero-float-badge span {
  font-weight: 600;
  color: var(--color-dark);
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .hero-text {
    flex: 1;
    text-align: left;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    margin: 0 0 30px;
  }

  .hero-image-wrapper {
    flex: 1;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn-accent:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 45px;
  font-size: 1.1rem;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-lg {
  padding: 100px 0;
}

.section-dark {
  background: var(--color-dark);
  color: var(--color-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-cream {
  background: var(--color-cream);
}

.section-gradient {
  background: linear-gradient(180deg, var(--color-light) 0%, var(--color-cream) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

/* Story Section */
.story-section {
  background: var(--color-white);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-block.reverse {
  flex-direction: column;
}

.story-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.story-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.story-content h3 {
  margin-bottom: 15px;
}

.story-content p {
  color: var(--color-muted);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .story-block {
    flex-direction: row;
    align-items: center;
  }

  .story-block.reverse {
    flex-direction: row-reverse;
  }

  .story-image,
  .story-content {
    flex: 1;
  }

  .story-image img {
    height: 350px;
  }
}

/* Problem Section */
.problem-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a0f0a 100%);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.problem-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 69, 19, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--color-secondary);
}

.problem-icon {
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

.problem-item h4 {
  color: var(--color-white);
  margin-bottom: 8px;
}

.problem-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Benefits Section */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  flex: 1 1 280px;
  background: var(--color-white);
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--color-cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-primary);
}

.benefit-card h4 {
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Services/Pricing */
.services-section {
  background: var(--color-cream);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 50px;
}

.service-card {
  flex: 1 1 300px;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.service-card.featured {
  border: 3px solid var(--color-primary);
  position: relative;
}

.service-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.service-image {
  height: 180px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-body {
  padding: 25px;
}

.service-body h4 {
  margin-bottom: 10px;
}

.service-body p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 20px;
}

.service-price .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-price .currency {
  font-size: 1rem;
  color: var(--color-muted);
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%238B4513"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  flex: 1 1 320px;
  background: var(--color-white);
  padding: 35px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 4rem;
  color: var(--color-cream);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 25px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-info h5 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="white" stroke-width="0.2" opacity="0.1"/></svg>');
  background-size: 50px;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 1.15rem;
}

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

.cta-section .btn-primary:hover {
  background: var(--color-cream);
  transform: translateY(-3px);
}

/* Form Section */
.form-section {
  background: var(--color-white);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.form-info h2 {
  margin-bottom: 20px;
}

.form-info p {
  color: var(--color-muted);
  margin-bottom: 30px;
}

.form-benefits {
  list-style: none;
}

.form-benefits li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}

.form-benefits li svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

.contact-form {
  background: var(--color-cream);
  padding: 40px;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid transparent;
  background: var(--color-white);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%238B4513"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}

@media (min-width: 768px) {
  .form-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-info,
  .contact-form {
    flex: 1;
  }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta p {
  font-weight: 600;
  color: var(--color-dark);
  display: none;
}

@media (min-width: 600px) {
  .sticky-cta p {
    display: block;
  }
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 15px;
}

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

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--color-white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-strong);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

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

.cookie-banner h4 {
  margin-bottom: 10px;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 12px 25px;
  font-size: 0.9rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
  padding: 140px 20px 80px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header p {
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Pages */
.content-page {
  padding: 60px 0;
  background: var(--color-white);
}

.content-page h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-page h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-page p {
  margin-bottom: 15px;
  color: var(--color-text);
}

.content-page ul,
.content-page ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.content-page li {
  margin-bottom: 10px;
  color: var(--color-text);
}

/* Contact Page */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}

.contact-info-block {
  flex: 1 1 300px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

.contact-item h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-item p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Thanks Page */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
  padding: 100px 20px;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--color-white);
}

.thanks-content h1 {
  margin-bottom: 20px;
}

.thanks-content p {
  color: var(--color-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Urgency Bar */
.urgency-bar {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.urgency-bar span {
  background: var(--color-white);
  color: var(--color-secondary);
  padding: 3px 10px;
  border-radius: 4px;
  margin-left: 10px;
}

/* Trust Badges */
.trust-section {
  background: var(--color-white);
  padding: 50px 0;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.trust-badge svg {
  width: 30px;
  height: 30px;
  fill: var(--color-primary);
}

/* Gallery */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.gallery-item {
  flex: 1 1 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* About Page */
.about-hero {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-hero {
    flex-direction: row;
    align-items: center;
  }

  .about-image,
  .about-text {
    flex: 1;
  }

  .about-image img {
    height: 450px;
  }
}

/* Process Section */
.process-list {
  margin-top: 50px;
}

.process-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
}

.process-item::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: -40px;
  width: 2px;
  background: var(--color-cream);
}

.process-item:last-child::before {
  display: none;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.process-content h4 {
  margin-bottom: 8px;
}

.process-content p {
  color: var(--color-muted);
}

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
