/* ===========================
   DesignGeni — style.css
   Chaos / Brutalist Style
   Yellow #FFE600 + Black
   Font: Oswald
   =========================== */

/* --- CSS Variables --- */
:root {
  --primary: #FFE600;
  --primary-hover: #E6CF00;
  --primary-dark: #CCB800;
  --primary-light: rgba(255, 230, 0, 0.15);
  --primary-glow: rgba(255, 230, 0, 0.4);
  --bg: #000000;
  --bg-card: #111111;
  --bg-elevated: #1A1A1A;
  --text: #FFFFFF;
  --text-light: #CCCCCC;
  --text-muted: #888888;
  --border: #333333;
  --border-accent: #FFE600;
  --shadow: 0 4px 20px rgba(255, 230, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(255, 230, 0, 0.15);
  --shadow-brutal: 6px 6px 0 var(--primary);
  --radius: 0px;
  --radius-sm: 0px;
  --transition: 0.2s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

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

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

body {
  font-family: 'Oswald', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.3rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-weight: 300;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--dark {
  background: var(--bg-elevated);
}

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

.section__title {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 16px auto 0;
}

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

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  font-weight: 300;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 3px solid var(--primary);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.btn--primary {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: var(--shadow-brutal);
}

.btn--primary:hover {
  background: #000;
  color: var(--primary);
  transform: translate(3px, 3px);
  box-shadow: none;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 3px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: #000;
  box-shadow: var(--shadow-brutal);
  transform: translate(-3px, -3px);
}

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

.btn--block {
  width: 100%;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--primary);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(255, 230, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header__logo span {
  color: var(--primary);
  display: inline-block;
  transform: skewX(-5deg);
}

.header__nav {
  display: none;
}

.header__nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  background: var(--bg);
  padding: 24px;
  gap: 4px;
  
  border-top: 3px solid var(--primary);
}

.header__nav a {
  color: var(--text);
  font-weight: 500;
  padding: 14px 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--primary);
  background: var(--primary-light);
  border-left-color: var(--primary);
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  transition: all var(--transition);
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  margin-top: var(--header-height);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.breadcrumbs__item a {
  color: var(--text-muted);
}

.breadcrumbs__item a:hover {
  color: var(--primary);
}

.breadcrumbs__separator {
  color: var(--primary);
  font-size: 0.75rem;
}

/* --- Hero --- */
.hero {
  margin-top: var(--header-height);
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--primary);
}

.hero::before {
  content: 'DESIGN';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 12rem;
  font-weight: 700;
  color: rgba(255, 230, 0, 0.04);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.hero__content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: var(--primary);
  color: #000;
  padding: 6px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: skewX(-5deg);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--primary);
  display: inline;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: var(--text-light);
  font-weight: 300;
  max-width: 540px;
}

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

/* --- Advantages Grid --- */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.advantage-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}

.advantage-card:hover {
  border-color: var(--primary);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--primary);
}

.advantage-card:hover::before {
  transform: scaleY(1);
}

.advantage-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #000;
  font-size: 24px;
}

.advantage-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.advantage-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 300;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 28px 24px;
  position: relative;
}

.review-card::after {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
}

.review-card__stars {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  gap: 4px;
}

.review-card__text {
  font-style: normal;
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

.review-card__author {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.review-card__role {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--primary);
  color: #000;
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'GENI';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  letter-spacing: 0.3em;
  pointer-events: none;
}

.cta-section h2 {
  color: #000;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(0, 0, 0, 0.7);
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-section .btn--primary {
  background: #000;
  color: var(--primary);
  border-color: #000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.cta-section .btn--primary:hover {
  background: var(--primary);
  color: #000;
  border-color: #000;
  box-shadow: none;
  transform: translate(3px, 3px);
}

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-intro__image {
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 16/10;
  border: 3px solid var(--primary);
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
  border: 2px solid var(--border);
  background: var(--bg-card);
}

.stat-item__number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.stat-item__label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.team-card {
  text-align: center;
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 32px 24px;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-brutal);
  transform: translate(-3px, -3px);
}

.team-card__photo {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 3px solid var(--primary);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.team-card__role {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 300;
}

/* --- Courses Page --- */
.module-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.module-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  transition: all var(--transition);
}

.module-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-brutal);
  transform: translate(-2px, -2px);
}

.module-card__number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.module-card h3 {
  margin-bottom: 8px;
}

.module-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 300;
}

.module-card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.module-card__topic {
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 230, 0, 0.3);
}

.course-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.course-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 2px solid var(--border);
}

.course-info-item__icon {
  color: var(--primary);
  font-size: 28px;
  flex-shrink: 0;
}

.course-info-item strong {
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.course-info-item span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 300;
}

/* --- Pricing Page --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 3px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--primary);
}

.pricing-card--featured {
  border-color: var(--primary);
}

.pricing-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) skewX(-5deg);
  background: var(--primary);
  color: #000;
  padding: 5px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.pricing-card__price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0 4px;
  line-height: 1;
}

.pricing-card__currency {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__period {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li iconify-icon {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-card__features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-card__features li.disabled iconify-icon {
  color: var(--text-muted);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.payment-method iconify-icon {
  font-size: 24px;
  color: var(--primary);
}

/* --- FAQ Page --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 2px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--bg-card);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  font-size: 20px;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 0;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-form {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 32px 24px;
}

.contact-form h2 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #FF3333;
}

.form-group .error-msg {
  color: #FF3333;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
  font-weight: 400;
}

.form-group input.error + .error-msg,
.form-group textarea.error + .error-msg {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 12px;
}

.form-secure iconify-icon {
  color: var(--primary);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__item iconify-icon {
  color: var(--primary);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__item strong {
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.contact-info__item span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 300;
}

.contact-map {
  margin-top: 24px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  filter: grayscale(1) invert(1);
}

/* --- Legal Pages --- */
.legal-page {
  margin-top: var(--header-height);
  padding: 40px 0 60px;
}

