/* ============================================================
   MODERN BOLD STYLESHEET — Arial / High-Contrast Palette
   All class names preserved from original.
   ============================================================ */
 
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
 
:root {
  /* Core palette — bold, high-contrast */
  --background:      #0a0a0f;
  --foreground:      #f0f0f5;
  --muted:           #7a7a9a;
  --border:          #1e1e2e;
  --card:            #12121c;
  --ivory:           #0f0f1a;
 
  /* Accent: electric violet + cyan punch */
  --gold:            #7c3aed;          /* replaces gold → vivid violet */
  --gold-soft:       #a78bfa;          /* replaces gold-soft → soft violet */
  --gold-deep:       #c4b5fd;          /* replaces gold-deep → light violet */
  --gradient-gold:   linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  --gradient-ivory:  linear-gradient(180deg, #12121c, #0f0f1a);
 
  /* Shadows */
  --shadow-royal:    0 20px 60px -20px rgba(124, 58, 237, 0.55);
  --shadow-soft:     0 8px 30px -10px rgba(6, 182, 212, 0.2);
 
  /* Highlight accent */
  --cyan:            #06b6d4;
  --cyan-soft:       #67e8f9;
}
 
/* ---- Reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
 
/* Display / heading font — Bebas Neue for drama, Arial fallback */
h1, h2, h3, h4, blockquote {
  font-family: 'Bebas Neue', Arial Black, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.08;
}
 
/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }
 
/* ---- Utility ---- */
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.gold-divider {
  height: 3px;
  background: var(--gradient-gold);
  margin: 1.5rem 0;
  width: 80px;
  border-radius: 2px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  color: var(--cyan);
  font-weight: 700;
  font-family: Arial, sans-serif;
  display: inline-block;
}
.ornament {
  display: inline-flex; align-items: center; gap: 0.75rem; color: var(--gold);
}
.ornament::before, .ornament::after {
  content: ""; width: 32px; height: 2px;
  background: var(--gradient-gold);
}
 
/* ---- Buttons ---- */
.btn-royal, .btn-outline-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; font-size: 0.75rem; border-radius: 4px;
  cursor: pointer; border: none; transition: all 0.25s ease;
  font-family: Arial, sans-serif;
}
.btn-royal {
  background: var(--gradient-gold);
  color: #fff;
  box-shadow: var(--shadow-royal);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-royal:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 28px 72px -18px rgba(124,58,237,0.7);
}
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-deep);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.65rem; }
 
/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold);
}
.header-inner {
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    line-height: 60px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.crown { width: 22px; height: 22px; color: var(--cyan); }
.brand-name {
  font-family: 'Bebas Neue', Arial Black, sans-serif;
  font-size: 1.6rem; letter-spacing: 0.08em;
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--cyan); }
.nav-cta { display: none; }
.menu-toggle {
  background: none; border: none; padding: 0.5rem; cursor: pointer;
  color: var(--gold);
}
.menu-toggle svg { width: 24px; height: 24px; }
.nav-mobile {
  display: none; flex-direction: column;
  padding: 0.5rem 1.5rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--background);
}
.nav-mobile a {
  padding: 0.75rem 0; color: var(--muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
 
@media (min-width: 1024px) {
  .nav-desktop, .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}
 
/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,15,0.7) 0%,
    rgba(10,10,15,0.4) 50%,
    var(--background) 100%);
}
/* Noise grain overlay for atmosphere */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 8rem 1.5rem; text-align: center; max-width: 960px;
}
@media (min-width: 768px) { .hero-inner { padding: 11rem 2rem; } }
.hero h1 {
  margin-top: 2rem;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.98;
  color: var(--foreground);
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.lede {
  margin: 2rem auto 0; max-width: 600px;
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75;
  font-family: Arial, sans-serif;
}
.cta-row {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
}
 
/* ---- Sections ---- */
.section { padding: 6rem 0; }
.section-alt {
  padding: 6rem 0;
  background: var(--ivory);
  border-block: 1px solid var(--border);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-head h2 {
  margin-top: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--foreground);
}
.section-head p { margin-top: 1.25rem; color: var(--muted); font-size: 0.95rem; }
 
/* ---- Cards ---- */
.card-grid, .res-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  display: block; padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0; /* sharp corners — bold style */
  border-left: 3px solid var(--gold);
  transition: all 0.25s ease;
}
.card:hover {
  border-left-color: var(--cyan);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
  background: #15152a;
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 1.25rem;
  font-size: 1.3rem; font-weight: 900;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.card h3 { font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--foreground); }
