/* ============================================
   ASYNC CSS — Curso Barbeiro Profissional BOFU
   ============================================ */

/* ---- Fontes locais (self-hosted WOFF2) ---- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #0a0a0f; color: #e8e8f0; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CSS Custom Properties ---- */
:root {
  --gold: #f5c842;
  --gold-light: #ffd860;
  --gold-dark: #c9a020;
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-glow: rgba(34,197,94,0.3);
  --red-badge: #ef4444;
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card2: #16161f;
  --border: rgba(255,255,255,0.07);
  --text: #e8e8f0;
  --text-muted: #9090a8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 40px rgba(245,200,66,0.15);
  --shadow-green: 0 8px 40px rgba(34,197,94,0.35);
  --max-w: 1100px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'Outfit', 'Inter', sans-serif; font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); }

/* ---- Layout Utilities ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,200,66,0.12); border: 1px solid rgba(245,200,66,0.3); color: var(--gold); padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.badge--red { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.4); color: #f87171; }
.badge--green { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.3); color: var(--green); }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.trust-badge { display: flex; align-items: center; gap: 8px; background: rgba(245,200,66,0.08); border: 1px solid rgba(245,200,66,0.2); border-radius: 8px; padding: 6px 14px; font-size: 0.78rem; font-weight: 700; color: var(--gold); }
.trust-badge svg { width: 16px; height: 16px; }

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 80px 0 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #101020 50%, #0a0a0f 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,200,66,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { 
  display: flex;
  flex-direction: column;
  position: relative; 
  z-index: 1; 
}
.hero__grid { 
  display: grid; 
  grid-template-columns: 1fr 640px; 
  gap: 48px; 
  align-items: flex-start; 
  margin-top: 40px;
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero__title { 
  margin-bottom: 0; 
  text-align: left; 
  width: 100%; 
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero__title span { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__sub { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--text-muted); margin-bottom: 32px; max-width: 100%; }
.hero__sub strong { color: var(--text); }

/* Price Anchor */
.price-block { background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a28 100%); border: 1px solid rgba(245,200,66,0.2); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 28px; display: inline-block; }
.price-block__was { font-size: 0.88rem; color: var(--text-muted); font-weight: 600; text-decoration: line-through; }
.price-block__now-label { font-size: 0.82rem; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.price-block__value { font-family: 'Outfit', sans-serif; font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 900; color: var(--gold); line-height: 1; text-shadow: 0 0 20px rgba(245,200,66,0.4); }
.price-block__note { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }
.price-block__savings { display: inline-block; background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #f87171; font-size: 0.75rem; font-weight: 800; padding: 3px 10px; border-radius: 100px; margin-top: 8px; }

/* CTA Button */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 20px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-green);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: pulse-btn 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}
.cta-btn:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 12px 50px rgba(34,197,94,0.5); filter: brightness(1.05); }
.cta-btn:active { transform: translateY(0) scale(0.99); }
.cta-btn svg { flex-shrink: 0; animation: bounce-arrow 1.2s ease-in-out infinite; }
@keyframes pulse-btn { 0%,100% { box-shadow: var(--shadow-green); } 50% { box-shadow: 0 12px 60px rgba(34,197,94,0.55); } }
@keyframes shimmer { 0% { left: -100%; } 100% { left: 200%; } }
@keyframes bounce-arrow { 0%,100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

.hero__guarantees { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.hero__guarantees--centered { justify-content: center; }
.hero__guarantee-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.hero__guarantee-item svg { color: var(--green); flex-shrink: 0; }

/* Hero Image/Video Side */
.hero__image-wrap { position: relative; }
.hero__image-wrap img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; box-shadow: 0 24px 80px rgba(0,0,0,0.6), var(--shadow-gold); }
.video-responsive { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 24px 80px rgba(0,0,0,0.6), var(--shadow-gold); background: #000; border: 1px solid rgba(245,200,66,0.2); }
.video-responsive iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.hero__mockup-badge { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--bg-card), #1e1e2e); border: 1px solid rgba(245,200,66,0.3); border-radius: 100px; padding: 10px 22px; white-space: nowrap; display: flex; align-items: center; gap: 8px; font-size: 0.83rem; font-weight: 700; color: var(--gold); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: all; cursor: default; background: transparent; clip-path: polygon(0% 0%, 0% 100%, 35% 100%, 35% 35%, 65% 35%, 65% 65%, 35% 65%, 35% 100%, 100% 100%, 100% 0%); }
.yt-facade { position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: pointer; overflow: hidden; }
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.yt-facade:hover img, .yt-facade:focus img { transform: scale(1.05); }
.yt-facade__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(160deg, rgba(0,0,0,.3) 0%, rgba(10,10,15,.78) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; transition: background .2s; }
.yt-facade:hover .yt-facade__overlay { background: linear-gradient(160deg, rgba(0,0,0,.42) 0%, rgba(10,10,15,.86) 100%); }
.yt-facade__badge { position: absolute; top: 16px; left: 16px; background: rgba(245,200,66,.13); border: 1px solid rgba(245,200,66,.45); color: #f5c842; font-size: .7rem; font-weight: 700; padding: 5px 13px; border-radius: 100px; text-transform: uppercase; letter-spacing: .07em; }
.yt-facade__play-btn { width: 76px; height: 76px; background: linear-gradient(135deg, #16a34a, #22c55e); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 36px rgba(34,197,94,.5); transition: transform .2s, box-shadow .2s; }
.yt-facade:hover .yt-facade__play-btn, .yt-facade:focus .yt-facade__play-btn { transform: scale(1.13); box-shadow: 0 14px 48px rgba(34,197,94,.65); outline: none; }
.yt-facade__copy { text-align: center; }
.yt-facade__copy strong { display: block; color: #fff; font-size: 1rem; font-weight: 800; text-shadow: 0 2px 10px rgba(0,0,0,.7); margin-bottom: 5px; }
.yt-facade__copy span { color: rgba(255,255,255,.65); font-size: .78rem; letter-spacing: .04em; }

/* ---- SOCIAL PROOF BAR ---- */
.proof-bar { background: linear-gradient(90deg, #111118 0%, #16161f 50%, #111118 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.proof-bar .container { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.proof-stat { text-align: center; }
.proof-stat__value { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.proof-stat__label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.proof-bar__divider { width: 1px; height: 40px; background: var(--border); }

/* ---- WHAT YOU LEARN ---- */
.modules { background: var(--bg-dark); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header p { color: var(--text-muted); margin-top: 12px; max-width: 580px; margin-left: auto; margin-right: auto; }
.modules__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.module-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent); opacity: 0; transition: opacity 0.2s; }
.module-card:hover { transform: translateY(-4px); border-color: rgba(245,200,66,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.module-card:hover::before { opacity: 1; }
.module-card__icon { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(245,200,66,0.12), rgba(245,200,66,0.04)); border: 1px solid rgba(245,200,66,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.4rem; }
.module-card__title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.module-card__desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ---- BENEFITS CHECKLIST ---- */
.benefits { background: linear-gradient(180deg, var(--bg-dark) 0%, #0e0e1a 100%); }
.benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.benefit-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.benefit-item__check { width: 22px; height: 22px; background: linear-gradient(135deg, var(--green-dark), var(--green)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.benefit-item__check svg { width: 12px; height: 12px; color: #fff; }
.benefit-item__text { font-size: 0.9rem; color: var(--text); font-weight: 500; }

/* ---- COMPARISON TABLE ---- */
.comparison { background: #0e0e1a; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid rgba(245,200,66,0.15); }
table.compare { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
table.compare thead { background: linear-gradient(135deg, #1a1a28, #202030); }
table.compare thead th { padding: 18px 22px; text-align: left; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
table.compare thead th.col-online { color: var(--gold); }
table.compare tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
table.compare tbody tr:last-child { border-bottom: none; }
table.compare tbody tr:hover { background: rgba(255,255,255,0.025); }
table.compare tbody td { padding: 16px 22px; vertical-align: middle; }
table.compare tbody td:first-child { font-weight: 600; color: var(--text); }
table.compare tbody td.col-presencial { color: #f87171; }
table.compare tbody td.col-online { color: var(--green); font-weight: 700; }
.compare__icon--check { display: inline-flex; align-items: center; gap: 6px; }
.compare__icon--x { display: inline-flex; align-items: center; gap: 6px; color: #f87171; }
table.compare tfoot td { padding: 20px 22px; background: rgba(34,197,94,0.06); border-top: 2px solid rgba(34,197,94,0.2); font-weight: 800; color: var(--green); font-size: 0.95rem; }
table.compare tfoot td:first-child { color: var(--text); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--bg-dark); }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 12px; right: 20px; font-size: 5rem; line-height: 1; color: rgba(245,200,66,0.08); font-family: 'Outfit', sans-serif; font-weight: 900; }
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 12px; }
.testimonial-card__stars svg { color: var(--gold); width: 16px; height: 16px; }
.testimonial-card__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; color: #0a0a0f; flex-shrink: 0; }
.testimonial-card__name { font-weight: 700; font-size: 0.88rem; }
.testimonial-card__location { font-size: 0.75rem; color: var(--text-muted); }

/* ---- PRINTS, MOCKUPS & CERTIFICADOS ---- */
.prints { background: var(--bg-card2); }
.certified { background: linear-gradient(180deg, #0e1a12 0%, var(--bg-dark) 100%); }
.mockup { background: var(--bg-dark); }
.prints__grid, .certified__grid, .mockup__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.prints__grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.mockup__grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.prints__item img, .certified__item img, .mockup__item img { width: 100%; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: transform 0.3s ease; border: 1px solid var(--border); }
.prints__item:hover img, .certified__item:hover img, .mockup__item:hover img { transform: translateY(-4px); border-color: rgba(245,200,66,0.3); }

/* ---- GUARANTEE SECTION ---- */
.guarantee { background: linear-gradient(135deg, #0e1a12 0%, #0a0a0f 50%, #0e1a12 100%); border-top: 1px solid rgba(34,197,94,0.15); border-bottom: 1px solid rgba(34,197,94,0.15); }
.guarantee .container { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.guarantee__icon { flex-shrink: 0; width: 140px; }
.guarantee__icon img { width: 100%; filter: drop-shadow(0 0 20px rgba(34,197,94,0.3)); }
.guarantee__content h2 { color: var(--green); }
.guarantee__content p { color: var(--text-muted); margin-top: 12px; max-width: 580px; }

/* ---- FAQ ---- */
.faq { background: #0e0e1a; }
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
details.faq-item[open] { border-color: rgba(245,200,66,0.25); }
details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  list-style: none;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; }

/* ---- FINAL CTA SECTION ---- */
.final-cta {
  background: linear-gradient(135deg, #0a0a0f 0%, #101828 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { color: var(--text-muted); max-width: 520px; margin: 0 auto 32px; }
.final-cta__price { font-family: 'Outfit', sans-serif; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: var(--gold); margin-bottom: 28px; line-height: 1.1; }
.final-cta__price span { font-size: 0.42em; vertical-align: super; }
.final-cta__price em { display: block; font-size: 0.32em; color: var(--text-muted); font-style: normal; font-weight: 600; margin-top: 4px; }
.final-cta .cta-btn { max-width: 560px; margin: 0 auto; }
.final-cta__trust { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 24px; }
.final-cta__trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); }
.final-cta__trust-item svg { color: var(--green); }

/* ---- PAYMENT SEALS ---- */
.seals { background: var(--bg-card); border-top: 1px solid var(--border); padding: 28px 0; }
.seals .container { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.seals img { height: 36px; width: auto; filter: brightness(0.7) saturate(0.5); opacity: 0.7; transition: opacity 0.2s, filter 0.2s; }
.seals img:hover { opacity: 1; filter: brightness(1) saturate(1); }

/* ---- FOOTER ---- */
.site-footer { background: #06060a; border-top: 1px solid var(--border); padding: 40px 0; }
.site-footer .container { display: flex; flex-direction: column; gap: 20px; }
.footer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__brand { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--gold); }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__disclaimer { font-size: 0.75rem; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 20px; max-width: 840px; }
.footer__disclaimer strong { color: #9090a8; }

/* ---- Course Gallery ---- */
.gallery { background: #0e0e1a; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery__item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.05); }

/* ---- MODAL ---- */
.modal-overlay { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); align-items: center; justify-content: center; padding: 20px; }
.modal-content { background: var(--bg-card); border: 1px solid rgba(245,200,66,0.3); border-radius: 16px; max-width: 600px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; padding: 40px; color: var(--text); font-family: 'Inter', sans-serif; }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 32px; color: var(--text-muted); cursor: pointer; }
.modal-title { color: var(--gold); margin-bottom: 20px; font-family: 'Outfit', sans-serif; }
.modal-body { line-height: 1.6; font-size: 14px; color: var(--text-muted); }
.modal-body h3 { margin-top: 20px; font-size: 1.1rem; color: var(--text); }
.modal-body p { margin-bottom: 12px; }

/* ---- Responsive ---- */
/* ---- Responsive Overhaul ---- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__image-wrap { max-width: 640px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .site-header .container { justify-content: center; flex-direction: column; gap: 12px; }
  .breadcrumb { display: none; } /* Hide breadcrumb on mobile for cleaner look */
  
  .hero__image-wrap { order: -1; width: 100%; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero__title { text-align: center; font-size: 2.2rem; }
  .hero__badges { justify-content: center; }
  .hero__sub { text-align: center; }
  
  .benefits__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .guarantee .container { flex-direction: column; text-align: center; gap: 24px; }
  .guarantee__icon { width: 100px; margin: 0 auto; }
  
  .proof-bar .container { gap: 24px 12px; justify-content: center; display: grid; grid-template-columns: repeat(2, 1fr); }
  .proof-bar__divider { display: none; }
  .proof-stat__value { font-size: 1.35rem; }
  
  .footer__top { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .footer__links { justify-content: center; }
}

@media (max-width: 600px) {
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  
  h1 { font-size: 1.8rem !important; line-height: 1.25; }
  h2 { font-size: 1.5rem; text-align: center; }
  .section-header p { font-size: 0.9rem; }
  
  .hero { padding: 24px 0 48px; }
  .hero__title { font-size: 1.8rem; padding-bottom: 20px; margin-bottom: 20px; }
  
  .price-block { padding: 20px; width: 100%; max-width: 320px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
  .price-block__value { font-size: 2.8rem; }
  
  .cta-btn { padding: 16px 20px; font-size: 0.95rem; }
  .cta-btn svg { width: 18px; height: 18px; }
  
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .prints__grid, .certified__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  
  .module-card { padding: 20px; text-align: center; }
  .module-card__icon { margin: 0 auto 12px; }
  
  .table-wrap { margin-top: 20px; }
  table.compare { font-size: 0.72rem; }
  table.compare thead th, table.compare tbody td { padding: 8px 6px; }
  
  .testimonial-card { padding: 20px; }
  
  .final-cta { padding: 48px 0; }
  .final-cta__price { font-size: 2.6rem; }
  .final-cta__trust { gap: 12px; }
  
  .seals .container { gap: 12px; }
  .seals img { height: 24px; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 1.6rem; }
  .price-block__value { font-size: 2.4rem; }
  .proof-bar .container { grid-template-columns: 1fr; }
}

/* ---- Cookie Consent Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #111118;
  border-top: 1px solid rgba(245, 200, 66, .25);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .55);
}
#cookie-banner p {
  font-size: .82rem;
  color: #b0b0c8;
  line-height: 1.5;
  flex: 1;
  min-width: 220px;
  margin: 0;
}
#cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btns button {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.cookie-banner__btns button:hover { opacity: .85; }
#cookie-accept {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
}
#cookie-decline {
  background: rgba(255, 255, 255, .08);
  color: #9090a8;
  border: 1px solid rgba(255, 255, 255, .12) !important;
}
