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

:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --light: #f8f9fa;
  --text: #4a5568;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', sans-serif;
  color: var(--primary);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

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

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

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 15px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.privacy-popup.show {
  transform: translateY(0);
}

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

.privacy-content p {
  margin: 0;
  font-size: 13px;
  flex: 1;
  min-width: 250px;
}

.privacy-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-actions a {
  color: var(--accent);
  font-size: 13px;
  text-decoration: underline;
}

.privacy-actions button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy-actions button:hover {
  background: #d63850;
  transform: translateY(-2px);
}

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 35px;
}

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

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.hero-mega {
  background: linear-gradient(135deg, var(--primary) 0%, #0f0f1e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(233, 69, 96, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(233, 69, 96, 0.08) 0%,
      transparent 50%
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(233, 69, 96, 0.2);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(233, 69, 96, 0.3);
}

.hero-text h1 {
  color: white;
  margin-bottom: 25px;
  line-height: 1.1;
}

.highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-text > p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-mini {
  display: flex;
  flex-direction: column;
}

.stat-mini strong {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-mini span {
  font-size: 12px;
  opacity: 0.8;
}

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

.btn-primary,
.btn-outline,
.btn-large {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: #d63850;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-badge i {
  color: var(--accent);
  font-size: 1.5rem;
}

.image-badge span {
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

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

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

.section-header.centered {
  text-align: center;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text);
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy {
  padding: 90px 0;
  background: var(--light);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.philosophy-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(233, 69, 96, 0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.philosophy-card h3 {
  margin-bottom: 15px;
}

.philosophy-card p {
  font-size: 14px;
  line-height: 1.7;
}

.services-showcase {
  padding: 90px 0;
  background: white;
}

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.services-content h2 {
  margin-bottom: 40px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-item {
  display: flex;
  gap: 20px;
}

.service-item i {
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.service-item p {
  font-size: 14px;
  line-height: 1.7;
}

.services-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.methodology {
  padding: 90px 0;
  background: var(--light);
}

.method-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.method-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent) 0%, #d63850 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.step-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  position: relative;
}

.step-content h3 {
  margin-bottom: 12px;
}

.step-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.step-duration {
  display: inline-block;
  background: var(--light);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.impact {
  padding: 90px 0;
  background: white;
}

.impact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.impact-text h2 {
  margin-bottom: 20px;
}

.impact-text > p {
  font-size: 1.05rem;
  margin-bottom: 35px;
}

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

.impact-list li {
  display: flex;
  gap: 18px;
}

.impact-list i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.impact-list strong {
  display: block;
  color: var(--primary);
  margin-bottom: 3px;
  font-size: 15px;
}

.impact-list span {
  font-size: 13px;
  line-height: 1.6;
}

.impact-stats-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-circle {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary) 0%, #0f0f1e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.circle-content {
  text-align: center;
  color: white;
}

.circle-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.circle-label {
  display: block;
  font-size: 13px;
  opacity: 0.9;
}

.testimonials-modern {
  padding: 90px 0;
  background: var(--light);
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-modern {
  background: white;
  padding: 35px;
  border-radius: 16px;
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: rgba(233, 69, 96, 0.15);
  margin-bottom: 20px;
}

.testimonial-modern p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--light);
}

.author-info strong {
  display: block;
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 3px;
}

.author-info span {
  font-size: 12px;
  color: var(--text);
}

.rating {
  color: var(--accent);
  font-size: 12px;
}

.why-choose {
  padding: 90px 0;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.why-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 12px;
}

.why-card p {
  font-size: 13px;
  line-height: 1.7;
}

.final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0f0f1e 100%);
}

.cta-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.cta-content-modern {
  color: white;
}

.cta-content-modern h2 {
  color: white;
  margin-bottom: 15px;
}

.cta-content-modern > p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.cta-features i {
  color: var(--accent);
}

.cta-action {
  text-align: center;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-note strong {
  color: white;
}

.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  font-size: 13px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f0f1e 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  color: white;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .hero-grid,
  .services-split,
  .impact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-image {
    order: -1;
  }

  .services-image {
    order: -1;
  }

  .philosophy-grid,
  .testimonials-carousel,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    grid-template-columns: 1fr;
    padding: 40px;
  }
}

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

  h2 {
    font-size: 1.7rem;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    gap: 15px;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: block;
  }

  .hero-mega {
    padding: 60px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .philosophy-grid,
  .testimonials-carousel,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .method-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .impact-stats-visual {
    flex-direction: row;
  }

  .stat-circle {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero-mega {
    padding: 40px 0;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 15px;
  }

  .hero-text > p {
    font-size: 1rem;
  }

  .stat-mini strong {
    font-size: 1.4rem;
  }

  .philosophy,
  .services-showcase,
  .methodology,
  .impact,
  .testimonials-modern,
  .why-choose,
  .final-cta {
    padding: 60px 0;
  }

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

  .impact-stats-visual {
    flex-direction: column;
  }

  .stat-circle {
    max-width: 100%;
  }

  .btn-primary,
  .btn-outline,
  .btn-large {
    padding: 12px 24px;
    font-size: 13px;
  }
}

.results-intro {
  padding: 60px 0 40px;
  background: var(--light);
}

.case-studies {
  padding: 60px 0;
  background: var(--light);
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
  background: white;
  padding: 50px;
  border-radius: 20px;
}

.case-study.reverse {
  direction: rtl;
}

.case-study.reverse > * {
  direction: ltr;
}

.case-image img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.case-label {
  display: inline-block;
  background: rgba(233, 69, 96, 0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.case-content h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.case-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.case-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.case-meta i {
  color: var(--accent);
}

.case-content > p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.case-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.case-list {
  list-style: none;
  margin-bottom: 30px;
}

.case-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 14px;
  line-height: 1.7;
}

.case-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.case-result {
  background: var(--light);
  padding: 25px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  font-style: italic;
  font-size: 14px;
  line-height: 1.8;
}

.metrics {
  padding: 90px 0;
  background: white;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.metric-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.metric-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent) 0%, #d63850 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.metric-icon i {
  font-size: 1.8rem;
  color: white;
}

.metric-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.metric-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.metric-card p {
  font-size: 12px;
  line-height: 1.6;
}

.products-section {
  padding: 90px 0;
  background: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-icon {
  width: 90px;
  height: 90px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.product-icon i {
  font-size: 2.2rem;
  color: var(--accent);
}

.product-card h3 {
  margin-bottom: 15px;
}

.product-card p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.product-price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.btn-product {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.contact-section {
  padding: 90px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.contact-info > p {
  margin-bottom: 35px;
  font-size: 15px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--light);
  padding: 45px;
  border-radius: 20px;
}

.contact-form h2 {
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: white;
}

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

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

.checkbox-group {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.6;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.contact-form button {
  width: 100%;
  margin-top: 15px;
}

.map-section {
  padding: 90px 0;
  background: var(--light);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.faq-section {
  padding: 90px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  padding: 30px;
  background: var(--light);
  border-radius: 16px;
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.7;
}

.thankyou-section,
.error-section {
  padding: 80px 0;
  background: white;
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.thankyou-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 30px;
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 20px;
}

.thankyou-message,
.error-message {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.thankyou-submessage,
.error-submessage {
  font-size: 15px;
  margin-bottom: 35px;
  color: var(--text);
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.thankyou-info {
  margin-top: 35px;
  padding: 25px;
  background: var(--light);
  border-radius: 12px;
}

.thankyou-info p {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.thankyou-info i {
  color: var(--accent);
  font-size: 1.2rem;
}

.error-number {
  font-size: 8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}

.error-links {
  margin-top: 35px;
}

.error-links p {
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 600;
}

.error-links a {
  display: inline-block;
  margin: 0 12px;
  color: var(--accent);
  font-size: 14px;
  text-decoration: underline;
}

.policy-section {
  padding: 90px 0;
  background: white;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 10px;
}

.policy-date {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 40px;
  font-style: italic;
}

.policy-content h2 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.policy-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.15rem;
}

.policy-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 15px;
}

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

.policy-content li {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .case-study {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .case-study.reverse {
    direction: ltr;
  }

  .case-image {
    order: -1;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .case-study {
    padding: 30px 20px;
    margin-bottom: 50px;
  }

  .metrics-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .logo {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .case-study {
    padding: 25px 15px;
  }

  .metric-number {
    font-size: 2rem;
  }

  .product-price {
    font-size: 1.6rem;
  }

  .error-number {
    font-size: 5rem;
  }
}

.closet-problems {
  padding: 90px 0;
  background: var(--light);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.problem-card {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.problem-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

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

.problem-card p {
  font-size: 13px;
  line-height: 1.7;
}

.closet-solutions {
  padding: 90px 0;
  background: white;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-card {
  background: var(--light);
  padding: 35px 30px;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.solution-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(233, 69, 96, 0.15);
  line-height: 1;
  margin-bottom: 15px;
}

.solution-card h3 {
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 13px;
  line-height: 1.7;
}

.closet-benefits {
  padding: 90px 0;
  background: var(--light);
}

.benefits-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.benefits-detailed {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefits-detailed li {
  display: flex;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 12px;
}

.benefits-detailed i {
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.benefits-detailed strong {
  display: block;
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 15px;
}

.benefits-detailed span {
  font-size: 13px;
  line-height: 1.6;
}

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

.stat-highlight {
  background: white;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--accent);
}

.stat-big {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-highlight p {
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .problems-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stat-big {
    font-size: 2.2rem;
  }
}
