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

:root {
  --blue: #0d5ea8;
  --blue-dark: #123b63;
  --blue-light: #eaf3fc;
  --wave1: #1e73be;
  --wave2: #0d5ea8;
  --wave3: #dcecff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #f5f9fd 0%, #ffffff 65%);
  color: var(--blue-dark);
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 170px;
  position: relative;
  overflow: hidden;
}

.language-switcher {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.language-switcher a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 700;
  background: white;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #dbe8f5;
  box-shadow: 0 8px 20px rgba(13, 94, 168, 0.08);
  transition: 0.2s;
}

.language-switcher a:hover {
  background: var(--blue);
  color: white;
}

.sun-container {
  position: absolute;
  top: 35px;
  right: 6%;
  width: 320px;
  height: 320px;
  z-index: 1;
}

.sun {
  position: absolute;
  width: 190px;
  height: 190px;
  left: 65px;
  top: 65px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff2b5 0%, #ffd76b 45%, #ffc93c 100%);
  box-shadow:
    0 0 40px rgba(255, 215, 107, .6),
    0 0 80px rgba(255, 215, 107, .5),
    0 0 140px rgba(255, 215, 107, .4),
    0 0 220px rgba(255, 215, 107, .3);
  animation: sunPulse 7s ease-in-out infinite;
}

.sun-rays {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    rgba(255, 215, 107, .42) 0deg,
    rgba(255, 215, 107, .42) 5deg,
    transparent 5deg,
    transparent 18deg
  );
  border-radius: 50%;
  filter: blur(4px);
  animation: rotateSun 60s linear infinite;
}

.card {
  max-width: 1040px;
  width: 100%;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 60px;
  text-align: center;
  position: relative;
  z-index: 3;
  border: 1px solid #e1edf8;
  box-shadow: 0 25px 70px rgba(13, 94, 168, .14);
}

.logo {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 30px;
}

h1 {
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--blue-dark);
}

.subtitle {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.8;
  color: #5a7483;
}

.trust {
  margin: 20px 0 30px;
  font-size: 15px;
  font-weight: 700;
  color: #5a7483;
}

.price {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 18px;
  background: white;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 25px;
}

.services-title {
  margin-top: 10px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #5a7483;
}

.services,
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.service,
.review {
  background: white;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #dbe8f5;
  box-shadow: 0 10px 25px rgba(13, 94, 168, .06);
  transition: 0.25s;
}

.service:hover,
.review:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 18px 40px rgba(13, 94, 168, .12);
}

.icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.service h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.service p,
.review p {
  font-size: 14px;
  line-height: 1.6;
  color: #5f7886;
}

.reviews-section {
  margin-top: 44px;
}

.review {
  text-align: left;
}

.stars {
  color: #ffd76b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review p {
  margin-bottom: 14px;
}

.review strong {
  color: var(--blue-dark);
  font-size: 14px;
}

.contact {
  margin-top: 40px;
  font-size: 17px;
  color: #5a7483;
}

.contact a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.footer {
  margin-top: 20px;
  color: #8aa0aa;
  font-size: 14px;
}

.waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 260px;
  overflow: hidden;
  z-index: 1;
}

.wave-track {
  position: absolute;
  width: 2880px;
  height: 260px;
  display: flex;
}

.wave-track svg {
  width: 1440px;
  height: 260px;
  flex-shrink: 0;
}

.wave-one {
  animation: waveMove 18s linear infinite;
}

.wave-two {
  opacity: .72;
  animation: waveMove 28s linear infinite reverse;
}

.wave-three {
  opacity: .45;
  animation: waveMove 36s linear infinite;
}

.wave-one path {
  fill: var(--wave1);
}

.wave-two path {
  fill: var(--wave2);
}

.wave-three path {
  fill: var(--wave3);
}

@keyframes waveMove {
  from { transform: translateX(0); }
  to { transform: translateX(-1440px); }
}

@keyframes rotateSun {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 18px 150px;
  }

  .card {
    padding: 38px 24px;
  }

  .language-switcher {
    top: 18px;
    right: 18px;
    left: 18px;
    justify-content: center;
  }

  .logo {
    font-size: 32px;
  }

  h1 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 16px;
  }

  .trust {
    font-size: 14px;
    line-height: 1.7;
  }

  .price {
    font-size: 18px;
  }

  .sun-container {
    width: 200px;
    height: 200px;
    top: 45px;
    right: -50px;
  }

  .sun {
    width: 120px;
    height: 120px;
    left: 40px;
    top: 40px;
  }
}