*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #02008A;
  --navy-dark: #050067;
  --navy-lighter: #1a189e;
  --yellow: #FFE500;
  --yellow-warm: #FFD600;
  --white: #FFFFFF;
  --gray-light: #F5F7FB;
  --gray-mid: #6B7280;
  --gray-dark: #374151;
  --blue-soft: #E8ECFF;
  --blue-light: #D6DCFF;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(2,0,138,0.06), 0 1px 2px rgba(2,0,138,0.04);
  --shadow-md: 0 4px 12px rgba(2,0,138,0.08), 0 2px 4px rgba(2,0,138,0.04);
  --shadow-lg: 0 12px 32px rgba(2,0,138,0.10), 0 4px 12px rgba(2,0,138,0.06);
  --shadow-xl: 0 20px 48px rgba(2,0,138,0.14);
  --max-width: 1200px;
  --header-height: 96px;
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label--dark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-lighter);
  border-color: var(--navy-lighter);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--accent {
  background: var(--yellow);
  color: var(--navy-dark);
  border-color: var(--yellow);
}
.btn--accent:hover {
  background: var(--yellow-warm);
  border-color: var(--yellow-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
  transform: translateY(-2px);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}
.badge svg { flex-shrink: 0; }
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(2,0,138,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header--scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 1px 8px rgba(2,0,138,0.08); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo-img { height: 84px; width: auto; display: block; }
.header__nav-list { display: flex; align-items: center; gap: 32px; }
.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  transition: color 0.2s ease;
  position: relative;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.25s var(--ease-out);
}
.header__nav-link:hover { color: var(--navy); }
.header__nav-link:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__wsp {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #25D366;
  transition: all 0.25s var(--ease-out);
}
.header__wsp:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,211,102,0.35); }
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 28px;
  background: none; border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 3px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.header__hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.header__overlay { display: none; position: fixed; inset: 0; background: rgba(2,0,138,0.20); z-index: 998; opacity: 0; transition: opacity 0.3s ease; }
.header__overlay.open { display: block; opacity: 1; }
.hero {
  position: relative;
  min-height: 720px;
  background-image: url('/assets/hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.62) 38%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.20) 100%),
    rgba(4,28,122,0.35);
  z-index: 1;
  pointer-events: none;
}
.hero__container { position: relative; z-index: 2; }
.hero__top {
  position: relative; z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 48px;
  padding-top: 40px;
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
.hero__title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 680px;
}
.hero__subtitle {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}
.hero__bottom {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}
.hero__bullets { display: flex; flex-direction: column; gap: 10px; }
.hero__bullets li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.82); font-weight: 450; }
.hero__bullets li svg { flex-shrink: 0; color: var(--yellow); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 6px;
}
.hero__features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  font-weight: 450;
}
.hero__features span svg { flex-shrink: 0; opacity: 0.5; }

.benefits {
  padding: 100px 0;
  background: var(--gray-light);
  text-align: center;
}
.benefits__title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 16px; }
.benefits__subtitle { font-size: 17px; color: var(--gray-mid); max-width: 600px; margin: 0 auto 48px; }
.benefits__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.benefit-card {
  flex: 0 1 calc((100% - 56px) / 3);
  min-width: 280px;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--ease-out);
  border: 1px solid var(--yellow);
}
.benefit-card:hover,
.reveal.visible.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(2,0,138,0.15);
  border-color: var(--yellow-warm);
}
.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.benefit-card__icon--blue { background: var(--blue-soft); color: var(--navy); }
.benefit-card__icon--yellow { background: rgba(255, 229, 0, 0.20); color: var(--navy); }
.benefit-card__title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.benefit-card__text { font-size: 14.5px; line-height: 1.65; color: var(--gray-mid); }

