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

:root {
  --primary-pink: #E91E8C;
  --primary-pink-dark: #C01670;
  --primary-pink-light: #FF2EA0;
  --dark-gray: #2C2C2C;
  --text-dark: #1a1a1a;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --light-bg: #F9FAFB;
  --border-color: #E5E7EB;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.top-bar {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.top-bar-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-pink);
  flex-shrink: 0;
}

.top-bar-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar-item a:hover {
  color: var(--primary-pink);
}

.top-bar-item span {
  color: var(--white);
}

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 22px 0;
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

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

.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-pink);
}

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

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: ' ▼';
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
}

.dropdown-menu a:hover {
  background: var(--light-bg);
}

.btn-call {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-call:hover::before {
  left: 100%;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(233, 30, 140, 0.4);
}

.hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('https://storage.googleapis.com/campaign-website-images/10011/pexels-photo-5327580.jpeg') center/cover;
  padding: 150px 0 80px;
  margin-top: 112px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 46px;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-text p {
  color: var(--white);
  font-size: 17px;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.company-highlight {
  background: linear-gradient(135deg, #FF2EA0 0%, var(--primary-pink) 50%, #FF6BB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-card {
  background: var(--white);
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
}

.form-card h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.form-card .highlight {
  color: var(--primary-pink);
}

.form-subtitle {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--primary-pink);
}

.form-group textarea {
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 15px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.form-privacy {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--primary-pink);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.35);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(233, 30, 140, 0.45);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-submit.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn-submit.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.features-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-gray) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.features-dark::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
  z-index: 1;
}

.feature-card {
  text-align: center;
  color: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
}

.services-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
}

.section-label {
  text-align: center;
  color: var(--primary-pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  text-align: center;
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 60px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
  margin: 20px auto 0;
  border-radius: 2px;
}

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

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-pink);
}

.service-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
  opacity: 1;
}

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

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

.service-content {
  padding: 35px;
  position: relative;
  z-index: 2;
}

.service-content h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

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

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  font-size: 16px;
}

.btn-show-more::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-show-more:hover {
  gap: 12px;
}

.btn-show-more:hover::after {
  transform: translateX(5px);
}

.working-together {
  padding: 100px 0;
  background: linear-gradient(135deg, #fafafa 0%, var(--light-bg) 100%);
  position: relative;
  overflow: hidden;
}

.working-together::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.working-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

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

.working-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.working-image:hover::after {
  opacity: 1;
}

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

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

.working-content h2 {
  font-size: 36px;
  margin-bottom: 50px;
  line-height: 1.3;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.solutions-grid {
  display: grid;
  gap: 30px;
}

.solution-item {
  display: flex;
  gap: 24px;
  align-items: start;
  padding: 25px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
}

.solution-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.solution-number {
  font-size: 56px;
  font-weight: 900;
  color: #E8E8E8;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.solution-item:hover .solution-number {
  transform: scale(1.1);
}

.solution-number.pink {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-text h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.solution-text p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
}

.testimonials-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 16px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 120px;
  color: rgba(233, 30, 140, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-pink);
}

.stars {
  color: #FFB800;
  font-size: 22px;
  margin-bottom: 22px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 14px;
}

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

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
  border-color: var(--primary-pink);
  transform: scale(1.05);
}

