/* ============================================
   Полиглот (Polyglot) — Static Export Stylesheet
   Brand: Navy #001159, Red CTA #e60f00
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'DM Sans', sans-serif;
  color: #001159;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Background Pattern --- */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url(https://static.tildacdn.com/tild3964-6266-4263-a463-316264346539/bg-pattern.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* --- Utility --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.container-sm {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}

.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.badge {
  display: inline-block;
  background: #e60f00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 9999px;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #001159;
  margin-top: 8px;
}

.section-subtitle {
  color: #6b7280;
  margin-top: 8px;
}

.btn-red {
  display: inline-block;
  background: #e60f00;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: center;
}

.btn-red:hover {
  background: #cc0d00;
}

.btn-red-pill {
  display: inline-block;
  background: #e60f00;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 32px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: center;
}

.btn-red-pill:hover {
  background: #cc0d00;
}

/* --- Fade-in Animation --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   1. HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-logo img {
  height: 40px;
}

.header-logo-text {
  color: #e60f00;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.header-nav button {
  font-size: 14px;
  color: rgba(0,17,89,0.7);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 9999px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.header-nav button:hover {
  color: #001159;
  background: rgba(0,17,89,0.05);
}

.header-right {
  display: none;
  align-items: center;
  gap: 16px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-socials a {
  color: rgba(0,17,89,0.6);
  transition: color 0.2s;
}

.header-socials a:hover {
  color: #001159;
}

.header-socials svg {
  width: 20px;
  height: 20px;
}

.header-phone {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,17,89,0.8);
  white-space: nowrap;
  transition: color 0.2s;
}

.header-phone:hover {
  color: #001159;
}

.header-cta {
  background: #e60f00;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.header-cta:hover {
  background: #cc0d00;
}

.hamburger {
  display: flex;
  background: none;
  border: none;
  color: #001159;
  cursor: pointer;
  padding: 4px;
}

.hamburger svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(0,17,89,0.1);
  padding: 0 16px 16px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu button.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(0,17,89,0.7);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,17,89,0.05);
  cursor: pointer;
}

.mobile-menu button.mobile-nav-link:hover {
  color: #001159;
}

.mobile-menu-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
}

.mobile-menu-bottom a {
  color: rgba(0,17,89,0.6);
}

.mobile-menu-bottom a svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-phone {
  font-size: 14px;
  color: rgba(0,17,89,0.8);
  margin-left: auto;
}

.mobile-menu-cta {
  width: 100%;
  margin-top: 16px;
  background: #e60f00;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-menu-cta:hover {
  background: #cc0d00;
}

/* ============================================
   2. HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: 64px;
  background: #f5f5f5;
}

.hero-desktop {
  display: none;
}

.hero-desktop img.hero-cover {
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  padding-top: 64px;
  display: flex;
  align-items: center;
  z-index: 10;
}

.hero-overlay-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-content {
  max-width: 560px;
  padding: 64px 0 96px;
}

.hero-badge {
  display: inline-block;
  background: #e60f00;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #001159;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #001159;
  font-weight: 600;
  margin-bottom: 8px;
  max-width: 400px;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(0,17,89,0.8);
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 400px;
}

.hero-cta {
  display: inline-block;
  background: #e60f00;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(230,15,0,0.2);
  transition: background 0.2s;
}

.hero-cta:hover {
  background: #cc0d00;
}

/* Hero Mobile */
.hero-mobile {
  position: relative;
}

.hero-mobile img {
  width: 100%;
  height: auto;
}

.hero-mobile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0.8) 60%, transparent);
}

.hero-mobile-overlay .hero-badge {
  font-size: 10px;
  padding: 4px 12px;
  margin-bottom: 8px;
}

.hero-mobile-overlay h1 {
  font-size: 1.125rem;
  font-weight: 900;
  color: #001159;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-mobile-overlay .hero-subtitle {
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.hero-mobile-overlay .hero-desc {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.hero-mobile-overlay .hero-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 13px;
}

/* Wave Transition */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  pointer-events: none;
  overflow: visible;
  margin-left: -5%;
  margin-right: -5%;
  width: 110%;
}

.wave-bottom svg {
  width: 100%;
  height: 60px;
  display: block;
  overflow: visible;
}

/* ============================================
   3. BENEFITS
   ============================================ */
