:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-hover: #ff6b6b;
  --light: #f8f9fa;
  --dark: #0f0f23;
  --text: #2d2d44;
  --text-light: #6c6c8a;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-strong: 0 8px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

.container-wide {
  max-width: 1400px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: var(--transition);
}

.nav.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow);
}

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

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

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

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

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

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

.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

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

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

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-text {
  flex: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 25px;
  font-weight: 800;
}

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

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 520px;
}

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

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

.hero-image {
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.hero-stats {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  display: flex;
  gap: 30px;
}

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

.btn-dark:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

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

/* Sections */
.section {
  padding: 100px 0;
}

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

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

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

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

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

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

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

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

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

.problem-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

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

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

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

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

.service-card {
  flex: 1 1 350px;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.service-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.02);
}

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

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

.service-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.service-image {
  height: 200px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.service-body {
  padding: 30px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary);
}

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

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

.service-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text);
  font-size: 0.9rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

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

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.price-period {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

/* Trust Section */
.trust-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.trust-content {
  flex: 1;
}

.trust-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--primary);
  line-height: 1.2;
}

.trust-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.trust-list {
  margin-top: 30px;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.trust-check {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.trust-check svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

.trust-visual {
  flex: 1;
}

.trust-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

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

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

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

.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: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

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

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

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

.benefit-item {
  flex: 1 1 calc(50% - 15px);
  display: flex;
  gap: 20px;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.benefit-text h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

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

/* How It Works */
.steps-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  counter-reset: step;
}

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

.step-card::before {
  content: counter(step);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  margin-bottom: 20px;
}

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

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

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

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

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

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

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

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

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

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

.form-content {
  flex: 1;
}

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

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

.form-benefits {
  margin-top: 30px;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text);
}

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

.form-box {
  flex: 1;
  max-width: 500px;
  background: var(--white);
  padding: 45px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8ef;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
}

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

.form-box .btn {
  width: 100%;
  margin-top: 10px;
}

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

/* Urgency Banner */
.urgency-banner {
  background: var(--primary);
  padding: 15px 0;
  text-align: center;
}

.urgency-text {
  color: var(--white);
  font-size: 1rem;
}

.urgency-text strong {
  color: var(--accent);
}

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

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

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--accent);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--text);
}

.faq-item.active .faq-icon svg {
  fill: var(--white);
}

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

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

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-light);
  line-height: 1.8;
}

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

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

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

.footer-brand .logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  max-width: 350px;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

.footer-links a {
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

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

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

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

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

.footer-bottom p {
  font-size: 0.9rem;
}

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

.footer-legal a {
  font-size: 0.9rem;
}

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

/* 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: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

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

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

.sticky-cta .btn {
  padding: 12px 30px;
}

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

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

.cookie-banner h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

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

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

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

.btn-reject {
  background: var(--light);
  color: var(--text);
}

.btn-reject:hover {
  background: #e0e0e8;
}

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

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

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

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

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

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

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

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

.content-page ul li {
  margin-bottom: 10px;
  position: relative;
  list-style: disc;
  color: var(--text);
}

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

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

.contact-info h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

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

.contact-details {
  margin-top: 30px;
}

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

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

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

.contact-item h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 5px;
}

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

.contact-map {
  flex: 1;
  min-width: 300px;
  min-height: 400px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  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.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

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

.thanks-content .btn {
  margin-top: 30px;
}

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

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
}

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

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

.value-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

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

.value-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* Equipment Grid */
.equipment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.equipment-card {
  flex: 1 1 calc(25% - 20px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.equipment-image {
  height: 180px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipment-image svg {
  width: 60px;
  height: 60px;
  fill: var(--primary);
  opacity: 0.5;
}

.equipment-body {
  padding: 20px;
}

.equipment-card h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.equipment-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-stats {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 30px;
    justify-content: center;
  }

  .trust-grid,
  .form-wrapper,
  .about-hero {
    flex-direction: column;
  }

  .benefit-item {
    flex: 1 1 100%;
  }

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

  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

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

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }

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

  .section {
    padding: 70px 0;
  }

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

  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

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

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

  .service-card.featured {
    transform: none;
  }

  .form-box {
    max-width: 100%;
    padding: 30px 25px;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

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

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

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

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

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

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

  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 16px 30px;
  }

  .problem-card,
  .step-card,
  .testimonial-card {
    padding: 30px 25px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}