.testimonial-author h4 {
  font-size: 16px;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.testimonial-author p {
  font-size: 13px;
  color: var(--text-light);
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-text {
  color: var(--white);
}

.cta-text h2 {
  font-size: 44px;
  margin-bottom: 24px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}

.cta-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

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

.cta-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.cta-feature svg {
  width: 24px;
  height: 24px;
  color: var(--white);
  flex-shrink: 0;
}

.cta-feature span {
  font-size: 17px;
  font-weight: 600;
}

.cta-form .form-card {
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cta-form .form-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-description {
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 28px;
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-block;
}

.footer-menu li a:hover {
  color: var(--primary-pink);
  padding-left: 6px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  line-height: 1.6;
}

.footer-contact svg {
  color: var(--primary-pink);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer-contact a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom p {
  opacity: 0.65;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-legal .separator {
  opacity: 0.3;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-info p {
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-info a {
  color: var(--white);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 30px;
  align-items: start;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #28a745;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.page-header {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.85) 0%, rgba(44, 44, 44, 0.85) 100%),
              url('https://storage.googleapis.com/campaign-website-images/10011/pexels-photo-6238297.jpeg') center/cover;
  padding: 160px 0 90px;
  margin-top: 70px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(233, 30, 140, 0.2) 0%, transparent 50%);
}

.page-header h1 {
  font-size: 54px;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.content-section {
  padding: 80px 0;
}

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

.content-wrapper h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: var(--text-dark);
}

.content-wrapper h3 {
  font-size: 22px;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

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

.content-wrapper ul {
  margin: 20px 0 20px 20px;
}

.content-wrapper li {
  margin-bottom: 10px;
  line-height: 1.8;
  color: var(--text-light);
}

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

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-pink);
  flex-shrink: 0;
  padding: 12px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(233, 30, 140, 0.05) 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.15) 0%, rgba(233, 30, 140, 0.1) 100%);
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.2);
}

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

.contact-item a {
  color: var(--primary-pink);
  text-decoration: none;
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

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

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

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

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .cta-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .top-bar-content {
    gap: 20px;
  }

  .top-bar-item {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1002;
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 998;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

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

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 10px;
    margin-left: 20px;
    background: var(--light-bg);
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .btn-call {
    display: none;
  }

  .hero {
    padding: 80px 0 60px;
    margin-top: 70px;
  }

  .page-header {
    padding: 100px 0 60px;
    margin-top: 70px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

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

  .section-title {
    font-size: 28px;
  }

  .working-content h2 {
    font-size: 24px;
  }

  .solution-number {
    font-size: 36px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

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

  .page-header h1 {
    font-size: 36px;
  }

  .top-bar {
    padding: 10px 0;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 12px;
  }

  .top-bar-item {
    font-size: 12px;
  }

  .header {
    top: auto;
    position: relative;
  }

  .hero {
    margin-top: 0;
  }

  .cta-text h2 {
    font-size: 32px;
  }

  .cta-text p {
    font-size: 16px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 60px 0 0;
  }

  .footer-grid {
    padding-bottom: 40px;
  }
}

.insurance-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.why-need-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.benefit-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 140, 0.1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(233, 30, 140, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-icon svg {
  color: var(--primary-pink);
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text-dark);
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

.plans-section {
  padding: 80px 0;
}

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

.plan-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.plan-card:hover {
  border-color: var(--primary-pink);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.2);
}

.plan-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-header h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.plan-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(233, 30, 140, 0.1);
  color: var(--primary-pink);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-badge.popular {
  background: var(--primary-pink);
  color: var(--white);
}

.plan-body {
  padding: 30px;
}

.plan-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 15px;
}

.plan-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 14px;
  color: var(--text-dark);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.plan-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
  font-size: 14px;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-pink);
  font-weight: 700;
}

.plan-how {
  color: var(--text-light);
  line-height: 1.7;
  margin: 16px 0 20px;
  font-size: 14px;
  background: #f8f9fa;
  padding: 14px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-pink);
}

.plan-pros-cons {
  background: #f8f9fa;
  padding: 18px;
  border-radius: 8px;
  font-size: 14px;
}

.plan-pros,
.plan-cons {
  padding: 6px 0;
}

.plan-pros strong {
  color: #28a745;
}

.plan-cons strong {
  color: #dc3545;
}

.coverage-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.coverage-item {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.coverage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(233, 30, 140, 0.15);
  border-color: var(--primary-pink);
}

.coverage-item svg {
  color: var(--primary-pink);
  margin-bottom: 16px;
}

.coverage-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.coverage-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.how-to-choose-section {
  padding: 80px 0;
}

.steps-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.step-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 31px;
  top: 70px;
  width: 2px;
  height: calc(100% + 10px);
  background: linear-gradient(180deg, var(--primary-pink) 0%, rgba(233, 30, 140, 0.2) 100%);
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.step-content {
  flex: 1;
  padding-top: 8px;
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

.terms-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 12px;
  margin-top: 16px;
  border-left: 4px solid var(--primary-pink);
}

.term {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-dark);
}

.term strong {
  color: var(--primary-pink);
  font-weight: 700;
}

.cta-simple-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
  text-align: center;
  color: var(--white);
}

.cta-simple-content h2 {
  font-size: 38px;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.cta-simple-content p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 16px 38px;
  border: 2px solid var(--white);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-pink);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .benefits-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    padding: 12px 0;
  }

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

  .step-item {
    flex-direction: column;
    gap: 16px;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .cta-simple-content h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-outline,
  .cta-buttons .btn-submit {
    width: 100%;
  }

  .insurance-intro {
    padding: 20px 0 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .why-need-section,
  .plans-section,
  .coverage-section,
  .how-to-choose-section {
    padding: 60px 0;
  }

  .benefit-card,
  .plan-card {
    padding: 30px 25px;
  }

  .benefit-icon {
    width: 64px;
    height: 64px;
  }

  .benefit-icon svg {
    width: 40px;
    height: 40px;
  }

  .plan-header,
  .plan-body {
    padding: 24px;
  }

  .step-content h3 {
    font-size: 20px;
  }

  .terms-box {
    padding: 18px;
  }

  .cta-simple-section {
    padding: 60px 0;
  }

  .cta-simple-content p {
    font-size: 16px;
  }
}
