/* === NitkaArt Akademia Haftu — Main Stylesheet === */
/* dist/design/wild-code-899.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,400&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary:        #5C3B7A;
  --primary-alt:    #5B3A79;
  --primary-hover:  #4A2D65;
  --primary-deep:   #3A2150;
  --accent:         #C4608B;
  --accent-hover:   #A84E76;
  --text:           #0E0E0E;
  --bg:             #FAFAFA;
  --white:          #FFFFFF;
  --border:         #ECECEC;
  --border2:        #DDDDDD;
  --muted:          #B2B2B2;
  --overlay:        rgba(58, 33, 80, 0.88);
  --overlay-card:   rgba(74, 45, 101, 0.93);
  --font-head:      'Poppins', Helvetica, Arial, Lucida, sans-serif;
  --font-body:      'Open Sans', system-ui, sans-serif;
  --container:      1200px;
  --shadow:         0 4px 20px rgba(0,0,0,0.12);
  --transition:     300ms ease 0ms;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 14px; }
body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.9em;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
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 { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* === TYPOGRAPHY === */
h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 26px; }
h4 { font-size: 21px; }
h5 { font-size: 19px; }
h6 { font-size: 16px; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3em;
}

/* === CONTAINER === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--primary-alt);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-hover); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--primary-alt);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white i { transition: margin-left var(--transition); }
.btn-white:hover { background: #f0eaf5; color: var(--primary-hover); }
.btn-white:hover i { margin-left: 4px; }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-hover); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 16px 40px; font-size: 14px; }
.btn-sm { padding: 8px 20px; font-size: 12px; }

/* === HEADER === */
#site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 2px 14px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}
.site-logo { flex-shrink: 0; }
.site-logo svg { width: 170px; height: auto; transition: width var(--transition); }
#site-header.scrolled .site-logo svg { width: 140px; }

/* MAIN NAV */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-alt);
  padding: 10px 11px;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary-deep); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mobile-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary-alt);
  padding: 14px 20px;
  display: block;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--bg); color: var(--primary-deep); }
.mobile-nav.open { display: flex; }

/* === HERO === */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url('../visuals/hero-bg.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 80px 20px;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(40, 20, 60, 0.40);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.hero-card {
  background: var(--overlay-card);
  color: var(--white);
  padding: 13% 10%;
  max-width: 450px;
  width: 100%;
}
.hero-card h1 {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3em;
  margin-bottom: 18px;
}
.hero-card p {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.75em;
  margin-bottom: 28px;
}

/* === SECTIONS === */
.section { padding: 70px 0; }
.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--primary); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
.section-title::after {
  content: '';
  display: block;
  width: 46px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
}
.section-intro {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 46px;
  font-size: 15px;
  color: #555;
  line-height: 1.8em;
}

/* === BENEFITS TRIO === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.benefit-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.benefit-card-body { padding: 28px 22px; }
.benefit-card-body h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.benefit-card-body p { font-size: 14px; color: #555; line-height: 1.8em; margin-bottom: 18px; }

/* === COURSE CATEGORIES GRID === */
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.course-tile {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.course-tile:hover .course-tile-overlay { opacity: 1; }
.course-tile img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.course-tile:hover img { transform: scale(1.06); }
.course-tile-label {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-alt);
  padding: 10px 8px;
  background: var(--white);
  transition: color var(--transition), background var(--transition);
}
.course-tile:hover .course-tile-label { background: var(--primary); color: var(--white); }
.course-tile-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 38px;
  background: rgba(196, 96, 139, 0.65);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-tile-overlay i { color: var(--white); font-size: 26px; }

/* === PARALLAX CTA === */
.parallax-section {
  position: relative;
  min-height: 480px;
  background-image: url('../visuals/pattern-bg.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  border: 1px solid var(--bg);
}
.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(40, 20, 60, 0.60);
}
.parallax-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.parallax-card {
  background: var(--primary-deep);
  color: var(--white);
  padding: 50px 40px;
  max-width: 400px;
  width: 100%;
}
.parallax-card h2 { color: var(--white); font-size: 24px; margin-bottom: 14px; }
.parallax-card p { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.8em; margin-bottom: 24px; }

/* === CTA TILES TRIO === */
.cta-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cta-tile {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cta-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(58,33,80,0.70);
  transition: background var(--transition);
  z-index: 1;
}
.cta-tile:hover::before { background: rgba(58,33,80,0.45); }
.cta-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.cta-tile:hover img { transform: scale(1.06); }
.cta-tile-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}
.cta-tile-text h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.cta-tile-text p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin-bottom: 0;
}

