/* ============================================
   Fun Eng — Design System & Global Styles
   Watercolor / Summer Camp Theme
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Caveat:wght@500;700&display=swap');

/* --- CSS Variables --- */
:root {
  --text-primary: #1A365D;
  --text-secondary: #4A5568;
  --text-muted: #718096;

  --bg-page: #F0F8FF;
  --bg-accent: #A1D844;
  --bg-white: #FFFFFF;
  --bg-footer: #1A365D;

  --accent-yellow: #FFC107;
  --accent-pink: #FF9AAB;
  --accent-green: #B4E197;
  --accent-purple: #C4A4D9;
  --accent-blue: #7DD3FC;

  --cta-primary: #A1D844;
  --cta-hover: #8CC63A;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 54, 93, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 54, 93, 0.12);

  --font-body: 'Nunito', sans-serif;
  --font-hand: 'Caveat', cursive;

  --container-max: 1200px;
  --container-narrow: 800px;
  --section-padding: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Wave Dividers --- */
.wave-divider {
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Section Base --- */
.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
}

.section--accent {
  background-color: var(--bg-accent);
}

.section--white {
  background-color: var(--bg-white);
}

/* --- Typography --- */
.section-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.2;
}

.handwritten {
  font-family: var(--font-hand);
  color: var(--accent-pink);
  font-size: 1.2em;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-logo {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-body);
  color: var(--text-primary);
}

.header-cta {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #A1D844 0%, #7AB82E 100%);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: var(--cta-hover);
}

.header-cta:active {
  transform: scale(0.92);
  filter: brightness(0.9);
  transition: transform 0.1s ease, filter 0.1s ease;
}

/* --- Hero Section --- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 15% 40%, rgba(196, 164, 217, 0.5) 0%, transparent 50%),
              radial-gradient(ellipse at 85% 15%, rgba(125, 211, 252, 0.6) 0%, transparent 45%),
              radial-gradient(ellipse at 60% 85%, rgba(255, 154, 171, 0.45) 0%, transparent 50%),
              radial-gradient(ellipse at 30% 70%, rgba(180, 225, 151, 0.35) 0%, transparent 45%),
              radial-gradient(ellipse at 90% 60%, rgba(255, 193, 7, 0.3) 0%, transparent 40%),
              var(--bg-page);
}

.hero__content {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.hero__lawn {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
}

.hero__lawn svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .hero__lawn svg {
    max-height: 25vh;
  }
}

.hero__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero__cta {
  display: inline-block;
  max-width: 300px;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, #A1D844 0%, #7AB82E 100%);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background-color: var(--cta-hover);
}

.hero__cta:active {
  transform: scale(0.95);
  filter: brightness(0.9);
  transition: transform 0.1s ease, filter 0.1s ease;
}

.hero__note {
  margin-top: 24px;
  font-family: var(--font-hand);
  font-size: 24px;
  color: #E57373;
}

/* --- Hero Announcement Banner --- */
.hero__announcement {
  position: absolute;
  top: 85px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%) rotate(-3deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #FFF3CD 0%, #FFE4E1 100%);
  border: 2px solid rgba(255, 193, 7, 0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero__announcement-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  text-align: center;
}

.hero__announcement-text {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.2;
  text-align: center;
}

/* --- About Section --- */
.about {
  position: relative;
  background: linear-gradient(to bottom,
    #A1D844 0%,
    #A1D844 40%,
    rgba(161, 216, 68, 0.6) 70%,
    rgba(161, 216, 68, 0) 100%
  );
  padding-top: 0;
  padding-bottom: 80px;
}

.about__wave-top {
  position: relative;
  z-index: 1;
  line-height: 0;
  background: #A1D844;
}

.about__wave-top svg {
  display: block;
  width: 100%;
  height: auto;
}

.about__daisy {
  position: absolute;
  pointer-events: none;
}

.about__daisy svg {
  display: block;
  width: 100%;
  height: auto;
}

.about__daisy--1 {
  left: 3%;
  bottom: 70%;
  width: clamp(22px, 5vw, 60px);
  color: #FF9AAB;
  transform: translateY(-1vh);
}

.about__daisy--2 {
  left: 12%;
  bottom: 15%;
  width: clamp(28px, 7vw, 80px);
  color: #C9B8E8;
  transform: translateY(2vh);
}

.about__daisy--3 {
  left: 22%;
  bottom: 85%;
  width: clamp(36px, 9vw, 100px);
  color: #8ECAE6;
  transform: translateY(-1.5vh);
}

.about__daisy--4 {
  left: 35%;
  bottom: 12%;
  width: clamp(20px, 4.5vw, 54px);
  color: #FFDDBB;
  transform: translateY(3.5vh);
}

.about__daisy--5 {
  left: 45%;
  bottom: 60%;
  width: clamp(24px, 5.5vw, 68px);
  color: #A8E6CF;
  transform: translateY(-0.5vh);
}

.about__daisy--6 {
  left: 55%;
  bottom: 22%;
  width: clamp(22px, 4vw, 60px);
  color: #FF9F9F;
  transform: translateY(1.5vh);
}

.about__daisy--7 {
  left: 63%;
  bottom: 65%;
  width: clamp(30px, 7.5vw, 88px);
  color: #D4A5E8;
  transform: translateY(-2vh);
}

.about__daisy--8 {
  left: 60%;
  bottom: 3%;
  width: clamp(22px, 5vw, 60px);
  color: #FFC8A2;
  transform: translateY(4vh);
}

.about__daisy--9 {
  left: 70%;
  bottom: 45%;
  width: clamp(26px, 6.5vw, 76px);
  color: #B5D8B7;
  transform: translateY(-0.8vh);
}

.about__daisy--10 {
  left: 89%;
  bottom: 12%;
  width: clamp(20px, 5vw, 58px);
  color: #B8D4E8;
  transform: translateY(2.5vh);
}

.about .container--narrow {
  margin-top: 120px;
  position: relative;
}

.about__card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about__text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about__list {
  text-align: left;
  margin-top: 20px;
  border-left: 2px dashed #CBD5E1;
  padding-left: 20px;
}

.about__list-item {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

.about__list-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-pill);
  background-color: var(--accent-green);
}