.testimonials {
  padding: 80px 0;
  background: var(--gray-light);
  overflow: hidden;
}
.testimonials__header {
  text-align: center;
}
.testimonials__title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--navy); letter-spacing: -0.015em; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.testimonials__carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
.testimonials__carousel::before,
.testimonials__carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.testimonials__carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--gray-light) 0%, rgba(245,247,251,0) 100%);
}
.testimonials__carousel::after {
  right: 0;
  background: linear-gradient(-90deg, var(--gray-light) 0%, rgba(245,247,251,0) 100%);
}
.testimonials__track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: scrollCarousel 38s linear infinite;
}
.testimonials__track:hover {
  animation-play-state: paused;
}
.testimonial-card {
  width: 310px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  border: 1px solid var(--yellow);
  position: relative;
  transition: all 0.25s var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(2,0,138,0.12);
  border-color: var(--yellow-warm);
}
.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.10);
  color: #059669;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  align-self: flex-start;
}
.testimonial-card__stars { display: flex; gap: 3px; }
.testimonial-card__text { font-size: 14px; line-height: 1.65; color: var(--gray-dark); flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--yellow), var(--yellow-warm)); color: var(--navy-dark); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.testimonial-card__name { font-size: 14px; font-weight: 600; color: var(--navy); }
.testimonial-card__meta { font-size: 12px; color: var(--gray-mid); display: block; }