/* === STATS === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item { padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pricing-card {
  border: 2px solid var(--border);
  padding: 36px 26px;
  text-align: center;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.pricing-card.featured { border-color: var(--accent); background: #fdf5f8; }
.pricing-card.featured::before {
  content: 'POLECANE';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
}
.pricing-icon { font-size: 34px; color: var(--accent); margin-bottom: 14px; }
.pricing-card h3 { font-size: 16px; color: var(--primary); margin-bottom: 6px; }
.pricing-price {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 16px; font-weight: 400; color: #777; }
.pricing-period { font-size: 12px; color: #999; margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 24px; text-align: left; }
.pricing-features li {
  font-size: 13px;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--accent); flex-shrink: 0; font-size: 11px; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 26px;
  position: relative;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 64px;
  color: var(--accent);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #F5A623; font-size: 12px; margin-bottom: 10px; }
.testimonial-text { font-size: 14px; line-height: 1.85em; color: #444; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8d8f0, #f5e0ea);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}
.testimonial-info strong { display: block; font-size: 14px; color: var(--primary); }
.testimonial-info span { font-size: 12px; color: #888; }

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: var(--white); font-size: 26px; }

/* === TEAM === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); }
.team-card-img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-card-body { padding: 22px 18px; }
.team-card-body h3 { font-size: 17px; margin-bottom: 4px; }
.team-card-body .role { font-size: 13px; color: var(--accent); margin-bottom: 10px; display: block; }
.team-card-body p { font-size: 13px; color: #555; line-height: 1.7em; }

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary-hover); }
.faq-question i { flex-shrink: 0; color: var(--accent); transition: transform var(--transition); }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 400ms ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 0 18px; font-size: 14px; color: #555; line-height: 1.85em; }

/* === CONTACT FORM === */
.contact-form { max-width: 700px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group label .req { color: var(--accent); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--primary-alt);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { height: 130px; resize: vertical; }

/* === FOOTER === */
#site-footer { background: var(--white); border-top: 1px solid var(--border2); }
.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 50px 20px 40px;
}
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.4;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: #555; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #555;
  line-height: 1.6em;
}
.footer-contact-item i { color: var(--primary); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-logo { margin-bottom: 14px; }
.footer-copyright {
  background: var(--primary-hover);
  color: rgba(255,255,255,0.82);
  text-align: center;
  padding: 16px 20px;
  font-size: 13px;
  font-family: var(--font-head);
}
.footer-copyright a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-copyright a:hover { color: var(--white); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-deep);
  color: var(--white);
  z-index: 99999;
  padding: 18px 20px;
  transform: translateY(100%);
  transition: transform 500ms ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 13px; line-height: 1.6em; color: rgba(255,255,255,0.88); }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--accent-hover); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 10px 22px;
  font-family: var(--font-head);
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.65); }

/* === PAGE BANNER === */
.page-banner {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.page-banner h1 { color: var(--white); font-size: 34px; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,0.83); font-size: 16px; max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }

/* === CONTENT PAGE === */
.content-section { max-width: 880px; margin: 0 auto; padding: 60px 20px; }
.content-section h2 { font-size: 22px; margin: 34px 0 12px; }
.content-section h3 { font-size: 18px; margin: 24px 0 10px; }
.content-section p { font-size: 14px; line-height: 1.9em; color: #333; margin-bottom: 16px; }
.content-section ul, .content-section ol { padding-left: 20px; margin-bottom: 16px; }
.content-section li { font-size: 14px; color: #333; line-height: 1.85em; margin-bottom: 6px; }
.content-section ul li { list-style: disc; }
.content-section ol li { list-style: decimal; }
.content-section table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.content-section th, .content-section td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 13px;
}
.content-section th { background: var(--bg); font-weight: 600; color: var(--primary); }

/* === SUCCESS BOX === */
.success-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.success-box {
  text-align: center;
  padding: 60px 30px;
  max-width: 560px;
  margin: 0 auto;
}
.success-icon { font-size: 64px; color: var(--accent); margin-bottom: 22px; }
.success-box h2 { font-size: 28px; margin-bottom: 14px; }
.success-box p { font-size: 15px; color: #555; margin-bottom: 26px; }

/* === ABOUT INFO BOX === */
.info-box {
  background: linear-gradient(135deg, #f7f2fb, #fdf5f8);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #444;
  line-height: 1.8em;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.divider { width: 46px; height: 3px; background: var(--accent); margin: 10px 0 22px; }
.divider-center { margin: 10px auto 22px; }
.accent-color { color: var(--accent) !important; }
.muted { color: #888; }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-tiles { grid-template-columns: 1fr; }
  .cta-tile { height: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-card { max-width: 100%; padding: 36px 26px; }
  .hero-content { justify-content: center; }
  .parallax-content { justify-content: center; }
  .parallax-card { max-width: 100%; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .hero-card h1 { font-size: 24px; }
  .section { padding: 50px 0; }
}