.benefits {
  padding: 80px 0;
  position: relative;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.benefit-card {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.benefit-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.benefit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card-body {
  padding: 20px;
}

.benefit-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #001159;
  margin-bottom: 8px;
}

.benefit-card-body p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.benefit-card .btn-red {
  display: block;
  width: 100%;
}

.benefits-bottom-row {
  position: relative;
  margin-top: 24px;
}

.flag-pole {
  display: none;
  position: absolute;
  pointer-events: none;
  user-select: none;
  bottom: -250px;
}

.flag-pole img {
  height: 1050px;
  object-fit: contain;
  animation: flag-sway 3s ease-in-out infinite;
  transform-origin: bottom left;
}

.benefits-bottom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* ============================================
   4. REQUIREMENTS
   ============================================ */
.requirements {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.requirements-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,17,89,0.6);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.requirements-label svg {
  width: 16px;
  height: 16px;
}

.requirements h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: #001159;
  margin-bottom: 40px;
}

.req-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.req-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0,17,89,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.req-icon svg {
  width: 20px;
  height: 20px;
  color: #001159;
}

.req-item h3 {
  font-weight: 700;
  color: #001159;
  margin-bottom: 2px;
}

.req-item p {
  font-size: 0.875rem;
  color: rgba(0,17,89,0.6);
}

.requirements-image {
  display: none;
}

.requirements-image .img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 380px;
  margin-left: auto;
}

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

/* ============================================
   5. PROGRAMS
   ============================================ */
.programs {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.program-card {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  padding: 24px;
}

.program-label {
  display: inline-block;
  background: #e60f00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.program-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #001159;
  line-height: 1.1;
  margin-bottom: 4px;
}

.program-duration {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 12px;
}

.program-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-pricing {
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
}

.program-pricing-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.program-pricing-header span:not(:first-child) {
  text-align: center;
}

.program-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #f9fafb;
}

.program-pricing-row:last-child {
  border-bottom: none;
}

.program-pricing-row span:first-child {
  font-weight: 500;
  color: #001159;
}

.program-pricing-row span:not(:first-child) {
  text-align: center;
  color: #374151;
}

.program-card .btn-red {
  margin-top: 20px;
  display: block;
  width: 100%;
}

/* ============================================
   6. PRICING
   ============================================ */
.pricing {
  padding: 80px 0;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 8px 20px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #001159;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-tab:hover {
  background: rgba(0,17,89,0.05);
}

.pricing-tab.active {
  background: #001159;
  color: #fff;
  border-color: #001159;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pricing-content {
  display: none;
}

.pricing-content.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pricing-card {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  padding: 24px;
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid #001159;
}

.pricing-popular {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e60f00;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #001159;
  margin-bottom: 16px;
}

.pricing-amount {
  margin-bottom: 4px;
}

.pricing-amount .price {
  font-size: 1.875rem;
  font-weight: 700;
  color: #001159;
}

.pricing-amount .unit {
  color: #6b7280;
  margin-left: 4px;
}

.pricing-sub {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 24px;
}

.pricing-card .btn-pricing {
  display: block;
  width: 100%;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #001159;
}

.pricing-card .btn-pricing:hover {
  background: rgba(0,17,89,0.05);
}

.pricing-card.featured .btn-pricing {
  background: #001159;
  color: #fff;
  border-color: #001159;
}

.pricing-card.featured .btn-pricing:hover {
  background: #001a70;
}

/* ============================================
   7. STEPS
   ============================================ */
.steps-section {
  position: relative;
  z-index: 10;
}

.steps-wave-top {
  position: absolute;
  top: -60px;
  left: -5%;
  right: -5%;
  z-index: 20;
  pointer-events: none;
  overflow: visible;
}

.steps-wave-top svg {
  width: 110%;
  height: 60px;
  display: block;
  overflow: visible;
}