@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 14px)); }
}
.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}
.cta-final__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-final__title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--white); letter-spacing: -0.015em; max-width: 640px; line-height: 1.2; }
.cta-final__text { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 520px; line-height: 1.65; margin-bottom: 20px; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Pricing Section Styles */
.pricing-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.highlight-yellow {
  color: var(--yellow) !important;
}
.pricing-container-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-decorations {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 40px;
  pointer-events: none;
}
.decor-box {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  max-width: 220px;
}
.decor-text-row {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
  text-align: left;
}
.decor-icon {
  color: var(--yellow);
  flex-shrink: 0;
}
.decor-arrow {
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}
.decor-left {
  align-items: flex-start;
}
.decor-right {
  align-items: flex-end;
  text-align: right;
}
.decor-right .decor-text-row {
  justify-content: flex-end;
}
.pricing-grid {
  display: flex;
  gap: 32px;
  width: 100%;
  justify-content: center;
  align-items: stretch;
}
.pricing-card-new {
  flex: 1;
  border-radius: 24px;
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-lg);
}
.pricing-card-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.card-basic {
  background: var(--white);
  color: var(--gray-dark);
}
.card-premium {
  background: #0B143F;
  border: 2px solid var(--yellow);
  color: var(--white);
}
.premium-featured-banner {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #030825;
  font-weight: 800;
  font-size: 11px;
  padding: 6px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(255, 212, 0, 0.3);
  letter-spacing: 0.04em;
  z-index: 2;
}
.banner-icon {
  flex-shrink: 0;
}
.card-header-new {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.card-header-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.basic-icon {
  background: #EFF2FF;
  color: #041C7A;
}
.premium-icon {
  background: var(--yellow);
  color: #030825;
}
.card-header-titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.card-title-name {
  font-size: 18px;
  font-weight: 800;
  color: #041C7A;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}
.card-title-name.text-white {
  color: var(--white);
}
.card-badge-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.basic-pill {
  background: #EFF2FF;
  color: #041C7A;
}
.premium-pill {
  background: var(--yellow);
  color: #030825;
}
.card-price-section {
  margin-bottom: 28px;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 24px;
  text-align: left;
}
.card-premium .card-price-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.card-price-row {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.currency-symbol {
  font-size: 22px;
  font-weight: 850;
  margin-top: 4px;
}
.price-amount {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-subtitle {
  font-size: 13px;
  color: var(--gray-mid);
  margin-top: 6px;
}
.discount-pill {
  background: rgba(255, 212, 0, 0.08);
  border: 1px solid rgba(255, 212, 0, 0.15);
  border-radius: 12px;
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.discount-save {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}
.discount-before {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}
.line-through {
  text-decoration: line-through;
}
.features-table-container {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.table-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-mid);
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E7EB;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.border-white-opacity {
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.features-rows-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.feature-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
  color: var(--gray-dark);
}
.card-premium .feature-item-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}
.feature-label-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.row-icon {
  flex-shrink: 0;
}
.feature-status-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}
.status-active {
  color: #10B981;
}
.status-active-premium {
  color: #10B981;
}
.status-inactive {
  color: var(--gray-mid);
  opacity: 0.35;
}
.card-action-new {
  margin-top: 32px;
}
.btn-card-action {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
  border: none;
}
.basic-btn {
  border: 2px solid #041C7A;
  color: #041C7A;
  background: transparent;
}
.basic-btn:hover {
  background: #041C7A;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 28, 122, 0.15);
}
.premium-btn {
  background: var(--yellow);
  color: #030825;
}
.premium-btn:hover {
  background: #FFE600;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 212, 0, 0.25);
}
.premium-card-footer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pricing-features-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0A1440;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px 32px;
  margin-top: 56px;
  width: 100%;
  max-width: 960px;
}
.features-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}
.features-bar-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.features-bar-text {
  text-align: left;
}
.features-bar-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.features-bar-text p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 2px 0 0 0;
}
.features-bar-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.pricing-trust-subfooter {
  margin-top: 32px;
  text-align: center;
}
.trust-stars-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.trust-icon {
  color: var(--yellow);
  flex-shrink: 0;
}
.stars-gold {
  display: flex;
  align-items: center;
  gap: 2px;
}
.footer {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 0;
}
.footer__container { max-width: 1320px; padding: 0 40px; }
.footer__card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 64px 64px 52px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.6fr; gap: 48px; }
.footer__logo-img { height: 80px; width: auto; display: block; margin: 0 auto 20px; }
.footer__brand { text-align: center; }
.footer__tagline { font-size: 16px; line-height: 1.75; color: var(--gray-mid); max-width: 400px; margin: 0 auto; }
.footer__heading { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 28px; }
.footer__col ul { display: flex; flex-direction: column; gap: 14px; }
.footer__col a { font-size: 15px; color: var(--gray-mid); transition: color 0.2s ease; }
.footer__col a:hover { color: var(--navy); }
.footer__col:last-child { padding-right: 16px; }
.footer__contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--gray-mid); }
.footer__contact-list li svg { flex-shrink: 0; color: var(--navy); opacity: 0.4; }
.footer__divider { height: 1px; background: rgba(2,0,138,0.08); margin: 44px 0 28px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; }
.footer__bottom span { font-size: 14px; color: var(--gray-mid); display: inline-flex; align-items: center; gap: 6px; }
.footer__mai-logo { height: 40px; width: auto; vertical-align: middle; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1024px) {
  .hero { min-height: auto; padding: calc(var(--header-height) + 30px) 0 60px; background-position: 75% center; }
  .hero__top { text-align: center; align-items: center; }
  .hero__bottom { align-items: center; text-align: center; }
  .hero__badges { justify-content: center; }
  .hero__bullets { align-items: flex-start; align-self: flex-start; text-align: left; }
  .hero__ctas { justify-content: center; }
  .hero__features { justify-content: center; }
  .benefit-card { flex: 0 1 calc((100% - 28px) / 2); }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer__container { padding: 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer__tagline { max-width: none; margin: 0 auto; }
  .footer__contact-list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer__contact-list li {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer__contact-list li svg {
    margin-top: 5px;
  }
  .footer__bottom { flex-direction: column; gap: 4px; text-align: center; }
  .header__actions .btn--outline { display: none; }
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 24px rgba(2,0,138,0.12);
    padding: 80px 32px 32px;
    transition: right 0.35s var(--ease-out);
    z-index: 999;
  }
  .header__nav.open { right: 0; }
  .header__nav-list { flex-direction: column; align-items: flex-start; gap: 24px; }
  .header__nav-link { font-size: 18px; }
  .header__actions { display: none; }
  .header__hamburger { display: flex; }
  .hero__top { margin-bottom: 32px; }
  .hero__title { font-size: clamp(26px, 6vw, 32px); }
  .hero__ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .hero__ctas .btn { width: 100%; }
  .hero__features { justify-content: center; }

  .benefits { padding: 64px 0; }
  .benefit-card {
    flex: 0 1 100%;
    max-width: 320px;
    padding: 24px 20px;
    text-align: center;
  }
  .benefit-card__icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }

  .testimonials { padding: 64px 0; }
  .testimonials__carousel::before,
  .testimonials__carousel::after {
    width: 30px;
  }
  .cta-final { padding: 64px 0; }
  .pricing-decorations {
    display: none !important;
  }
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .pricing-card-new {
    max-width: 440px;
    width: 100%;
    padding: 24px 24px 32px;
  }
  .pricing-features-bar {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    align-items: stretch;
    margin-top: 40px;
  }
  .features-bar-item {
    justify-content: flex-start;
  }
  .features-bar-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
  }
  .trust-stars-row {
    flex-direction: column;
    gap: 8px;
  }
  .footer { padding: 60px 0; }
  .footer__container { padding: 0 16px; }
  .footer__card { padding: 40px 28px 36px; border-radius: var(--radius-lg); }
  .footer__grid { gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 480px) {
  .hero__badges { display: none; }
  .hero__top { text-align: center; align-items: center; }
}