.card p { font-size: 0.88rem; color: var(--muted); font-family: Arial, sans-serif; }
.card-link {
  display: inline-block; margin-top: 1.25rem;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cyan); font-weight: 700;
}
 
/* ---- Two-col ---- */
.two-col {
  display: grid; gap: 3.5rem; align-items: center;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col.reverse > :first-child { order: 2; }
}
.two-col h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-top: 0.75rem;
  color: var(--foreground);
}
.two-col p { color: var(--muted); margin-bottom: 1rem; font-family: Arial, sans-serif; }
.rounded-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 0;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-soft);
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}
#founder .rounded-img { aspect-ratio: 4/5; }

.maxwell-container {
    text-align: center;
    margin-top: 2rem;
}

.maxwell {
    width: 180px;
    max-width: 100%;
    display: inline-block;
    border: none;
    outline: none;
    box-shadow: none;
}

.newsletter-cta {
    text-align: center;
    margin-top: 2rem;
}

.newsletter-cta .btn-royal {
    min-width: 320px;
}
 
/* ---- Lists & Boxes ---- */
.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: var(--foreground);
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}
.check-list li::before {
  content: "▶";
  position: absolute; left: 0;
  color: var(--cyan); font-size: 0.65rem;
  top: 0.75rem;
}
.pricing-box {
  margin-top: 2rem; padding: 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
}
.pricing-box .price {
  font-family: 'Bebas Neue', Arial Black, sans-serif;
  font-size: 2.4rem; margin: 0.5rem 0 0;
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.info-grid {
  margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.info-grid > div {
  padding: 1.25rem; background: var(--card);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--gold);
}
.info-grid p {
  font-family: 'Bebas Neue', Arial Black, sans-serif;
  font-size: 1.6rem; margin-top: 0.25rem;
  color: var(--cyan);
}
.prog-card {
  padding: 1.5rem; background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  margin-bottom: 1rem; transition: border-color 0.2s;
}
.prog-card:hover { border-left-color: var(--gold); }
.prog-head { display: flex; justify-content: space-between; align-items: start; gap: 1rem; }
.prog-head h3 { font-size: 1.6rem; color: var(--foreground); }
.prog-head span { color: var(--cyan); font-weight: 700; font-size: 0.85rem; font-family: Arial, sans-serif; }
.prog-when {
  margin-top: 0.25rem !important;
  font-size: 0.67rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted);
  font-family: Arial, sans-serif;
}
.prog-card > p:last-child {
  margin-top: 0.75rem; font-size: 0.88rem;
  color: var(--muted); font-family: Arial, sans-serif;
}
 
