:root {
  --primary: #8B4513;
  --primary-dark: #5D2E0C;
  --secondary: #D4A574;
  --accent: #C41E3A;
  --light: #FDF5E6;
  --dark: #2C1810;
  --text: #3E2723;
  --text-light: #6D4C41;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(44, 24, 16, 0.15);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

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

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

.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;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

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

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

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

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #E91E63);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196, 30, 58, 0.5);
  color: var(--white);
}

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

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

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

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

.btn-lg {
  padding: 18px 45px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='%23D4A574' opacity='0.1'/%3E%3C/svg%3E") repeat;
  background-size: 60px;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-50px) rotate(5deg); }
}

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

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 25px;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 500px;
}

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

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

.hero-image {
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
}

.hero-floating {
  position: absolute;
  background: var(--white);
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  animation: floatElement 3s ease-in-out infinite;
}

.hero-floating.top {
  top: 20px;
  right: -20px;
}

.hero-floating.bottom {
  bottom: 40px;
  left: -30px;
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sections */
section {
  padding: 80px 0;
}

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

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

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

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

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

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

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

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

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

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

.problem-card {
  flex: 1;
  min-width: 280px;
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: transform 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), #E91E63);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.problem-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}

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

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

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

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

.story-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--secondary);
  border-radius: 20px;
  z-index: -1;
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 25px;
}

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

.story-highlight {
  background: var(--light);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid var(--primary);
  margin: 25px 0;
}

.story-highlight p {
  margin: 0;
  font-style: italic;
  color: var(--primary-dark);
}

/* Products/Services */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.product-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

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

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-image {
  height: 220px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 30px;
}

.product-info h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.product-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.price-old {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 10px;
}

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

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

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

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.benefit-text h4 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
}

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

.benefits-image {
  flex: 1;
  min-height: 400px;
  border-radius: 25px;
  background: var(--light);
  overflow: hidden;
}

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

/* Testimonials */
.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  min-width: 350px;
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 25px;
  font-style: italic;
  line-height: 1.8;
}

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

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

.author-info h5 {
  font-size: 1rem;
  color: var(--dark);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Trust Section */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

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

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

/* Urgency Section */
.urgency-box {
  background: linear-gradient(135deg, var(--accent), #B91C1C);
  color: var(--white);
  padding: 50px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='15' fill='white' opacity='0.05'/%3E%3C/svg%3E") repeat;
}

.urgency-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
}

.urgency-box p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.95;
  position: relative;
}

.urgency-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.timer-block {
  background: rgba(255,255,255,0.2);
  padding: 15px 25px;
  border-radius: 10px;
  min-width: 80px;
}

.timer-block .num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.timer-block .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.8;
}

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

.form-content {
  flex: 1;
}

.form-content h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.form-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

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

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text);
}

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

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

.form-box h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 25px;
  text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

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

.form-group select {
  cursor: pointer;
  background: var(--white);
}

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

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

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.section-dark .stat-number {
  color: var(--secondary);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 10px;
}

.section-dark .stat-label {
  color: rgba(255,255,255,0.8);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  padding: 0 25px 22px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

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

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
}

.sticky-cta.visible {
  display: block;
}

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

.sticky-text {
  font-weight: 600;
  color: var(--dark);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 10000;
  display: none;
}

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

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

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

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

.cookie-btn {
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

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

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

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--light) 0%, #FFF8E7 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Content Pages */
.content-page {
  padding: 60px 0;
}

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

.content-page h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin: 30px 0 15px;
}

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

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

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

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

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

.contact-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.contact-item svg {
  width: 30px;
  height: 30px;
  fill: var(--primary);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

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

.contact-map {
  flex: 1;
  min-width: 300px;
  min-height: 400px;
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
}

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

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

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

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

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

/* Services Page */
.services-full {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-full-item {
  display: flex;
  gap: 50px;
  align-items: center;
}

.service-full-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-full-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.service-full-content {
  flex: 1;
}

.service-full-content h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.service-full-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-full-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

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

.about-hero-image {
  flex: 1;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-hero-content h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

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

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

.value-card svg {
  width: 50px;
  height: 50px;
  fill: var(--primary);
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

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

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-subtitle {
    margin: 0 auto 35px;
  }

  .hero-cta {
    justify-content: center;
  }

  .story-wrapper,
  .form-wrapper,
  .benefits-wrapper,
  .about-hero,
  .service-full-item,
  .service-full-item:nth-child(even) {
    flex-direction: column;
  }

  .story-image::after {
    display: none;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid #eee;
  }

  .nav-menu a {
    display: block;
    padding: 15px 0;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-floating {
    display: none;
  }

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

  .sticky-text {
    font-size: 0.9rem;
  }

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

  .urgency-timer {
    flex-wrap: wrap;
  }

  .timer-block {
    min-width: 60px;
    padding: 10px 15px;
  }

  .timer-block .num {
    font-size: 1.5rem;
  }

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

  .testimonials-slider {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .btn-lg {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .form-box {
    padding: 30px 20px;
  }

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