.steps-inner {
  background: #001159;
  padding: 32px 0 32px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.step-item {
  position: relative;
  text-align: center;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e60f00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.25rem;
  font-weight: 700;
}

.step-line {
  display: none;
}

.step-item h3 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.steps-wave-bottom {
  position: absolute;
  bottom: -60px;
  left: -5%;
  right: -5%;
  z-index: 20;
  pointer-events: none;
  overflow: visible;
}

.steps-wave-bottom svg {
  width: 110%;
  height: 60px;
  display: block;
  overflow: visible;
}

/* ============================================
   8. REVIEWS
   ============================================ */
.reviews {
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  padding: 24px;
}

.review-text {
  color: #001159;
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: #001159;
}

.review-author-role {
  font-size: 12px;
  color: #6b7280;
}

/* ============================================
   9. FAQ
   ============================================ */
.faq {
  padding: 80px 0;
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.faq-left h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #001159;
  line-height: 1.3;
  margin-bottom: 16px;
}

.faq-left p {
  color: #6b7280;
  margin-bottom: 24px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 0 20px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  text-align: left;
  font-weight: 500;
  font-size: 1rem;
  color: #001159;
  line-height: 1.5;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #6b7280;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: #6b7280;
  line-height: 1.7;
  font-size: 0.9375rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================
   10. LEAD FORM
   ============================================ */
.lead-form-section {
  padding: 80px 0;
  overflow: hidden;
}

.lead-form-layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.form-decor {
  display: none;
  flex-shrink: 0;
  width: 288px;
}

.form-decor .decor-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 4px solid #fff;
}

.form-decor-left .decor-wrap {
  transform: rotate(-6deg);
}

.form-decor-right .decor-wrap {
  transform: rotate(6deg);
}

.form-decor img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.form-card {
  width: 100%;
  max-width: 512px;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  padding: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #001159;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #001159;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #001159;
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-submit {
  width: 100%;
  background: #e60f00;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 12px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 12px;
}

.form-submit:hover {
  background: #cc0d00;
}

.form-note {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

/* ============================================
   11. FOOTER
   ============================================ */
.footer {
  background: #001159;
  color: #fff;
  padding: 48px 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
}

.footer-logo-text {
  color: #e60f00;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer h4 {
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-contacts {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contacts a {
  transition: color 0.2s;
}

.footer-contacts a:hover {
  color: #fff;
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, background 0.2s;
}

.footer-social-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.2);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  padding-top: 32px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes wave-drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
  100% { transform: translateX(0); }
}

@keyframes wave-drift-reverse {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0); }
}

.animate-wave-1 { animation: wave-drift 7s ease-in-out infinite; }
.animate-wave-2 { animation: wave-drift-reverse 9s ease-in-out infinite; }
.animate-wave-3 { animation: wave-drift 11s ease-in-out infinite; }

@keyframes flag-sway {
  0%, 100% { transform: rotate(25deg) translateX(0); }
  50% { transform: rotate(28deg) translateX(5px); }
}

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .hero-desktop {
    display: block;
    position: relative;
  }

  .hero-mobile {
    display: none;
  }

  .header-right {
    display: flex;
  }

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

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

  .wave-bottom svg {
    height: 80px;
  }

  .steps-wave-top {
    top: -80px;
  }

  .steps-wave-top svg {
    height: 80px;
  }

  .steps-wave-bottom {
    bottom: -80px;
  }

  .steps-wave-bottom svg {
    height: 80px;
  }

  .steps-inner {
    padding: 40px 0;
  }

  .benefit-card {
    width: calc(50% - 12px);
  }

  .benefits-bottom-grid .benefit-card {
    width: calc(50% - 12px);
  }

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

  .pricing-content.active {
    grid-template-columns: repeat(3, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .form-decor {
    display: block;
  }

  .form-submit {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .requirements h2 {
    font-size: 3rem;
  }

  .form-card {
    padding: 32px;
  }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

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

  .benefit-card {
    width: calc(33.333% - 16px);
  }

  .benefits-bottom-grid {
    justify-content: flex-end;
  }

  .benefits-bottom-grid .benefit-card {
    width: calc(33.333% - 16px);
  }

  .flag-pole {
    display: block;
    left: calc(-50vw + 50% - 180px);
  }

  .requirements-grid {
    grid-template-columns: 3fr 2fr;
  }

  .requirements-image {
    display: block;
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .step-line {
    display: block;
    position: absolute;
    top: 28px;
    left: calc(50% + 2rem);
    width: calc(100% - 4rem);
    height: 2px;
    background: rgba(255,255,255,0.2);
  }

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

  .faq-left {
    position: sticky;
    top: 96px;
  }

  .faq-question {
    font-size: 1.125rem;
  }

  .form-decor {
    width: 384px;
  }

  .lead-form-layout {
    gap: 96px;
  }
}
