/* ===== VARIABLES ===== */
:root {
  --gold: hsl(42, 65%, 52%);
  --gold-light: hsl(42, 55%, 65%);
  --gold-dark: hsl(42, 55%, 42%);
  --navy-deep: hsl(214, 60%, 8%);
  --navy-mid: hsl(214, 55%, 15%);
  --navy-card: hsl(214, 55%, 15%);
  --slate: hsl(216, 20%, 68%);
  --border: hsl(214, 40%, 22%);
  --text: hsl(36, 40%, 92%);
  --red: hsl(0, 84%, 60%);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); }

/* ===== CONTAINERS ===== */
.container-mid { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== NAVBAR ===== */
.navbar {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.5px;
}
.navbar-brand:hover { color: var(--text); }
.navbar-brand span {
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.lang-toggle { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; letter-spacing: 0.15em; }
.lang-toggle a { color: var(--slate); text-transform: uppercase; font-weight: 500; }
.lang-toggle a.active { color: var(--gold); }
.lang-toggle a:hover { color: var(--gold-light); }
.lang-toggle span { color: var(--border); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.85rem 2rem;
  font-size: 0.88rem;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-gold-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}
.btn-block { display: flex; width: 100%; }

/* ===== HERO ===== */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 .gold {
  color: var(--gold);
  font-style: italic;
}
.hero-text {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 2rem;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-meta .icon {
  color: var(--gold);
  font-size: 0.6rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-image img {
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  transition: border-color 0.3s;
}
.hero-image img:hover {
  border-color: rgba(201, 168, 76, 0.6);
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

/* ===== SECTION HEADINGS ===== */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  max-width: 650px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-subtitle {
  color: var(--slate);
  font-size: 0.95rem;
  max-width: 650px;
  margin-bottom: 3rem;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.problem-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.problem-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.problem-card:hover { border-color: rgba(201, 168, 76, 0.3); transform: translateX(2px); }
.problem-card h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.problem-card p {
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.6;
}
.problem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  border: 1px solid var(--border);
}

/* ===== QUOTE ===== */
.quote-section {
  background: var(--navy-card);
  padding: 4rem 1.5rem;
  text-align: center;
}
.quote-inner {
  max-width: 800px;
  margin: 0 auto;
}
.quote-mark {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.quote-source {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== SERVICES (AGENDA-STYLE) ===== */
.agenda-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}
.service-pillar { display: flex; flex-direction: column; }
.service-pillar .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.service-pillar h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.service-pillar p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.pillar-link {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.pillar-link:hover { border-bottom-color: var(--gold); }

/* ===== PROCESS ===== */
.process-section {
  padding: 5rem 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.process-step {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.process-step:hover { border-color: rgba(201, 168, 76, 0.3); transform: translateY(-2px); }
.process-step .num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}
.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.process-step p {
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-card) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
  margin-top: 1rem;
}
.pricing-card {
  background: var(--navy-deep);
  border: 1px solid var(--border);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.pricing-card:hover { border-color: rgba(201, 168, 76, 0.4); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--navy-deep) 0%, rgba(201, 168, 76, 0.05) 100%);
  transform: translateY(-8px);
}
.pricing-card.featured:hover { transform: translateY(-12px); }
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  padding: 0.32rem 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.pricing-card .price-note {
  font-size: 0.72rem;
  color: var(--slate);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.pricing-features {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--slate);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.65rem;
  line-height: 1.5;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--gold); flex-shrink: 0; font-weight: 700; }
.pricing-note {
  text-align: center;
  color: var(--slate);
  font-size: 0.78rem;
  margin-top: 2.5rem;
  letter-spacing: 0.05em;
}

/* ===== AUDIENCE ===== */
.audience-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.audience-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.audience-heading.positive { color: var(--gold); }
.audience-heading.negative { color: var(--slate); }
.audience-list { display: flex; flex-direction: column; gap: 1rem; }
.audience-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.55;
}
.audience-list .check { color: var(--gold); flex-shrink: 0; font-weight: 700; }
.audience-list .cross { color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ===== SPEAKERS / TEAM ===== */
.speakers-section {
  background: var(--navy-card);
  padding: 5rem 1.5rem;
  text-align: center;
}
.speakers-inner {
  max-width: 900px;
  margin: 0 auto;
}
.speakers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}
.speaker-card { text-align: center; }
.speaker-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 2px solid rgba(201, 168, 76, 0.4);
  background: var(--navy-deep);
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speaker-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 0.4rem;
}
.speaker-role {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
  white-space: pre-line;
}
.speaker-text {
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--navy-card);
  padding: 5rem 1.5rem;
}
.faq-inner {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
  transition: border-color 0.3s;
  background: var(--navy-deep);
}
.faq-item.open { border-color: rgba(201, 168, 76, 0.3); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--gold);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===== FINAL CTA + FORM SLOT ===== */
.cta-section {
  padding: 5rem 1.5rem 6rem;
  text-align: center;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.cta-inner h2 em {
  color: var(--gold);
  font-style: italic;
}
.cta-inner > p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.form-embed {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 3rem 1.5rem;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-placeholder {
  color: var(--slate);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.8;
}
.form-placeholder small {
  font-size: 0.72rem;
  color: var(--border);
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
  background: var(--navy-deep);
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.5px;
}
.footer-brand span {
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.82rem;
  margin-left: 0.5rem;
}
.footer-disclaimer {
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
.footer-links {
  font-size: 0.78rem;
  color: var(--slate);
}
.footer-links a {
  color: var(--slate);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--border);
  letter-spacing: 0.05em;
  padding-top: 0.5rem;
}

/* ===== DETAIL PAGE SUB-HERO ===== */
.page-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}
.breadcrumb {
  font-size: 0.78rem;
  color: var(--slate);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--border); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 1rem;
  max-width: 800px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero .lead {
  color: var(--slate);
  font-size: 1.1rem;
  max-width: 700px;
  line-height: 1.7;
}

/* ===== METHOD LIST (DETAIL PAGES) ===== */
.method-section { max-width: 1100px; margin: 0 auto; padding: 5rem 1.5rem; }
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.method-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.3s;
}
.method-item:hover { border-color: rgba(201, 168, 76, 0.3); }
.method-item .step {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.method-item h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.method-item p { color: var(--slate); font-size: 0.88rem; line-height: 1.6; }

/* ===== COVERAGE LIST ===== */
.coverage-section {
  background: var(--navy-card);
  padding: 5rem 1.5rem;
}
.coverage-inner { max-width: 1100px; margin: 0 auto; }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.coverage-item {
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--slate);
  transition: border-color 0.3s, color 0.3s;
}
.coverage-item:hover { border-color: rgba(201, 168, 76, 0.3); color: var(--text); }
.coverage-item strong { color: var(--gold); display: block; font-family: var(--font-display); font-size: 1rem; font-style: italic; margin-bottom: 0.2rem; }

/* ===== LEGAL PAGE ===== */
.legal-page { max-width: 800px; margin: 0 auto; padding: 4rem 1.5rem 5rem; }
.legal-page h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.5rem; }
.legal-page h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; color: var(--gold); font-style: italic; }
.legal-page p { color: var(--slate); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.75; }
.legal-page ul { margin: 0 0 1rem 1.2rem; }
.legal-page ul li { color: var(--slate); font-size: 0.95rem; line-height: 1.75; list-style: disc; margin-bottom: 0.5rem; }
.legal-page .lang-divider {
  margin: 3.5rem 0;
  text-align: center;
  position: relative;
}
.legal-page .lang-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.legal-page .lang-divider span {
  position: relative;
  background: var(--navy-deep);
  padding: 0 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 1rem auto 0; }
  .pricing-card.featured { transform: translateY(0); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar-inner { padding: 0 1rem; }
  .navbar-brand { font-size: 0.95rem; }
  .navbar-brand span { display: none; }
  .nav-right { gap: 1rem; }
  .hero {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem 3rem;
  }
  .hero-image { display: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-image { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .method-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .speakers-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .audience-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote-mark { font-size: 4rem; }
}
