:root {
  --ice: #e0f7fa;
  --deep-ice: #00838f;
  --dark-ice: #004d54;
  --pink: #f48fb1;
  --hot-pink: #ec407a;
  --white: #ffffff;
  --text: #1e293b;
  --soft: #f0f4ff;
  --shadow: 0 8px 24px rgba(0, 77, 84, 0.12);
  --radius: 28px;
  --border-radius-lg: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Comic Neue', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--ice);
  background-image: radial-gradient(circle at 20% 10%, rgba(244, 143, 177, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 90%, rgba(0, 131, 143, 0.15) 0%, transparent 60%);
}

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

:focus-visible {
  outline: 3px solid var(--hot-pink);
  outline-offset: 4px;
  border-radius: 4px;
}

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

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo-icon {
  font-size: 42px;
  line-height: 1;
}

.logo-text {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--dark-ice);
}

.logo-text.small {
  font-size: 20px;
}

.tg-link {
  border: 2px solid var(--pink);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 700;
  color: var(--hot-pink);
  background: var(--white);
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(236, 64, 122, 0.15);
}

.tg-link:hover {
  background: var(--pink);
  color: white;
  border-color: var(--hot-pink);
}

/* Buttons */
.button {
  display: inline-block;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  text-align: center;
}

.button--pink {
  background: var(--hot-pink);
  color: white;
}

.button--pink:hover {
  background: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(236, 64, 122, 0.3);
}

.button--blue {
  background: var(--deep-ice);
  color: white;
}

.button--blue:hover {
  background: #004d54;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 131, 143, 0.3);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}

.hero-image {
  background: linear-gradient(135deg, #b3e5fc, #e1bee7);
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  mix-blend-mode: normal;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10%;
  background: rgba(224, 247, 250, 0.7);
  backdrop-filter: blur(4px);
}

.hero-badge {
  background: var(--pink);
  color: white;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dark-ice);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #004d54;
  margin-bottom: 32px;
  max-width: 500px;
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.eye {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hot-pink);
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--dark-ice);
  line-height: 1.2;
}

/* About classes */
.about-classes {
  padding: 100px 5%;
}

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

.class-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 40px 24px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(244, 143, 177, 0.3);
  transition: transform 0.2s;
  text-align: center;
}

.class-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
}

.class-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.class-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-ice);
  margin-bottom: 10px;
}

.class-card p {
  color: #2d3a4a;
  font-size: 15px;
  line-height: 1.6;
}

/* Schedule */
.schedule {
  padding: 80px 5%;
  background: rgba(0, 131, 143, 0.08);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.schedule-table {
  max-width: 680px;
  margin: 0 auto;
}

.schedule-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px dashed rgba(0, 77, 84, 0.25);
  font-size: 18px;
}

.schedule-row:last-of-type {
  border-bottom: none;
}

.day {
  font-weight: 700;
  width: 140px;
}

.time {
  font-weight: 600;
  color: var(--deep-ice);
  width: 120px;
}

.level {
  color: var(--hot-pink);
  font-weight: 600;
  text-align: right;
}

.schedule-note {
  font-size: 14px;
  color: #004d54;
  opacity: 0.7;
  margin-top: 8px;
}

/* Tariffs */
.tariffs {
  padding: 100px 5%;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.tariff-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(0, 131, 143, 0.25);
  text-align: center;
  transition: transform 0.2s;
  position: relative;
}

.tariff-card:hover {
  transform: translateY(-4px);
}

.tariff-popular {
  border-color: var(--hot-pink);
  background: linear-gradient(180deg, #fff5f8 0%, #ffffff 100%);
  transform: scale(1.02);
}

.popular-badge {
  background: var(--hot-pink);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.tariff-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-ice);
  margin-bottom: 12px;
}

.tariff-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--deep-ice);
  margin-bottom: 24px;
}

.tariff-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  padding-left: 8px;
}

.tariff-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f4ff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.tariff-card li::before {
  content: '🐾';
  font-size: 18px;
}

.tariff-card .button {
  width: 100%;
}

/* Reviews */
.reviews {
  padding: 80px 5%;
  background: rgba(244, 143, 177, 0.1);
  border-radius: var(--border-radius-lg);
}

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

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--pink);
  margin: 0;
}

.review-card blockquote {
  font-size: 17px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  color: #1e293b;
  quotes: "«" "»";
}

.review-card blockquote::before {
  content: open-quote;
  font-size: 32px;
  color: var(--pink);
  line-height: 1;
}

.review-card figcaption {
  font-weight: 700;
  color: var(--dark-ice);
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-farmer::before {
  content: '🧑‍🌾';
  margin-right: 6px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 5%;
  background: radial-gradient(circle at 30% 40%, rgba(244, 143, 177, 0.2), transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(0, 131, 143, 0.25), transparent 70%);
  border-radius: var(--border-radius-lg);
}

.cta h2 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  color: var(--dark-ice);
  margin-bottom: 24px;
}

.cta p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px;
  color: #004d54;
}

/* Footer */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 28px 5%;
  background: var(--dark-ice);
  color: white;
  font-size: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tg {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 45vw;
    max-height: 350px;
  }

  .hero-text {
    padding: 40px 6% 60px;
    align-items: center;
    text-align: center;
  }

  .hero-badge {
    align-self: center;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .button {
    width: 100%;
  }

  .site-header {
    padding: 12px 5%;
  }

  .logo-text {
    font-size: 18px;
  }

  .schedule-row {
    flex-direction: column;
    gap: 6px;
    padding: 14px 10px;
  }

  .day, .time, .level {
    width: auto;
    text-align: left;
  }

  .tariff-popular {
    transform: none;
  }

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