:root {
  --color-primary: #8B5A6B;
  --color-secondary: #D4A574;
  --color-accent: #C9A89A;
  --color-dark: #2D2A2E;
  --color-light: #FAF7F5;
  --color-white: #FFFFFF;
  --color-muted: #6B6569;
  --color-border: #E8E2DF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, sans-serif;
  --shadow-soft: 0 4px 20px rgba(45, 42, 46, 0.08);
  --shadow-medium: 0 8px 32px rgba(45, 42, 46, 0.12);
  --shadow-strong: 0 12px 48px rgba(45, 42, 46, 0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 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-dark);
  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, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
}

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

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.nav-links a {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-cta:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

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

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--color-light) 0%, #F5EDE8 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

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

.hero-description {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.hero-feature svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.hero-visual {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

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

.hero-floating-card {
  position: absolute;
  background: var(--color-white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.hero-floating-card.top-left {
  top: -20px;
  left: -30px;
}

.hero-floating-card.bottom-right {
  bottom: 30px;
  right: -20px;
}

.floating-stat {
  text-align: center;
}

.floating-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.floating-stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  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: #C49660;
  color: var(--color-white);
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

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

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

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

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

.section-accent {
  background: linear-gradient(135deg, #F5EDE8 0%, var(--color-light) 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.1rem;
}

/* Problem Section */
.problem-section {
  background: var(--color-white);
  padding: 100px 0;
}

.problem-grid {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.problem-content {
  flex: 1;
}

.problem-list {
  list-style: none;
  margin-top: 2rem;
}

.problem-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.problem-item:last-child {
  border-bottom: none;
}

.problem-icon {
  width: 40px;
  height: 40px;
  background: #FFE8E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #D45656;
}

.problem-text h4 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.problem-text p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 0;
}

.problem-visual {
  flex: 1;
  position: relative;
}

.problem-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

/* Solution Section */
.solution-section {
  background: linear-gradient(180deg, var(--color-light) 0%, #F5EDE8 100%);
  padding: 100px 0;
}

.solution-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.solution-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.solution-card {
  flex: 1;
  min-width: 280px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

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

.solution-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.solution-card h4 {
  margin-bottom: 0.8rem;
}

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

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--color-white);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-card {
  flex: 1;
  min-width: 320px;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

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

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

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

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

.service-card-content {
  padding: 1.8rem;
}

.service-card-content h4 {
  margin-bottom: 0.8rem;
}

.service-card-content p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.service-price-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.service-features li svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-section {
  background: var(--color-dark);
  padding: 100px 0;
  color: var(--color-white);
}

.testimonials-section .section-label {
  color: var(--color-secondary);
}

.testimonials-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.testimonials-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-stars {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.testimonial-info h5 {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Trust Section */
.trust-section {
  background: var(--color-light);
  padding: 60px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.trust-label {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: var(--color-white);
}

.benefits-layout {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.benefits-content {
  flex: 1;
}

.benefits-list {
  list-style: none;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
}

.benefit-text h4 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

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

.benefits-image {
  flex: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #6B4350 100%);
  padding: 80px 0;
  color: var(--color-white);
  text-align: center;
}

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

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

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

/* Form Section */
.form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F5EDE8 0%, var(--color-light) 100%);
}

.form-wrapper {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.form-content {
  flex: 1;
}

.form-benefits {
  list-style: none;
  margin-top: 2rem;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  font-size: 1rem;
}

.form-benefits li svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.form-container {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
}

.form-title {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title h3 {
  margin-bottom: 0.5rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 90, 107, 0.1);
}

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

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 1rem;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--color-white);
}

.about-layout {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-signature {
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--color-light);
}

.contact-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.contact-text h4 {
  margin-bottom: 0.3rem;
}

.contact-text p {
  color: var(--color-muted);
  margin: 0;
}

.contact-form-wrapper {
  flex: 1.5;
  min-width: 350px;
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-main {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  flex: 1.5;
  min-width: 280px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

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

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-column {
  flex: 1;
  min-width: 160px;
}

.footer-column h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

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

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--color-secondary);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

.cookie-accept:hover {
  background: var(--color-secondary);
}

.cookie-reject {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
  border-color: var(--color-white);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sticky-cta.show {
  opacity: 1;
  visibility: visible;
}

.sticky-cta .btn {
  box-shadow: var(--shadow-strong);
}

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

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--color-white);
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
}

.thanks-content h1 {
  margin-bottom: 1rem;
}

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

/* Legal Pages */
.legal-page {
  padding: 140px 0 80px;
  background: var(--color-light);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.legal-content h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.legal-content p {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.urgency-banner strong {
  font-weight: 700;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: var(--color-light);
}

.process-steps {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  min-width: 240px;
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h4 {
  margin-bottom: 0.8rem;
}

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

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--color-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-dark);
}

.faq-question svg {
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-top: 1rem;
  color: var(--color-muted);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-content,
  .problem-grid,
  .benefits-layout,
  .about-layout,
  .form-wrapper {
    flex-direction: column;
  }

  .hero-visual {
    min-height: 400px;
    width: 100%;
  }

  .hero-image-wrapper img {
    height: 400px;
  }

  .hero-floating-card {
    display: none;
  }

  .problem-visual,
  .benefits-image,
  .about-image {
    order: -1;
  }

  .footer-main {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .main-nav.active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    gap: 0;
  }

  .main-nav.active .nav-links li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .service-card {
    min-width: 100%;
  }

  .solution-card,
  .testimonial-card {
    min-width: 100%;
  }

  .trust-items {
    gap: 2rem;
  }

  .trust-item {
    flex: 1 1 45%;
  }

  .contact-grid {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    padding: 1.5rem;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .process-steps {
    flex-direction: column;
  }

  .footer-main {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  .hero-section {
    padding: 100px 0 60px;
  }

  .btn {
    padding: 0.9rem 1.5rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none; }