.about__list-item:nth-child(2)::before {
  background-color: var(--accent-yellow);
}

.about__list-item:nth-child(3)::before {
  background-color: var(--accent-pink);
}

.about__list-item:nth-child(4)::before {
  background-color: var(--accent-blue);
}

/* --- Programs Section --- */
.programs__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.program-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  transform: none;
  max-width: 100%;
  box-sizing: border-box;
}

.program-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.program-card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.program-card__tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.program-card:nth-child(6n+1) .program-card__tag {
  background-color: var(--accent-yellow);
  color: #7C5E10;
}

.program-card:nth-child(6n+2) .program-card__tag {
  background-color: var(--accent-pink);
  color: #8C3A5A;
}

.program-card:nth-child(6n+3) .program-card__tag {
  background-color: var(--accent-blue);
  color: #1A5276;
}

.program-card:nth-child(6n+4) .program-card__tag {
  background-color: var(--accent-purple);
  color: #5B2C6F;
}

.program-card:nth-child(6n+5) .program-card__tag {
  background-color: var(--accent-green);
  color: #2E5A1B;
}

.program-card:nth-child(6n+6) .program-card__tag {
  background-color: var(--accent-yellow);
  color: #7C5E10;
}

.program-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* --- Advantages Section --- */
.advantages__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.advantage-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  word-break: break-word;
  overflow-wrap: break-word;
}

.advantage-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.advantage-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}

.advantage-card:nth-child(6n+1) .advantage-card__icon {
  background-color: rgba(255, 193, 7, 0.2);
  color: #B8860B;
}

.advantage-card:nth-child(6n+2) .advantage-card__icon {
  background-color: rgba(255, 154, 171, 0.2);
  color: #C2185B;
}

.advantage-card:nth-child(6n+3) .advantage-card__icon {
  background-color: rgba(180, 225, 151, 0.2);
  color: #558B2F;
}

.advantage-card:nth-child(6n+4) .advantage-card__icon {
  background-color: rgba(196, 164, 217, 0.2);
  color: #7B1FA2;
}

.advantage-card:nth-child(6n+5) .advantage-card__icon {
  background-color: rgba(255, 193, 7, 0.2);
  color: #B8860B;
}

.advantage-card:nth-child(6n+6) .advantage-card__icon {
  background-color: rgba(255, 154, 171, 0.2);
  color: #C2185B;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* --- Formats Section --- */
.formats__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.format-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.format-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.format-card__header {
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.format-card:nth-child(1) .format-card__header {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.05));
}

.format-card:nth-child(2) .format-card__header {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), rgba(125, 211, 252, 0.05));
}

.format-card__body {
  padding: 24px;
}

.format-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.format-card__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.format-card__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.format-card__detail-label {
  color: var(--text-muted);
}

.format-card__detail-value {
  font-weight: 700;
  color: var(--text-primary);
  padding: 4px 12px;
  background-color: var(--bg-page);
  border-radius: var(--radius-pill);
}

/* --- Contact Section --- */
.contact {
  background: radial-gradient(ellipse at 80% 20%, rgba(125, 211, 252, 0.2) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(196, 164, 217, 0.15) 0%, transparent 50%),
              var(--bg-page);
}

.contact__info {
  text-align: center;
  margin-bottom: 32px;
}

.contact__phone,
.contact__email {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.contact__phone:hover,
.contact__email:hover {
  color: var(--accent-pink);
}

.contact__socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 12px;
}

.contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  font-size: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__social-link--vk {
  color: #0077FF;
}

.contact__social-link--telegram {
  color: #0088CC;
}

.contact__social-link--maps {
  color: #FC3F1D;
}

