*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-deep: #1B3A5C;
  --blue-mid: #2A5080;
  --blue-light: #EBF2FA;
  --amber: #D4813A;
  --amber-hover: #BF7030;
  --amber-light: #FDF3E9;
  --bg: #F7F6F2;
  --bg-white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #666666;
  --text-light: #999999;
  --border: #E0DDD6;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 32px rgba(0,0,0,0.10);
  --transition: 0.22s ease;
  --max-w: 1120px;
  --section-pad: 84px 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'PT Sans', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--amber); }

h1, h2, h3, h4 {
  font-family: 'PT Serif', Georgia, serif;
  line-height: 1.28;
  color: var(--blue-deep);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-family: 'PT Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--amber-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--blue-deep);
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border: 2px solid var(--blue-deep);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: var(--blue-deep);
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--blue-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  font-family: 'PT Serif', serif;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'PT Serif', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'PT Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  transition: color var(--transition);
}

.nav a:hover { color: var(--amber); }

.nav .btn-primary {
  font-size: 15px;
  padding: 10px 24px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: all var(--transition);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #1B3A5C 0%, #2A5080 60%, #1E4570 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-speaker.png') center right / cover no-repeat;
  opacity: 0.18;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 129, 58, 0.2);
  border: 1px solid rgba(212, 129, 58, 0.5);
  color: #F0AC6A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.18;
}

.hero h1 em {
  color: #F0AC6A;
  font-style: normal;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  width: 100%;
}

.hero-stat-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.hero-stat-card.card-1 {
  bottom: -18px;
  left: -24px;
}

.hero-stat-card.card-2 {
  top: -18px;
  right: -24px;
}

.stat-num {
  font-size: 28px;
  font-weight: 700;
  font-family: 'PT Serif', serif;
  color: var(--blue-deep);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

section {
  padding: var(--section-pad);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
}

.section-head { margin-bottom: 52px; }

.problem-solution {
  background: var(--bg-white);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ps-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.problem-list {
  list-style: none;
  margin-bottom: 32px;
}

.problem-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
  align-items: flex-start;
}

.problem-list li:last-child { border-bottom: none; }

.problem-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FDECEA;
  color: #C0392B;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-banner {
  background: var(--blue-light);
  border-left: 4px solid var(--blue-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  font-size: 16px;
  color: var(--blue-deep);
  font-weight: 500;
}

.how-it-works {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  font-family: 'PT Serif', serif;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.benefits {
  background: var(--blue-deep);
  color: #fff;
}

.benefits .section-title { color: #fff; }
.benefits .section-desc { color: rgba(255,255,255,0.72); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  align-items: flex-start;
  transition: background var(--transition);
}

.benefit-item:hover {
  background: rgba(255,255,255,0.11);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 129, 58, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.program {
  background: var(--bg-white);
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.program-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.module-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  align-items: flex-start;
  transition: border-color var(--transition), background var(--transition);
}

.module-item:hover {
  border-color: var(--amber);
  background: var(--amber-light);
}

.module-num {
  font-size: 22px;
  font-weight: 700;
  font-family: 'PT Serif', serif;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.module-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--blue-deep);
}

.module-item p {
  font-size: 14px;
  color: var(--text-muted);
}

.social-proof {
  background: var(--bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  font-size: 15px;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: 'PT Serif', serif;
  color: var(--blue-deep);
  flex-shrink: 0;
}

.review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
}

.review-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.faq {
  background: var(--bg-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 90px;
}

.faq-intro .section-desc {
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  font-family: 'PT Serif', serif;
  color: var(--blue-deep);
  transition: color var(--transition);
}

.faq-q:hover { color: var(--amber); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--text-muted);
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

.lead-form-section {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  color: #fff;
}

.lead-form-section .section-title { color: #fff; }
.lead-form-section .section-desc { color: rgba(255,255,255,0.75); }

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.form-promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.form-promise-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
}

.check-icon {
  width: 20px;
  height: 20px;
  background: rgba(212, 129, 58, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F0AC6A;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.form-title {
  font-size: 22px;
  font-family: 'PT Serif', serif;
  color: var(--blue-deep);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  font-family: 'PT Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(42, 80, 128, 0.12);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-consent {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.form-consent a {
  color: var(--blue-mid);
  text-decoration: underline;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 6px;
  font-size: 16px;
  padding: 16px;
}

.site-footer {
  background: #111A28;
  color: rgba(255,255,255,0.65);
  padding: 52px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-brand .logo-text { color: #fff; }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-legal strong {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 14px;
  color: var(--text);
  flex: 1;
}

.cookie-text a {
  color: var(--blue-mid);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  font-family: 'PT Sans', sans-serif;
}

.btn-cookie-accept:hover { background: var(--amber-hover); }

.btn-cookie-decline {
  background: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'PT Sans', sans-serif;
}

.btn-cookie-decline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.page-hero {
  background: var(--blue-deep);
  padding: 100px 0 52px;
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
}

.legal-content {
  background: var(--bg-white);
  padding: 64px 0 80px;
}

.legal-body {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}

.legal-body h2 {
  font-size: 22px;
  margin: 36px 0 14px;
  color: var(--blue-deep);
}

.legal-body h3 {
  font-size: 18px;
  margin: 24px 0 10px;
}

.legal-body p {
  margin-bottom: 14px;
}

.legal-body ul, .legal-body ol {
  margin: 12px 0 16px 24px;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--blue-mid);
  text-decoration: underline;
}

.legal-body .legal-details {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 15px;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 40px 24px;
}

.success-card {
  background: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #EBF8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.success-card h1 {
  font-size: 30px;
  color: var(--blue-deep);
  margin-bottom: 16px;
}

.success-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-card .btn-primary {
  width: 100%;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root { --section-pad: 60px 0; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }

  .ps-grid { grid-template-columns: 1fr; }
  .ps-image { order: -1; }

  .steps-grid { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }

  .program-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; margin-bottom: 32px; }

  .form-wrap { grid-template-columns: 1fr; }
  .form-left { order: -1; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { text-align: left; }
}

@media (max-width: 600px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }

  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 16px;
    z-index: 99;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }

  .success-card { padding: 36px 24px; }
}
