:root {
  --gn-bg: #f4f4f0;
  --gn-surface: #ffffff;
  --gn-ink: #0f172a;
  --gn-muted: #6b7280;
  --gn-accent: #f97316;
  --gn-deep: #111827;
  --gn-teal: #0f766e;
  --gn-line: #e5e7eb;
  --gn-radius-lg: 22px;
  --gn-radius-md: 18px;
  --gn-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
  --gn-shadow-subtle: 0 10px 28px rgba(15, 23, 42, 0.14);
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--gn-ink);
  background: radial-gradient(circle at top left, #fef3c7 0, #f4f4f0 40%, #e0f2fe 100%);
  line-height: 1.6;
}

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

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

a:hover {
  text-decoration: none;
}

button {
  font-family: inherit;
}

.gn-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gn-section {
  padding: 4.5rem 0;
}

/* HEADER */

.gn-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 252, 249, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(209, 213, 219, 0.7);
}

.gn-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.gn-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gn-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #0f766e, #f97316, #eab308, #0f766e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 1.05rem;
}

.gn-logo-text {
  display: flex;
  flex-direction: column;
}

.gn-logo-name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.gn-logo-tagline {
  font-size: 0.95rem;
  color: var(--gn-muted);
}

.gn-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.gn-nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0 1.6rem 0 0;
  padding: 0;
}

.gn-nav-links a {
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 0.1rem;
  border-bottom: 2px solid transparent;
}

.gn-nav-links a:hover {
  border-color: rgba(15, 118, 110, 0.7);
}

.gn-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #fdfdf9;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.gn-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

.primary-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  font-size: 0.95rem;
  font-weight: 600;
}

/* BUTTONS */

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    color 0.16s ease, border-color 0.16s ease;
}

.primary-button {
  background: linear-gradient(135deg, #0f766e, #f97316);
  color: #f9fafb;
  box-shadow: var(--gn-shadow-subtle);
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--gn-shadow-soft);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: var(--gn-ink);
}

.ghost-button:hover {
  background: #ffffff;
  border-color: #0f766e;
}

.full-width {
  width: 100%;
}

/* HERO */

.hero-section {
  padding-top: 4.8rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-text-block h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 1.1rem;
}

.hero-highlight {
  display: inline-block;
  background: linear-gradient(120deg, #0f766e, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  color: var(--gn-muted);
  margin: 0 0 1rem;
}

.hero-label i {
  color: var(--gn-teal);
}

.hero-intro {
  margin: 0 0 1.4rem;
  max-width: 560px;
  font-size: 1.03rem;
  color: var(--gn-muted);
}

.hero-pill-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.hero-pill {
  background: #111827;
  color: #f9fafb;
  border-radius: 1.2rem;
  padding: 0.9rem 1rem;
}

.hero-pill-title {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
}

.hero-pill-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.97rem;
  opacity: 0.9;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-bottom: 1.5rem;
}

.hero-metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.hero-metric {
  min-width: 120px;
}

.hero-metric-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-metric-label {
  font-size: 0.95rem;
  color: var(--gn-muted);
}

/* HERO BOARD (сейчас не используется, но можно оставить) */

.hero-board {
  background: #111827;
  color: #e5e7eb;
  border-radius: 32px;
  padding: 1.6rem 1.6rem 1.7rem;
  box-shadow: var(--gn-shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.2) 0, transparent 60%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.25) 0, transparent 65%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-board > * {
  position: relative;
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.board-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.board-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-size: 0.9rem;
}

.board-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.board-column {
  background: rgba(15, 23, 42, 0.82);
  border-radius: 1.2rem;
  padding: 0.85rem 0.9rem;
}

.board-column h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.board-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.board-column li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.93rem;
  color: #e5e7eb;
}

.board-column li + li {
  margin-top: 0.3rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.9);
}

.dot-green {
  background: #22c55e;
}

.dot-amber {
  background: #facc15;
}

.dot-red {
  background: #f97316;
}

.board-footer p {
  margin: 0;
  font-size: 0.95rem;
  color: #e5e7eb;
}

/* STORY (старый блок, можно не использовать) */

.story-section {
  background: #fdfcf7;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.story-copy h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2rem;
  margin: 0 0 0.8rem;
}

.story-copy p {
  margin: 0;
  font-size: 1.03rem;
  color: var(--gn-muted);
}