.contact__telegram {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.contact__telegram:hover {
  color: var(--accent-pink);
}

.contact__social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* --- Order Form --- */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.order-form__input {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  background-color: var(--bg-white);
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form__input::placeholder {
  color: var(--text-muted);
}

.order-form__input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.25);
}

.order-form__submit {
  width: 100%;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  background: linear-gradient(135deg, #A1D844 0%, #7AB82E 100%);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.order-form__submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #8CC63A 0%, #6B9B2A 100%);
}

.order-form__submit:active {
  transform: scale(0.95);
  filter: brightness(0.9);
  transition: transform 0.1s ease, filter 0.1s ease;
}

.order-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--bg-footer);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  font-size: 14px;
}

/* --- Sticky CTA (Mobile) --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(240, 248, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(125, 211, 252, 0.3);
  padding: 12px 16px;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100vw;
  overflow: hidden;
}

.sticky-cta__link {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-primary);
  background: linear-gradient(135deg, #A1D844 0%, #7AB82E 100%);
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.sticky-cta__link:hover {
  background: linear-gradient(135deg, #8CC63A 0%, #6B9B2A 100%);
}

.sticky-cta__link:active {
  transform: scale(0.95);
  filter: brightness(0.9);
  transition: transform 0.1s ease, filter 0.1s ease;
}

.sticky-cta--hidden {
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-0 { transition-delay: 0ms; }
.animate-on-scroll.delay-100 { transition-delay: 100ms; }
.animate-on-scroll.delay-200 { transition-delay: 200ms; }
.animate-on-scroll.delay-300 { transition-delay: 300ms; }
.animate-on-scroll.delay-400 { transition-delay: 400ms; }

/* ============================================
   Media Queries — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --section-padding: 100px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-title {
    font-size: 36px;
  }

.hero__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

  .hero__subtitle {
    font-size: 22px;
  }

  .hero__cta {
    max-width: 360px;
    padding: 16px 32px;
    font-size: 18px;
  }

  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-card:nth-child(1) { transform: rotate(-1.5deg); }
  .program-card:nth-child(2) { transform: rotate(0.8deg); }
  .program-card:nth-child(3) { transform: rotate(1.2deg); }

  .program-card:hover {
    transform: rotate(0deg) scale(1.03);
  }

  .format-card:nth-child(1) { transform: rotate(-1deg); }
  .format-card:nth-child(2) { transform: rotate(0.8deg); }

  .format-card:hover {
    transform: rotate(0deg) scale(1.03);
  }

  .about__card {
    padding: 40px;
  }

  .about__text {
    font-size: 20px;
  }

  .sticky-cta {
    display: none;
  }

  .hero__announcement {
    padding: 12px 20px;
  }

  .hero__announcement-title {
    font-size: 16px;
  }

  .hero__announcement-text {
    font-size: 12px;
  }
}

/* ============================================
   Media Queries — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --section-padding: 120px;
  }

  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .section-title {
    font-size: 42px;
  }

  .hero__title {
    font-size: 56px;
  }

  .hero__subtitle {
    font-size: 24px;
  }

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

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

  .program-card {
    padding: 32px;
  }

  .format-card__body {
    padding: 32px;
  }

  .order-form {
    max-width: 520px;
  }

  .order-form__input {
    padding: 16px 24px;
    font-size: 17px;
  }

  .order-form__submit {
    font-size: 20px;
    padding: 18px 36px;
  }

  .hero__announcement {
    top: 90px;
    padding: 14px 24px;
  }

  .hero__announcement-title {
    font-size: 18px;
  }

  .hero__announcement-text {
    font-size: 13px;
  }
}

/* ============================================
   Mobile Adjustments (< 768px)
   ============================================ */
@media (max-width: 767px) {
}

@media (max-width: 1280px) {
  .site-logo {
    font-size: 22px;
  }

  .hero {
    background: radial-gradient(ellipse at 15% 40%, rgba(196, 164, 217, 0.5) 0%, transparent 65%),
                radial-gradient(ellipse at 85% 15%, rgba(125, 211, 252, 0.5) 0%, transparent 60%),
                radial-gradient(ellipse at 60% 85%, rgba(255, 154, 171, 0.3) 0%, transparent 70%),
                radial-gradient(ellipse at 30% 70%, rgba(180, 225, 151, 0.3) 0%, transparent 65%),
                radial-gradient(ellipse at 90% 60%, rgba(255, 193, 7, 0.2) 0%, transparent 60%),
                var(--bg-page);
  }

  .hero__cta {
    padding: 12px 20px;
    font-size: 14px;
  }

  .about__wave-top svg {
    height: 60px;
  }

  .site-footer {
    padding: 20px 12px;
    font-size: 12px;
  }

  .hero__note {
    font-size: 18px;
    margin-top: 16px;
  }

  .program-card {
    padding: 20px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .program-card__title {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .program-card__desc {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}
