*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #f7f8fb;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --accent: #2563eb;
  --accent-glow: rgba(37, 99, 235, 0.18);
  --accent-soft: rgba(37, 99, 235, 0.07);
  --border: #e5e7eb;
  --border-hover: #d1d5db;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --radius: 16px;
  --radius-sm: 12px;
  --red: #dc2626;
  --green: #059669;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

img, video {
  max-width: 100%;
}

svg {
  flex-shrink: 0;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 310px 24px 48px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg img {
  width: 130%;
  max-width: none;
  height: auto;
  margin-left: -15%;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to bottom, black 20%, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 95%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 0%, transparent 50%, var(--bg-primary) 100%);
}

.hero-content {
  position: relative;
  max-width: 820px;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  animation: fadeInDown 0.6s ease-out;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(255,255,255,0.6);
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

.highlight {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-cards-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
  text-align: left;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius);
  text-align: left;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.hero-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
}

.hero-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-card-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-card-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 2px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease-out 0.35s both;
}

.hero-cta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
}

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease-out 0.4s both;
}

.hero-perk {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  margin-top: 4px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.4;
  pointer-events: none;
  transform: translateY(0);
}

.hero-cta.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-cta.active:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.7s ease-out 0.4s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-number {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.advantages {
  padding: 60px 16px 60px;
  position: relative;
  background: var(--bg-white);
}

.advantages-content {
  max-width: 820px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.adv-card {
  padding: 28px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.adv-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.adv-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
}

.adv-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.adv-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (min-width: 600px) {
  .advantages {
    padding: 60px 24px 80px;
  }

  .advantages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .adv-card {
    padding: 28px 24px;
  }

  .adv-title {
    font-size: 18px;
  }

  .adv-text {
    font-size: 15px;
  }
}

@media (min-width: 900px) {
  .advantages {
    padding: 80px 24px 100px;
  }

  .advantages-content {
    max-width: 900px;
  }

  .advantages-grid {
    gap: 20px;
  }

  .adv-card {
    padding: 32px 28px;
  }
}

.about {
  padding: 40px 16px 60px;
}

.about-content {
  max-width: 820px;
  margin: 0 auto;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-photo:hover img {
  transform: scale(1.05);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.about-stat {
  padding: 24px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.about-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about-stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .about {
    padding: 60px 24px 80px;
  }

  .about-photos {
    gap: 12px;
    border-radius: var(--radius);
  }

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .about-stat {
    padding: 24px 16px;
  }

  .about-stat-number {
    font-size: 32px;
  }

  .about-stat-label {
    font-size: 13px;
  }

  .about-text {
    font-size: 16px;
  }
}

@media (min-width: 900px) {
  .about {
    padding: 80px 24px 100px;
  }

  .about-content {
    max-width: 900px;
  }

  .about-photos {
    gap: 16px;
  }

  .about-stat-number {
    font-size: 36px;
  }
}

.comparison {
  padding: 60px 16px 60px;
  background: var(--bg-white);
}

.comparison-content {
  max-width: 820px;
  margin: 0 auto;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.6;
}

.accordion {
  margin-bottom: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.accordion:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.accordion.open {
  border-color: var(--border-hover);
}

.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-family: inherit;
  text-align: left;
  transition: all 0.25s ease;
}

.accordion-toggle:hover {
  background: var(--accent-soft);
}

.accordion-toggle-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.accordion-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
}

.accordion-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.accordion-hint {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: gap 0.25s ease;
}

.accordion-toggle:hover .accordion-hint {
  gap: 8px;
}

.accordion-arrow {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.accordion.open .accordion-arrow {
  transform: rotate(180deg);
}

.accordion.open .accordion-hint-text {
  display: none;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-top: 0 solid transparent;
}

.accordion.open .accordion-body {
  border-top: 1px solid var(--border);
}

.ct-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 4px 12px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-row:last-child {
  border-bottom: none;
}

.ct-label {
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 500px) {
  .ct-label {
    flex: 1 1 auto;
  }
}

.ct-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  text-align: right;
}

.ct-time {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
  min-width: 70px;
}

.ct-subtotal .ct-time {
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
}

.ct-subtotal {
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: none;
  padding: 14px 20px;
}

.ct-subtotal .ct-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.ct-subtotal .ct-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
}

.ct-grand-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(220, 38, 38, 0.06);
  border-top: 2px solid rgba(220, 38, 38, 0.2);
}

.ct-grand-total .ct-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.ct-grand-total .ct-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
}

