/* =============================================
   THE PRODUCT ACADEMY — SHARED STYLES v4
   Clean, professional, image-free
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@700;800&display=swap');

:root {
  --purple:       #6d28d9;
  --purple-mid:   #7c3aed;
  --purple-pale:  #f3f0ff;
  --purple-pale2: #ede9fe;
  --purple-dark:  #4c1d95;
  --wa-green:     #25D366;
  --dark:         #0f172a;
  --dark2:        #1e293b;
  --text:         #1e293b;
  --text-muted:   #64748b;
  --border:       #e2e8f0;
  --bg:           #ffffff;
  --bg-soft:      #f8fafc;
  --radius:       14px;
  --radius-sm:    9px;
  --radius-pill:  999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; color: var(--dark); }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 40px;
}
.topbar-left { display: flex; gap: 1.25rem; }
.topbar a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.topbar a:hover { color: #fff; }
.topbar-right { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 84px;
}
.nav-logo img { height: 80px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 15px; color: var(--text-muted); font-weight: 600; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: ' ▾'; font-size: 11px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 6px 0;
  z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 18px; font-size: 14px; color: var(--text); }
.dropdown-menu a:hover { background: var(--purple-pale); color: var(--purple); }
.dropdown-menu .coming-soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-menu .coming-soon::after {
  content: 'Coming soon';
  font-size: 10px;
  background: var(--purple-pale2);
  color: var(--purple);
  padding: 2px 8px;
  border-radius: 10px;
}
.nav-cta {
  background: var(--purple);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--purple-mid) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2.5px; background: var(--text); margin: 5px 0; border-radius: 2px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--purple-mid); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wa-green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s;
}
.btn-wa:hover { opacity: 0.88; }
.btn-wa svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

.btn-wa-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s;
}
.btn-wa-solid:hover { opacity: 0.88; }


/* ---- HERO ---- */
.hero {
  background: var(--purple-pale);
  padding: 5rem 2.5rem;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-pale2);
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1.25rem; line-height: 1.12; }
.hero h1 em { font-style: normal; color: var(--purple); }
.hero p { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 2.25rem; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- HERO VISUAL CARD ---- */
.hero-visual-card {
  background: var(--purple);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hvc-price-splash {
  background: var(--purple-dark);
  padding: 2rem 2rem 1.75rem;
  text-align: center;
}
.hvc-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.hvc-was {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.hvc-was s { color: rgba(255,255,255,0.4); }
.hvc-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.hvc-saving {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
}
.hvc-facts {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.hvc-fact {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 14px;
}
.hvc-fact svg {
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.hvc-fact strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1px;
}
.hvc-fact span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.hvc-cta {
  padding: 1.25rem 1.75rem;
  background: rgba(0,0,0,0.15);
  display: flex;
  gap: 10px;
}
.hvc-cta .btn-primary,
.hvc-cta .btn-wa,
.hvc-cta .btn-wa-solid {
  font-size: 13px;
  padding: 11px 16px;
}

/* ---- DATE SELECTOR ---- */
.date-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 1.25rem; }
.date-card {
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: rgba(255,255,255,0.05);
}
.date-card:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); }
.date-card.selected { border-color: #fff; background: rgba(255,255,255,0.15); }
.date-card.selected .date-check { opacity: 1; }
.date-card-month { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.date-card-days { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.date-card-sub { font-size: 12px; color: rgba(255,255,255,0.5); }
.date-check { opacity: 0; font-size: 18px; margin-top: 6px; transition: opacity 0.2s; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--purple); display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { padding: 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2.75rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ---- SECTION HELPERS ---- */
.section { padding: 5rem 2.5rem; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-soft { background: var(--bg-soft); }
.section-purple { background: var(--purple-pale); }

.section-label { font-size: 12px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.section-title { font-size: 2.4rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.15; }
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 560px; margin-bottom: 3rem; }

/* ---- COURSE CARDS ---- */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.course-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.course-card:hover { box-shadow: 0 12px 40px rgba(109,40,217,0.1); transform: translateY(-3px); }
.course-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  position: relative;
}
.course-thumb-coming { background: linear-gradient(135deg, #334155 0%, #475569 100%); }
.course-thumb-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-thumb-icon svg { width: 38px; height: 38px; color: #fff; stroke-width: 1.75; }
.course-body { padding: 1.5rem; }
.course-tag { font-size: 11px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.course-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.course-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.course-link { font-size: 14px; color: var(--purple); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.course-link:hover { gap: 9px; }
.coming-soon-badge { display: inline-block; font-size: 12px; font-weight: 700; background: var(--purple-pale2); color: var(--purple); padding: 5px 12px; border-radius: var(--radius-pill); }

/* ---- ICON FEATURE CARDS ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem; }
.feature-card {
  background: #fff;
  border: 1.5px solid var(--purple-pale2);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 6px 24px rgba(109,40,217,0.08); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 26px; height: 26px; color: #fff; stroke-width: 1.75; }
.feature-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---- TESTIMONIALS ---- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.testi-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testi-stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 700; color: var(--dark); }
.testi-city { font-size: 13px; color: var(--text-muted); }

/* ---- CONTACT BAND ---- */
.contact-band { background: var(--dark); padding: 5rem 2.5rem; }
.contact-band-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-band h2 { font-size: 2.25rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.contact-band-inner > div > p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 1.75rem; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.contact-detail svg { width: 20px; height: 20px; color: var(--wa-green); flex-shrink: 0; }
.contact-detail span { font-size: 15px; color: rgba(255,255,255,0.7); }

/* ---- CALLBACK FORM ---- */
.callback-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 2rem; }
.callback-form h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.callback-form > p { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 6px; font-weight: 600; }
.form-group input, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.form-group select option { background: var(--dark2); color: #fff; }
.form-group input:focus, .form-group select:focus { border-color: rgba(124,58,237,0.6); }
.form-submit {
  width: 100%;
  background: var(--wa-green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-top: 6px;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.88; }

/* ---- FOOTER ---- */
.footer { background: #080f1a; padding: 4rem 2.5rem 1.75rem; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo img { height: 60px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 300px; }
.footer h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer ul li a:hover { color: #fff; }
.footer-bottom { max-width: 1140px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }

/* ---- FLOATING WHATSAPP ---- */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; align-items: center; gap: 12px; }
.wa-float-btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}
.wa-float-btn:hover { transform: scale(1.08); }
.wa-float-btn svg { width: 32px; height: 32px; fill: #fff; }
.wa-float-label { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 16px; font-size: 14px; font-weight: 700; color: var(--dark); box-shadow: 0 4px 12px rgba(0,0,0,0.08); white-space: nowrap; animation: fadeSlide 0.3s ease; }
@keyframes fadeSlide { from { opacity:0; transform:translateX(8px); } to { opacity:1; transform:translateX(0); } }

/* ---- PAGE HERO ---- */
.page-hero { background: var(--purple-pale); padding: 4rem 2.5rem; text-align: center; }
.page-hero-inner { max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: var(--text-muted); line-height: 1.75; }

/* ---- PULL QUOTE ---- */
.pull-quote { border-left: 4px solid var(--purple); padding: 14px 22px; background: var(--purple-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 16px; font-style: italic; color: var(--dark); margin: 1.75rem 0; }


/* ---- LEARN BLOCK ---- */
.learn-block {
  background: var(--purple-pale);
  border: 1.5px solid var(--purple-pale2);
  border-radius: var(--radius);
  overflow: hidden;
}
.learn-block-header {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.learn-block-header svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.learn-list {
  list-style: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.learn-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* ---- PRICE BOX FIX ---- */
.price-box {
  position: relative;
  z-index: 0;
}
.price-box > * {
  position: relative;
  z-index: 1;
}


/* ---- FEE CHECKBOX ---- */
.fee-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  line-height: 1.5;
}
.fee-checkbox-label:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
}
.fee-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  accent-color: var(--purple-mid);
  cursor: pointer;
  border-radius: 4px;
}
.fee-checkbox-label strong { color: #fff; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual-card { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.9rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .contact-band-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav { padding: 0 1.5rem; height: 72px; }
  .nav-logo img { height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem; gap: 0.875rem; z-index: 200;
  }
  .section { padding: 3.5rem 1.5rem; }
  .hero { padding: 3.5rem 1.5rem; }
  .contact-band { padding: 3.5rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem; }
  .page-hero h1 { font-size: 1.9rem; }
}


/* ---- COOKIE CONSENT BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  animation: cookieSlideUp 0.3s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner-inner p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 240px;
}
.cookie-banner-inner p a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.88; }
.cookie-btn-accept { background: var(--purple); color: #fff; }
.cookie-btn-outline { background: transparent; color: rgba(255,255,255,0.6); border: 1.5px solid rgba(255,255,255,0.25); }

@media (max-width: 768px) {
  .cookie-banner-inner { padding: 1.25rem 1.5rem; flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-btns { justify-content: center; }
}