.story-points {
  display: grid;
  gap: 1.1rem;
}

.story-card {
  background: #ffffff;
  border-radius: var(--gn-radius-md);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.18);
}

.story-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.story-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--gn-muted);
}

/* SECTION HEADINGS */

.section-heading {
  max-width: 680px;
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2rem;
  margin: 0 0 0.6rem;
}

.section-heading p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--gn-muted);
}

.section-heading-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* CONTACT */

.contact-section {
  background: #111827;
  color: #e5e7eb;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-copy h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2rem;
  margin: 0 0 0.7rem;
}

.contact-copy p {
  margin: 0 0 1rem;
  font-size: 1.03rem;
}

.contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.contact-details i {
  margin-top: 0.15rem;
  color: #f97316;
}

.contact-details a {
  color: #e5e7eb;
}

.contact-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #020617;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.9);
}

.contact-social a:hover {
  background: #f97316;
  border-color: #f97316;
}

.contact-form-card {
  background: #020617;
  border-radius: var(--gn-radius-lg);
  padding: 1.7rem 1.6rem 1.8rem;
  box-shadow: var(--gn-shadow-soft);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

/* FORM */

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 999px;
  border: 1px solid #4b5563;
  padding: 0.8rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  background: #020617;
  color: #e5e7eb;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease;
}

.form-field textarea {
  border-radius: var(--gn-radius-md);
  resize: vertical;
  min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6b7280;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.6);
  background: #020617;
}

.form-footer {
  margin-top: 0.4rem;
}

.form-note {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  color: #9ca3af;
}

.form-success {
  display: none;
  margin: 0.8rem 0 0;
  font-size: 0.98rem;
  color: #4ade80;
  font-weight: 600;
}

/* FOOTER */

.gn-footer {
  background: #020617;
  color: #e5e7eb;
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
  padding-bottom: 2.1rem;
}

.footer-body {
  max-width: 420px;
  font-size: 0.98rem;
  color: #9ca3af;
  margin-top: 0.9rem;
}

.footer-column h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li + li {
  margin-top: 0.4rem;
}

.footer-column a {
  font-size: 0.96rem;
  color: #e5e7eb;
}

.footer-column a:hover {
  color: #f97316;
}

.footer-contact li {
  font-size: 0.96rem;
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.9rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: #9ca3af;
}

/* HERO MEDIA WITH IMAGE */

.hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-main-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--gn-shadow-soft);
  background: #111827;
}

.hero-main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-stats-card {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  max-width: 260px;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(252, 252, 249, 0.98);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3);
}

.hero-stats-title {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-stats-text {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  color: var(--gn-muted);
}

.hero-stats-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.hero-stats-tags span {
  font-size: 0.86rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: #0f766e;
}

/* WHO WE HELP */

.audience-section {
  background: #fdfcf7;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.audience-card {
  background: #ffffff;
  border-radius: var(--gn-radius-lg);
  padding: 1.3rem 1.3rem 1.4rem;
  border: 1px solid rgba(209, 213, 219, 0.95);
  box-shadow: 0 14px 28px rgba(148, 163, 184, 0.18);
}

.audience-image {
  border-radius: var(--gn-radius-md);
  overflow: hidden;
  margin-bottom: 0.8rem;
  background: #e5e7eb;
}

.audience-image img {
  width: 100%;
  height: 170px;
  display: block;
  object-fit: cover;
}

.audience-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.audience-card p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--gn-muted);
}

/* INSIDE THE ACADEMY */

.media-section {
  background: #f9fafb;
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.4rem;
  align-items: center;
}

.media-illustration {
  border-radius: var(--gn-radius-lg);
  overflow: hidden;
  box-shadow: var(--gn-shadow-soft);
  background: #111827;
}

.media-illustration img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.media-copy h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2rem;
  margin: 0 0 0.7rem;
}

.media-copy p {
  margin: 0 0 1rem;
  font-size: 1.03rem;
  color: var(--gn-muted);
}

.media-list {
  margin: 0 0 1rem;
  padding-left: 0;
  list-style: none;
}

.media-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 1.02rem;
  color: var(--gn-muted);
}

.media-list li + li {
  margin-top: 0.45rem;
}

.media-list i {
  font-size: 0.55rem;
  margin-top: 0.5rem;
  color: #0f766e;
}

