/* ============================================
   SEABRUSH — Онлайн-курс акварели морских животных
   ============================================ */

:root {
  --sea: #2B7A78;
  --sea-light: #3AAFA9;
  --sea-dark: #17505E;
  --deep: #1E3A4C;
  --sand: #F4EDD8;
  --sand-light: #FBF7EE;
  --coral: #D97B5E;
  --coral-light: #F0A080;
  --cream: #FDFAF5;
  --text: #2C3440;
  --text-muted: #6E7F8F;
  --text-light: #A8B5BF;
  --border: #DDE4E8;
  --white: #ffffff;

  --font-serif: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(30, 58, 76, 0.10);
  --shadow-lg: 0 10px 40px rgba(30, 58, 76, 0.16);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--sea); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sea-dark); }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ============================
   TYPOGRAPHY
   ============================ */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--deep);
  line-height: 1.25;
  font-weight: normal;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================
   LAYOUT UTILITIES
   ============================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--sand { background: var(--sand); }
.section--sand-light { background: var(--sand-light); }
.section--deep { background: var(--deep); }
.section--sea { background: var(--sea-dark); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.section__header h2 { margin-bottom: 16px; }
.section__header .lead { margin-top: 0; }

/* ============================
   BUTTONS
   ============================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
  line-height: 1.3;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--primary:hover {
  background: #c06a50;
  border-color: #c06a50;
  color: var(--white);
}

.btn--sea {
  background: var(--sea);
  color: var(--white);
  border-color: var(--sea);
}
.btn--sea:hover {
  background: var(--sea-dark);
  border-color: var(--sea-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1.08rem;
}

/* ============================
   HEADER / NAV
   ============================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221, 228, 232, 0.6);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo__text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--deep);
  letter-spacing: 0.02em;
}

.logo__text span { color: var(--sea); }

nav { display: flex; align-items: center; gap: 32px; }

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
nav a:hover { color: var(--deep); }

.header__cta { white-space: nowrap; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--deep);
}
.mobile-nav .btn { font-size: 1rem; margin-top: 8px; }
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--deep);
  line-height: 1;
}

/* ============================
   HERO
   ============================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 76, 0.82) 0%,
    rgba(43, 122, 120, 0.55) 60%,
    rgba(30, 58, 76, 0.40) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 680px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.hero__label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--coral-light);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero h1 em {
  font-style: normal;
  color: var(--coral-light);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__stat { text-align: left; }
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================
   PAIN SECTION
   ============================ */

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

.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pain-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.pain-card__icon {
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pain-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--deep);
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================
   OUTCOME SECTION
   ============================ */

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

.outcome__image {
  position: relative;
}

.outcome__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.outcome__image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--sea-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.outcome__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.outcome__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  color: var(--text);
}

.outcome__list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--sea);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  margin-top: 1px;
}

/* ============================
   FORMAT SECTION
   ============================ */

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.format-item {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}

.format-item__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.format-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--deep);
  margin-bottom: 8px;
}

.format-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================
   MODULES SECTION
   ============================ */

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.module-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition);
}
.module-card:hover { background: rgba(255,255,255,0.12); }

.module-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 12px;
}

.module-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.module-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ============================
   GALLERY SECTION
   ============================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(30,58,76,0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.82rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }

/* ============================
   INSTRUCTOR SECTION
   ============================ */

.instructor {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}

.instructor__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.instructor__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.instructor__photo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80%;
  height: 80%;
  border: 2px solid var(--sand);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.instructor__name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--deep);
  margin-bottom: 4px;
}

.instructor__title {
  font-size: 0.9rem;
  color: var(--sea);
  font-weight: 600;
  margin-bottom: 24px;
}

.instructor__bio { font-size: 0.97rem; color: var(--text-muted); }

.instructor__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  display: inline-block;
  background: var(--sand);
  color: var(--deep);
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 500;
}

/* ============================
   FAQ SECTION
   ============================ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--deep);
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--sand-light); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--sea);
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin: 0;
}

/* ============================
   LEAD FORM SECTION
   ============================ */

.form-section {
  text-align: center;
}

.form-section h2 { color: var(--white); }
.form-section .lead { color: rgba(255,255,255,0.72); }
.form-section .section__label { color: var(--coral-light); }

.lead-form {
  max-width: 460px;
  margin: 40px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 36px;
}

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

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.38); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--sea-light);
  background: rgba(255,255,255,0.12);
}
.form-group select {
  -webkit-appearance: none;
  cursor: pointer;
}
.form-group select option { color: var(--text); background: var(--white); }

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
}

.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  line-height: 1.5;
}

/* ============================
   SUPPLIES IMAGE SECTION
   ============================ */

.supplies-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.supplies-block__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.supplies-block__text .section__label { text-align: left; }
.supplies-block__text h2 { margin-bottom: 16px; }

.supplies-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.supplies-list li {
  font-size: 0.93rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.supplies-list li::before {
  content: '∼';
  color: var(--sea);
  font-size: 1.2rem;
}

/* ============================
   REASSURANCE SECTION
   ============================ */

.reassurance {
  text-align: center;
}

.reassurance-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.reassurance-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
}

.reassurance-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.reassurance-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 8px;
}

.reassurance-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================
   FOOTER
   ============================ */

.footer {
  background: var(--deep);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.footer__brand .logo__text { color: rgba(255,255,255,0.9); }
.footer__brand .logo__text span { color: var(--sea-light); }

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  max-width: 240px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer__links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================
   COOKIE BANNER
   ============================ */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--deep);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.cookie-banner p a {
  color: var(--sea-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.cookie-btn:hover { opacity: 0.88; }

.cookie-btn--accept {
  background: var(--sea);
  color: var(--white);
}

.cookie-btn--decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}

/* ============================
   LEGAL PAGES
   ============================ */

.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-page .container { max-width: 760px; }

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--deep);
  margin-bottom: 8px;
}

.legal-page .date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  display: block;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
  color: var(--deep);
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page ul, .legal-page ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-page li { margin-bottom: 6px; }

.legal-page .legal-company {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

/* ============================
   SUCCESS PAGE
   ============================ */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--sand-light);
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
}

.success-card__icon {
  width: 72px;
  height: 72px;
  background: var(--sea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.success-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 900px) {
  .outcome { grid-template-columns: 1fr; gap: 40px; }
  .outcome__image { max-width: 420px; margin: 0 auto; }
  .instructor { grid-template-columns: 1fr; gap: 32px; }
  .instructor__photo { max-width: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reassurance-cards { grid-template-columns: repeat(2, 1fr); }
  .supplies-block { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__links { align-items: flex-start; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section__header { margin-bottom: 40px; }

  nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }

  .hero__content { padding: 100px 0 60px; }
  .hero__stats { gap: 24px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .reassurance-cards { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; gap: 12px; }
  .footer__legal { flex-wrap: wrap; }

  .lead-form { padding: 24px 20px; }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .success-card { padding: 40px 24px; }
}
