/* Bazar Direct - Funnel Styles */
:root {
  --primary: #c4392d;
  --primary-dark: #9e2e24;
  --secondary: #1a1a2e;
  --accent: #e8b923;
  --light: #f9f7f3;
  --dark: #16213e;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --success: #10b981;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--secondary);
  background: var(--light);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Navigation */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--secondary);
  position: relative;
  padding: 8px 0;
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

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

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--secondary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  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="1" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 30px 30px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--accent);
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-float {
  position: absolute;
  background: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-1 {
  top: 20%;
  right: -30px;
}

.hero-float-2 {
  bottom: 15%;
  left: -20px;
}

.hero-float-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.hero-float-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--secondary);
}

.hero-float-text span {
  font-size: 0.85rem;
  color: var(--gray);
}

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

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,57,45,0.35);
}

.btn-secondary {
  background: white;
  color: var(--secondary);
  border: 2px solid var(--gray-light);
}

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

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

.btn-accent:hover {
  background: #d4a820;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* Section Base */
.section {
  padding: 100px 24px;
}

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

.section-gray {
  background: #f3f4f6;
}

.section-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-dark .section-tag {
  color: var(--accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

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

/* Problem Section */
.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.problem-card {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.problem-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(196,57,45,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--gray);
}

/* Story Section */
.story-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

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

.story-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--secondary);
  padding: 20px 30px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  line-height: 1.3;
}

.story-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.story-list {
  list-style: none;
  margin: 30px 0;
}

.story-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.story-list-icon {
  width: 28px;
  height: 28px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Services/Pricing */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.service-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.service-card-body {
  padding: 30px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.service-card-price strong {
  font-size: 2rem;
  color: var(--primary);
}

.service-card-price span {
  color: var(--gray);
  font-size: 0.9rem;
}

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

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

.service-card-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  color: var(--gray-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-author-info strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author-info span {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Benefits */
.benefits-wrapper {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.benefits-content {
  flex: 1;
}

.benefits-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.benefits-content > p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
}

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

.benefit-text h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

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

.benefits-image {
  flex: 1;
  display: flex;
  align-items: center;
}

.benefits-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Stats */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px 40px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 24px;
  text-align: center;
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.urgency-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.urgency-timer {
  display: flex;
  gap: 12px;
}

.timer-block {
  background: rgba(255,255,255,0.2);
  padding: 10px 16px;
  border-radius: var(--radius);
  text-align: center;
}

.timer-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  display: block;
}

.timer-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

/* Form Section */
.form-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.form-content {
  flex: 1;
}

.form-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

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

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

.form-guarantees li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--secondary);
}

.form-guarantees li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-container {
  flex: 1;
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
}

.form-subtitle {
  color: var(--gray);
  text-align: center;
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(196,57,45,0.1);
}

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

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

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 16px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.sticky-cta-text {
  font-weight: 600;
}

.sticky-cta-text span {
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--secondary);
  color: white;
  padding: 80px 24px 30px;
}

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

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

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

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

.footer-brand p {
  color: rgba(255,255,255,0.7);
  max-width: 300px;
  line-height: 1.7;
}

.footer-links {
  flex: 1;
  min-width: 150px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  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-text {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--secondary);
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-reject {
  background: var(--gray-light);
  color: var(--secondary);
}

.cookie-reject:hover {
  background: #d1d5db;
}

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Pages */
.content-section {
  padding: 80px 24px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--secondary);
}

.content-wrapper h3 {
  font-size: 1.4rem;
  margin: 30px 0 16px;
  color: var(--secondary);
}

.content-wrapper p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
  color: var(--gray);
  margin: 16px 0 16px 24px;
  line-height: 1.8;
}

.content-wrapper li {
  margin-bottom: 8px;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

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

.contact-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--secondary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,57,45,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--secondary);
}

.contact-item-text span {
  color: var(--gray);
}

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  text-align: center;
}

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 3rem;
  color: white;
}

.thanks-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.thanks-content p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.thanks-service {
  background: var(--light);
  padding: 20px;
  border-radius: var(--radius);
  margin: 30px 0;
  font-weight: 600;
  color: var(--primary);
}

/* About Page */
.about-hero {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-hero-content {
  flex: 1;
}

.about-hero-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-hero-content p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

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

.about-hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.value-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container,
  .story-wrapper,
  .benefits-wrapper,
  .form-wrapper,
  .about-hero {
    flex-direction: column;
  }

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-float {
    display: none;
  }

  .story-image-badge {
    bottom: 20px;
    right: 20px;
  }

  .benefits-image {
    order: -1;
  }

  .form-container {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 60px 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .sticky-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta .btn {
    width: 100%;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .urgency-content {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
  }

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

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

  .stats-grid {
    gap: 20px;
  }

  .stat-item {
    padding: 15px 20px;
    flex: 1 1 40%;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}