.media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.media-tag {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  color: #f97316;
  font-size: 0.92rem;
}

/* PRACTICE SECTION */

.practice-section {
  background: #ffffff;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.practice-card {
  background: #fefbf5;
  border-radius: var(--gn-radius-lg);
  padding: 1.2rem 1.3rem 1.3rem;
  border: 1px dashed rgba(209, 213, 219, 0.9);
}

.practice-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.practice-card p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--gn-muted);
}

/* RHYTHM SECTION */

.rhythm-section {
  background: #ecfdf5;
}

.rhythm-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.rhythm-item {
  background: #ffffff;
  border-radius: var(--gn-radius-lg);
  padding: 1.2rem 1.2rem 1.3rem;
  border: 1px solid rgba(209, 213, 219, 0.95);
  position: relative;
}

.rhythm-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 3px solid #ecfdf5;
  background: #0f766e;
  position: absolute;
  top: -7px;
  left: 1.2rem;
}

.rhythm-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.rhythm-item p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--gn-muted);
}

/* RESULTS BAND */

.numbers-band {
  background: #111827;
  color: #e5e7eb;
  padding: 3.2rem 0;
}

.numbers-band-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.numbers-band-copy h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2rem;
  margin: 0 0 0.7rem;
}

.numbers-band-copy p {
  margin: 0;
  font-size: 1.02rem;
  color: #d1d5db;
}

.numbers-band-metrics {
  display: grid;
  gap: 1rem;
  min-width: 260px;
}

.numbers-band-metric {
  background: #020617;
  border-radius: var(--gn-radius-md);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.numbers-band-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.numbers-band-label {
  font-size: 0.98rem;
  color: #9ca3af;
}

/* STORIES WITH AVATARS */

.stories-section {
  background: #fefbf5;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.story-quote-card {
  background: #ffffff;
  border-radius: var(--gn-radius-lg);
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 16px 32px rgba(148, 163, 184, 0.22);
}

.story-quote-card p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--gn-ink);
}

.story-person {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.story-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: #e5e7eb;
}

.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-name {
  font-weight: 600;
  font-size: 0.98rem;
}

.story-role {
  font-size: 0.92rem;
  color: var(--gn-muted);
}

/* CONTACT MAP THUMB */