/* ---- Quote ---- */
.quote-section {
  padding: 6rem 0;
  background: var(--ivory);
  border-block: 1px solid var(--border);
}
.quote-inner { max-width: 760px; text-align: center; }
.quote-crown { width: 36px; height: 36px; color: var(--gold); margin: 0 auto; }
.quote-section blockquote {
  margin: 1.5rem 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: normal; line-height: 1.2;
  color: var(--foreground);
  position: relative;
}
.quote-section blockquote::before {
  content: """;
  font-size: 6rem; line-height: 0;
  position: absolute; left: -1rem; top: 2rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-family: 'Bebas Neue', serif;
  opacity: 0.4;
}
 
/* ---- Forms ---- */
.form-wrap { max-width: 640px; }
.royal-form {
  display: flex; flex-direction: column; gap: 1.25rem;
  padding: 2.5rem; background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}
.royal-form label {
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-soft);
  font-family: Arial, sans-serif;
}
.royal-form input, .royal-form select, .royal-form textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--background); border: 1px solid var(--border);
  border-radius: 0;
  font-family: Arial, sans-serif; font-size: 0.95rem;
  color: var(--foreground); transition: all 0.2s;
}
.royal-form input:focus, .royal-form select:focus, .royal-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}
.newsletter-form {
  display: flex; gap: 0.75rem; max-width: 460px; margin: 0 auto; flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1; min-width: 200px;
  padding: 0.875rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: Arial, sans-serif; font-size: 0.9rem;
  color: var(--foreground);
}
.newsletter-form input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}
.newsletter-form.compact { max-width: none; margin: 0; }
.thanks {
  text-align: center; padding: 2.5rem;
  background: var(--card); border: 1px solid var(--border);
  border-top: 3px solid var(--cyan);
}
.thanks h3 { font-size: 2.4rem; color: var(--foreground); }
.thanks p { color: var(--muted); margin-top: 0.75rem; font-family: Arial, sans-serif; }
.thanks-inline {
  text-align: center; color: var(--cyan); margin-top: 1rem;
  font-size: 0.88rem; font-family: Arial, sans-serif;
}
 
/* ---- Footer ---- */
.site-footer {
  margin-top: 6rem; padding: 5rem 0 2rem;
  background: var(--ivory);
  border-top: 2px solid var(--gold);
}
.footer-grid {
  display: grid; gap: 3rem; grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; }
}
.footer-brand p {
  color: var(--muted); margin-top: 1.25rem; max-width: 420px;
  font-family: Arial, sans-serif; font-size: 0.9rem;
}
.socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.socials a {
  width: 40px; height: 40px;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.7rem; font-weight: 700;
  font-family: Arial, sans-serif;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
  transition: opacity 0.2s;
}
.socials a:hover { opacity: 0.8; }
.site-footer h4 {
  font-family: Arial, sans-serif; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--cyan); margin-bottom: 1.25rem; font-weight: 700;
}
.site-footer ul li { margin-bottom: 0.625rem; font-size: 0.88rem; font-family: Arial, sans-serif; }
.site-footer ul li a { color: var(--muted); }
.site-footer ul li a:hover { color: var(--gold-deep); }
.site-footer h4 + p {
  font-size: 0.875rem; color: var(--muted);
  margin-bottom: 1rem; font-family: Arial, sans-serif;
}
 
.footer-bottom {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.72rem; color: var(--muted); font-family: Arial, sans-serif;
}
.legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.legal a:hover { color: var(--cyan); }
 
/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 420px; z-index: 50;
  background: var(--card);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--cyan);
  padding: 1.25rem;
  box-shadow: var(--shadow-royal);
  display: flex; gap: 0.75rem;
  animation: slideUp 0.4s ease;
}
@media (min-width: 768px) {
  .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-icon {
  width: 36px; height: 36px;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}
.cookie-body { flex: 1; }
.cookie-body h4 {
  font-size: 1.2rem; margin-bottom: 0.25rem;
  color: var(--foreground);
  font-family: 'Bebas Neue', Arial Black, sans-serif;
  letter-spacing: 0.05em;
}
.cookie-body p {
  font-size: 0.82rem; color: var(--muted);
  margin-bottom: 0.875rem; font-family: Arial, sans-serif;
}
.cookie-actions { display: flex; gap: 0.5rem; }
.cookie-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1.1rem; padding: 0;
  width: 24px; height: 24px; line-height: 1;
  font-family: Arial, sans-serif;
  transition: color 0.2s;
}
.cookie-close:hover { color: var(--gold); }