.legal-page h1 {
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
}

.legal-page h3 {
  font-size: 1rem;
  margin: 24px 0 8px;
}

.legal-page p {
  margin-bottom: 12px;
  line-height: 1.7;
  font-weight: 300;
}

.legal-page ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.legal-page ul li {
  margin-bottom: 6px;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}

.legal-page ul li::before {
  content: '\25A0';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.6rem;
  top: 6px;
}

/* --- Thank You Page --- */
.thankyou {
  margin-top: var(--header-height);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.thankyou__icon {
  width: 90px;
  height: 90px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #000;
  font-size: 40px;
}

.thankyou h1 {
  margin-bottom: 12px;
}

.thankyou p {
  max-width: 480px;
  margin: 0 auto 32px;
  font-weight: 300;
}

/* --- 404 Page --- */
.page-404 {
  margin-top: var(--header-height);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.page-404__code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 6px 6px 0 rgba(255, 230, 0, 0.2);
}

.page-404 h1 {
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.page-404 p {
  max-width: 480px;
  margin: 0 auto 24px;
  font-weight: 300;
}

.page-404__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.page-404__links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 10px 20px;
  border: 2px solid var(--border);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.page-404__links a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--primary);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  color: #fff;
  padding: 16px 20px;
  z-index: 9999;
  display: none;
  border-top: 3px solid var(--primary);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cookie-banner__text {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 0;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__btn {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 10px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-banner__btn:hover {
  background: var(--primary-hover);
}

/* --- Footer --- */
.footer {
  background: var(--bg-card);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
  border-top: 4px solid var(--primary);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__logo span {
  color: var(--primary);
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin-bottom: 0;
}

.footer h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color var(--transition);
  font-weight: 300;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 300;
}

.footer__contact-item iconify-icon {
  color: var(--primary);
  font-size: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

.footer__bottom a {
  color: rgba(255,255,255,0.35);
}

.footer__bottom a:hover {
  color: var(--primary);
}

/* --- Honeypot --- */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* --- Page Top Spacing --- */
.page-content {
  padding-top: 20px;
}

/* --- Glitch / Chaos Decorative Elements --- */
.chaos-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px,
    var(--primary) 20px,
    transparent 20px,
    transparent 30px
  );
}

.chaos-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 40px 0;
}

/* ===========================
   Responsive Breakpoints
   =========================== */

/* Tablet: 768px+ */
@media (min-width: 768px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.2rem; }

  .container {
    padding: 0 32px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

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

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

  .about-intro {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .module-card {
    grid-template-columns: 52px 1fr;
    align-items: start;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    padding: 40px 32px;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .header__nav a {
    padding: 8px 14px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .header__nav a:hover,
  .header__nav a.active {
    background: transparent;
    border-left: none;
    border-bottom-color: var(--primary);
  }

  .header__burger {
    display: none;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

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

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

/* Large Desktop: 1280px+ */
@media (min-width: 1280px) {
  .container {
    padding: 0 40px;
  }

  .hero h1 {
    font-size: 4.2rem;
  }
}

/* Print */
@media print {
  .header, .footer, .cookie-banner {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}

/* === DesignGeni Team Section === */
.dgn-team-section { background: #1a1a1a; }
.dgn-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.dgn-team-card { background: #222; border-radius: 12px; padding: 2rem; text-align: center; border: 2px solid transparent; transition: border-color 0.3s; }
.dgn-team-card:hover { border-color: #FFE600; }
.dgn-team-card__avatar { width: 80px; height: 80px; border-radius: 50%; background: #FFE600; color: #000; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 1rem; }
.dgn-team-card h3 { color: #fff; margin-bottom: 0.25rem; }
.dgn-team-card__role { color: #FFE600; font-size: 0.9rem; margin-bottom: 0.75rem; }
.dgn-team-card p { color: #aaa; font-size: 0.9rem; }
@media (max-width: 768px) { .dgn-team-grid { grid-template-columns: 1fr; } }

/* === DesignGeni Gallery Section === */
.dgn-gallery-section { background: #111; }
.dgn-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 1rem; margin-top: 2rem; }
.dgn-gallery-item { position: relative; border-radius: 8px; overflow: hidden; }
.dgn-gallery-item--wide { grid-column: span 2; }
.dgn-gallery-item--tall { grid-row: span 2; }
.dgn-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.dgn-gallery-item__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.dgn-gallery-item:hover .dgn-gallery-item__overlay { opacity: 1; }
.dgn-gallery-item__overlay span { color: #FFE600; font-weight: 600; font-size: 1.1rem; }
@media (max-width: 768px) { .dgn-gallery-grid { grid-template-columns: 1fr; } .dgn-gallery-item--wide { grid-column: span 1; } .dgn-gallery-item--tall { grid-row: span 1; } }