.contact-map-thumb {
  margin-top: 1rem;
  max-width: 320px;
  border-radius: var(--gn-radius-md);
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.contact-map-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* FAQ */

.faq-section {
  background: #f9fafb;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item + .faq-item {
  margin-top: 0.9rem;
}

.faq-question {
  width: 100%;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.95);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-question i {
  margin-left: 0.6rem;
  font-size: 0.95rem;
  transition: transform 0.18s ease;
}

.faq-answer {
  background: #ffffff;
  border-radius: 0 0 var(--gn-radius-md) var(--gn-radius-md);
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-top: none;
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease, padding 0.22s ease;
}

.faq-answer p {
  margin: 0.7rem 0 0.9rem;
  font-size: 1.02rem;
  color: var(--gn-muted);
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding-top: 0.1rem;
}

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

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero-layout,
  .story-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-board {
    margin-top: 1.5rem;
  }

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

  .gn-header-inner {
    padding-inline: 1rem;
  }

  .gn-nav-links {
    margin-right: 0;
  }

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

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

  .rhythm-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .gn-nav-toggle {
    display: inline-flex;
  }

  .gn-nav-links {
    position: absolute;
    top: 110%;
    right: 0.75rem;
    background: #ffffff;
    border-radius: 18px;
    flex-direction: column;
    padding: 0.7rem;
    min-width: 220px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 40;
  }

  .gn-nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .gn-nav-links li {
    padding: 0.25rem 0.2rem;
  }

  .gn-nav-links a {
    display: block;
    padding: 0.3rem 0.2rem;
  }

  .gn-nav-cta {
    display: none;
  }

  .hero-section {
    padding-top: 4.1rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media {
    order: -1;
    margin-bottom: 1.4rem;
  }

  .hero-stats-card {
    position: static;
    margin-top: 0.8rem;
  }

  .media-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .audience-grid,
  .practice-grid,
  .rhythm-timeline,
  .stories-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .numbers-band-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-text-block h1 {
    font-size: 2.2rem;
  }

  .gn-section {
    padding: 3.8rem 0;
  }
}
/* COOKIE BANNER */

.cookie-layer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-card {
  max-width: 560px;
  width: 100%;
  background: #fdfcf7;
  border-radius: 24px;
  padding: 1.7rem 1.8rem 1.6rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(209, 213, 219, 0.95);
}

.cookie-card h2 {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.3rem;
}

.cookie-text {
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
  color: var(--gn-muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-secondary {
  background: #ffffff;
}

.cookie-secondary:hover {
  background: #f9fafb;
}

.cookie-link {
  font-size: 0.97rem;
  font-weight: 500;
  color: #0f766e;
}

.cookie-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-card {
    padding: 1.5rem 1.3rem 1.4rem;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-link {
    text-align: center;
  }
}
/* ABOUT PAGE – LAYOUTS AND NEW BLOCKS */

.about-story-section {
  background: #f8fafc;
}

.about-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.about-two-column h2,
.about-two-column h3 {
  margin-bottom: 0.75rem;
}

.about-two-column p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Principles section reusing practice cards */

.principles-section .practice-grid {
  margin-top: 2rem;
}

.principles-section .practice-card {
  min-height: 210px;
}

/* Team section */

.team-section {
  background: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.team-card {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 1.5rem;
  padding: 1.75rem 1.75rem 2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.team-photo {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 2px solid rgba(248, 250, 252, 0.5);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5f5;
  margin-bottom: 0.85rem;
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e5e7eb;
}

/* Cohort section */

.cohort-section {
  background: #020617;
}

.cohort-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

.cohort-layout h2 {
  margin-bottom: 0.75rem;
}

.cohort-layout p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.cohort-card {
  background: #0b1120;
  border-radius: 1.5rem;
  padding: 1.8rem 1.9rem 2.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.6);
}

.cohort-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.cohort-card p {
  margin-bottom: 1.25rem;
  color: #e5e7eb;
}

.full-width {
  width: 100%;
  text-align: center;
}

/* RESPONSIVE ADJUSTMENTS */

@media (max-width: 992px) {
  .about-two-column {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
  }

  .cohort-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

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

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-card {
    padding: 1.5rem 1.4rem 1.8rem;
  }

  .cohort-card {
    padding: 1.6rem 1.4rem 1.9rem;
  }
}

/* PROGRAM PAGE – LIGHTER PALETTE */

/* Program snapshot – светлая секция */
.program-snapshot-section {
  background: #f8fafc;
}

.program-snapshot-section .section-heading-center p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.program-snapshot-section .practice-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  padding: 1.5rem 1.6rem 1.7rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

/* Modules – белый фон, мягкие карточки */
.modules-section {
  background: #ffffff;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.module-card {
  background: linear-gradient(135deg, #f9fafb 0%, #eef2ff 100%);
  border-radius: 1.5rem;
  padding: 1.75rem 1.8rem 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.module-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.module-card p {
  margin-bottom: 0.9rem;
  line-height: 1.7;
}

.modules-section .media-list {
  margin-top: 0.25rem;
}

/* Formats & time – светло-серый фон */
.formats-section {
  background: #f1f5f9;
}

.formats-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

.formats-layout h2 {
  margin-bottom: 0.75rem;
}

.formats-layout p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.formats-section .practice-grid.small-grid {
  margin-top: 1.5rem;
  gap: 1.5rem;
}

.formats-section .practice-grid.small-grid .practice-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  padding: 1.35rem 1.5rem 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* Cohort types – опять белый фон */
.cohort-types-section {
  background: #ffffff;
}

.cohort-types-section .practice-grid {
  margin-top: 2rem;
}

.cohort-types-section .practice-card {
  background: #f8fafc;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  min-height: 210px;
}

/* Next step – мягкий светлый блок + тёмная карточка-акцент */
.next-step-section {
  background: #f8fafc;
}

.next-step-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

.next-step-layout h2 {
  margin-bottom: 0.75rem;
}

.next-step-layout p {
  margin-bottom: 0.9rem;
  line-height: 1.7;
}

/* .cohort-card уже есть в стилях – здесь только адаптация под светлый фон */
.next-step-section .cohort-card {
  margin-top: 0.25rem;
}

/* RESPONSIVE – Program page */
@media (max-width: 992px) {
  .modules-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .formats-layout,
  .next-step-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .module-card {
    padding: 1.5rem 1.4rem 1.8rem;
  }

  .formats-section .practice-grid.small-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