.ct-note {
  padding: 10px 20px 14px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.comparison-bottom {
  position: relative;
  margin-top: 32px;
  padding: 40px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-white);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-bottom-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.comparison-bottom-content {
  position: relative;
}

.comparison-bottom-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.comparison-bottom-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.comparison-bottom-title .dot {
  color: var(--accent);
}

.comparison-bottom-text {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.comparison-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

.comparison-cta:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.3);
}

.price-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.price-card {
  padding: 24px 20px;
  background: var(--accent-soft);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-sm);
  text-align: center;
}

.price-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.price-card-header svg {
  color: var(--accent);
}

.price-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 4px 6px;
  margin-bottom: 8px;
}

.price-from {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.price-amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1;
}

.price-to {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.price-card-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding: 4px 12px;
  background: var(--accent-soft);
  border-radius: 100px;
  display: inline-block;
}

@media (min-width: 500px) {
  .price-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (min-width: 600px) {
  .price-card {
    padding: 28px 24px;
  }

  .price-amount {
    font-size: 42px;
  }
}

@media (min-width: 600px) {
  .comparison {
    padding: 60px 24px 80px;
  }

  .accordion-toggle {
    padding: 22px 28px;
  }

  .accordion-text {
    font-size: 16px;
  }

  .accordion-hint {
    font-size: 14px;
  }

  .ct-row {
    padding: 14px 28px;
  }

  .ct-label {
    font-size: 15px;
  }

  .ct-value {
    font-size: 15px;
  }

  .ct-time {
    font-size: 13px;
    min-width: 90px;
  }

  .ct-subtotal {
    padding: 16px 28px;
  }

  .ct-subtotal .ct-label {
    font-size: 15px;
  }

  .ct-subtotal .ct-value {
    font-size: 16px;
  }

  .ct-grand-total {
    padding: 20px 28px;
  }

  .ct-grand-total .ct-label {
    font-size: 16px;
  }

  .ct-grand-total .ct-value {
    font-size: 20px;
  }

  .ct-note {
    padding: 12px 28px 16px;
    font-size: 13px;
  }

  .comparison-bottom {
    padding: 48px 32px;
    margin-top: 40px;
  }
}

@media (min-width: 900px) {
  .comparison {
    padding: 80px 24px 100px;
  }

  .comparison-content {
    max-width: 900px;
  }
}

.reviews {
  padding: 40px 16px 60px;
}

.reviews-content {
  max-width: 820px;
  margin: 0 auto;
}

.carousel-wrap {
  margin-bottom: 20px;
}

.carousel {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.carousel:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-slide {
  flex-shrink: 0;
  height: 380px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.review-slide img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-secondary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

@media (min-width: 500px) {
  .review-slide {
    height: 440px;
  }
}

@media (min-width: 600px) {
  .review-slide {
    height: 500px;
  }

  .carousel-track {
    gap: 16px;
  }
}

.reviews-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  max-width: max-content;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.reviews-privacy svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

.reviews-privacy span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

@media (min-width: 500px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (min-width: 600px) {
  .reviews {
    padding: 60px 24px 80px;
  }

  .reviews-grid {
    gap: 16px;
  }

  .reviews-privacy span {
    font-size: 13px;
  }
}

@media (min-width: 900px) {
  .reviews {
    padding: 80px 24px 100px;
  }

  .reviews-content {
    max-width: 900px;
  }
}

.services {
  padding: 60px 16px 60px;
  background: var(--bg-white);
}

.services-content {
  max-width: 820px;
  margin: 0 auto;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 28px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.service-body {
  flex: 1;
  min-width: 0;
}

.service-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (min-width: 600px) {
  .services {
    padding: 60px 24px 80px;
  }

  .services-list {
    gap: 16px;
  }

  .service-card {
    padding: 28px 28px;
    gap: 20px;
  }

  .service-number {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .service-title {
    font-size: 19px;
  }

  .service-text {
    font-size: 15px;
  }
}

@media (min-width: 900px) {
  .services {
    padding: 80px 24px 100px;
  }

  .services-content {
    max-width: 900px;
  }

  .service-card {
    padding: 32px 32px;
  }
}

.steps {
  padding: 40px 16px 60px;
}

.steps-content {
  max-width: 820px;
  margin: 0 auto;
}

.steps-timeline {
  position: relative;
  padding-left: 0;
  margin-bottom: 40px;
}

.step {
  display: flex;
  gap: 20px;
  position: relative;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  color: var(--accent);
  border: 2px solid var(--border);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.step:hover .step-dot {
  background: rgba(37, 99, 235, 0.2);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.12);
}

.step-dot-final {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.15);
}

.step:hover .step-dot-final {
  box-shadow: 0 0 32px rgba(37, 99, 235, 0.18);
  background: #1d4ed8;
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: linear-gradient(to bottom, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.1));
  margin: 6px 0;
}

.step-body {
  flex: 1;
  padding-bottom: 32px;
  min-width: 0;
}

.step-last .step-body {
  padding-bottom: 0;
}

.step-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.steps-cta-block {
  text-align: center;
}

.steps-note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  .steps {
    padding: 60px 24px 80px;
  }

  .step-dot {
    width: 52px;
    height: 52px;
  }

  .step-dot-final {
    width: 56px;
    height: 56px;
  }

  .step-body {
    padding-bottom: 40px;
  }

  .step-title {
    font-size: 19px;
  }

  .step-text {
    font-size: 15px;
  }

  .steps-note {
    font-size: 14px;
  }
}

@media (min-width: 900px) {
  .steps {
    padding: 80px 24px 100px;
  }

  .steps-content {
    max-width: 900px;
  }

  .steps-timeline {
    margin-left: 40px;
  }
}

.faq {
  padding: 60px 16px 60px;
  background: var(--bg-white);
}

.faq-content {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item:nth-child(n+7) {
  display: none;
}

.faq-list.expanded .faq-item:nth-child(n+7) {
  display: block;
}

.faq-show-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 32px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.faq-show-all:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-list.expanded + .faq-show-all {
  display: none;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-toggle:hover {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-answer a {
  color: var(--accent);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

@media (min-width: 600px) {
  .faq {
    padding: 60px 24px 80px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-toggle {
    padding: 18px 24px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 24px 18px;
    font-size: 15px;
  }
}

@media (min-width: 900px) {
  .faq {
    padding: 80px 24px 100px;
  }

  .faq-content {
    max-width: 900px;
  }
}

.contact {
  padding: 40px 16px 40px;
}

.contact-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  padding: 40px 24px;
  text-align: center;
}

.contact-inner h2 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.contact-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 28px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.3);
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.contact-badge {
  padding: 6px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

@media (min-width: 600px) {
  .contact {
    padding: 60px 24px 60px;
  }

  .contact-inner {
    padding: 56px 40px;
  }

  .contact-text {
    font-size: 16px;
  }

  .contact-badge {
    font-size: 13px;
  }
}

@media (min-width: 900px) {
  .contact {
    padding: 80px 24px 80px;
  }

  .contact-content {
    max-width: 900px;
  }
}

.footer {
  padding: 40px 16px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-white);
}

.footer-content {
  max-width: 820px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.footer-brand-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-link-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.footer-legal {
  padding-top: 4px;
}

.footer-legal-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-legal-text {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: justify;
}

@media (min-width: 600px) {
  .footer {
    padding: 48px 24px 36px;
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
  animation: floatIn 0.6s ease-out 0.5s both;
}

.floating-cta:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.4);
}

.floating-cta svg {
  flex-shrink: 0;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.adv-card,
.about-photos,
.about-stat,
.accordion,
.comparison-bottom,
.carousel-wrap,
.service-card,
.step,
.faq-item,
.contact-content {
  opacity: 0;
  transform: translateY(24px);
}

.adv-card.visible,
.about-photos.visible,
.about-stat.visible,
.accordion.visible,
.comparison-bottom.visible,
.carousel-wrap.visible,
.service-card.visible,
.step.visible,
.faq-item.visible,
.contact-content.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 399px) {
  .hero {
    padding: 160px 12px 28px;
  }

  .hero-bg img {
    width: 180%;
    margin-left: -40%;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-cards-label {
    font-size: 13px;
  }

  .hero-card {
    padding: 14px 14px;
    gap: 10px;
  }

  .hero-card-icon {
    width: 36px;
    height: 36px;
  }

  .hero-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-card-title {
    font-size: 14px;
  }

  .hero-card-desc {
    font-size: 12px;
  }

  .hero-card-time {
    font-size: 11px;
  }

  .hero-cta-btn {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .hero-perks {
    gap: 6px;
  }

  .hero-perk {
    padding: 6px 12px;
    font-size: 11px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 8px;
    padding: 16px 16px;
  }

  .hero-stat {
    flex-direction: row;
    gap: 8px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat-number {
    font-size: 16px;
  }

  .hero-stat-label {
    font-size: 11px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .section-desc {
    font-size: 13px;
  }

  .adv-card {
    padding: 20px 16px;
  }

  .adv-title {
    font-size: 15px;
  }

  .adv-text {
    font-size: 13px;
  }

  .about-stat-number {
    font-size: 24px;
  }

  .about-stat-label {
    font-size: 11px;
  }

  .about-text {
    font-size: 13px;
  }

  .accordion-text {
    font-size: 13px;
  }

  .accordion-toggle {
    padding: 16px 14px;
  }

  .ct-label {
    font-size: 12px;
  }

  .ct-value {
    font-size: 12px;
  }

  .ct-time {
    font-size: 10px;
    min-width: 55px;
  }

  .ct-row {
    padding: 10px 14px;
    gap: 8px;
  }

  .comparison-bottom {
    padding: 28px 16px;
  }

  .comparison-bottom-title {
    font-size: 26px;
  }

  .price-amount {
    font-size: 30px;
  }

  .price-card {
    padding: 18px 14px;
  }

  .review-slide {
    height: 320px;
  }

  .service-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .service-title {
    font-size: 15px;
  }

  .service-text {
    font-size: 13px;
  }

  .step-body {
    padding-bottom: 24px;
  }

  .step-title {
    font-size: 15px;
  }

  .step-text {
    font-size: 13px;
  }

  .faq-toggle {
    padding: 14px 14px;
    font-size: 13px;
  }

  .faq-answer p {
    padding: 0 14px 14px;
    font-size: 13px;
  }

  .contact-inner {
    padding: 32px 16px;
  }

  .contact-inner h2 {
    font-size: 24px;
  }

  .contact-text {
    font-size: 14px;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
  }

  .contact-badges {
    gap: 6px;
  }

  .contact-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .floating-cta {
    bottom: 12px;
    right: 12px;
    left: 12px;
    padding: 14px 16px;
    font-size: 13px;
  }

  .comparison-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  .faq-show-all {
    width: 100%;
    font-size: 14px;
  }

  .footer-logo {
    font-size: 18px;
  }
}

@media (max-width: 599px) and (min-width: 400px) {
  .hero {
    padding: 200px 16px 32px;
  }

  .hero-bg img {
    width: 160%;
    margin-left: -30%;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-card {
    padding: 16px 18px;
    gap: 12px;
  }

  .hero-card-icon {
    width: 40px;
    height: 40px;
  }

  .hero-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-card-title {
    font-size: 15px;
  }

  .hero-card-desc {
    font-size: 13px;
  }

  .hero-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
    padding: 18px 20px;
  }

  .hero-stat-number {
    font-size: 18px;
  }

  .hero-stat-label {
    font-size: 12px;
  }

  .review-slide {
    height: 360px;
  }

  .comparison-cta {
    width: 100%;
    justify-content: center;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .faq-show-all {
    width: 100%;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    justify-content: center;
    padding: 16px 20px;
    font-size: 14px;
    border-radius: var(--radius);
  }
}

@media (max-width: 599px) {
  body {
    padding-bottom: 72px;
  }

  .footer {
    padding-bottom: 80px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-divider {
    height: 28px;
  }

  .steps-cta-block .comparison-cta {
    width: 100%;
    justify-content: center;
  }
}
