:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --text: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --primary: #2f5bea;
  --primary-dark: #1f46c7;
  --accent: #2f5bea;
  --success: #16a34a;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
  --max: 1180px;
  --mobile-nav-offset: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Merriweather, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

html[lang="zh"] body {
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

body.content-protected main,
body.content-protected .footer {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

body.content-protected input,
body.content-protected textarea,
body.content-protected label,
body.content-protected button,
body.content-protected a,
body.content-protected summary,
body.content-protected .skip-link {
  -webkit-user-select: auto;
  user-select: auto;
}

body.content-protected img {
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 0;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.4px;
  white-space: nowrap;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(47, 91, 234, 0.1));
  transition: all 0.3s ease;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 4px 8px rgba(47, 91, 234, 0.2));
}

.logo .accent {
  color: var(--accent);
  margin-left: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}

nav a {
  font-size: 16px;
  font-weight: 700;
  color: #1d2939;
}

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

.language-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: #1d2939;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.language-trigger:hover,
.language-menu.is-open .language-trigger {
  color: var(--primary);
  border-color: rgba(47, 91, 234, 0.28);
  box-shadow: 0 12px 24px rgba(47, 91, 234, 0.12);
}

.language-trigger svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-trigger-text {
  letter-spacing: 0.06em;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.18);
  backdrop-filter: blur(12px);
  z-index: 30;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  color: #1d2939;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-option:hover,
.language-option.active {
  background: #eef4ff;
  color: var(--primary);
}

.language-current {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(47, 91, 234, 0.22);
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-contact:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.mobile-contact {
  display: none;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(47, 91, 234, 0.22);
}

.btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

a:focus-visible, .btn:focus-visible, button:focus-visible {
  outline: 3px solid rgba(47,91,234,0.18);
  outline-offset: 3px;
  border-radius: 8px;
}

.btn.light {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn.light:hover {
  background: #f8fafc;
  border-color: #d0d5dd;
}

.hero {
  padding: 90px 0 70px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(47, 91, 234, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.06), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #f4f6fb 100%);
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero span {
  color: var(--primary);
}

.hero p {
  margin: 0 auto 28px;
  max-width: 760px;
  font-size: 20px;
  color: var(--muted);
}

.highlight {
  color: var(--primary);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.seo-content-section {
  padding: 44px 0 72px;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.seo-content-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.seo-content-eyebrow {
  display: flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 91, 234, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: fit-content;
  margin: 0 auto;
}

.seo-content-main h2,
.seo-content-side h3 {
  margin: 16px 0 14px;
  line-height: 1.2;
}

.seo-content-main h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.seo-content-side h3 {
  font-size: 24px;
}

.seo-content-main p,
.seo-content-side p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.seo-content-main p:last-child,
.seo-content-side p:last-child {
  margin-bottom: 0;
}

.seo-content-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.seo-content-list li {
  position: relative;
  padding-left: 24px;
  color: #344054;
  line-height: 1.7;
}

.seo-content-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}

.seo-trust-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-trust-item {
  background: linear-gradient(135deg, rgba(47, 91, 234, 0.08) 0%, rgba(47, 91, 234, 0.03) 100%);
  border: 1px solid rgba(47, 91, 234, 0.12);
  border-radius: 18px;
  padding: 20px;
}

.seo-trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.seo-trust-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.section {
  padding: 100px 0 80px;
}

.section h2 {
  text-align: center;
  margin: 0 0 40px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.methods-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.method-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.method-item.featured-method {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
}

.featured-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 91, 234, 0.12);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.9) 48%, rgba(226, 232, 240, 0.72) 100%),
    linear-gradient(180deg, rgba(47, 91, 234, 0.08), rgba(47, 91, 234, 0.02));
  padding: 40px;
  min-height: 320px;
  order: -1;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.featured-method-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(47, 91, 234, 0.16);
  max-height: 320px;
}

.method-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(47, 91, 234, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.method-icon-wrapper .icon {
  font-size: 42px;
  color: var(--primary);
}

.method-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  background: var(--surface);
  padding: 4px;
  flex-shrink: 0;
}

.method-content h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text);
}

.method-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.method-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.method-details li {
  color: #344054;
  font-size: 15px;
  padding-left: 22px;
  position: relative;
}

.method-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing {
  padding: 74px 0;
  background: linear-gradient(135deg, #f0f4fb 0%, #f8fbff 100%);
}

.pricing h2 {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.pricing-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 28px 70px rgba(47, 91, 234, 0.15);
}

.pricing-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.pricing-card h1 {
  margin: 0 0 8px;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--primary);
  font-weight: 900;
}

.pricing-card > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.pricing-card ul li {
  color: #344054;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.pricing-card ul li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
  margin-right: 12px;
  font-size: 16px;
}

.pricing-card .btn {
  align-self: flex-start;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  position: relative;
  box-shadow: 0 30px 80px rgba(47, 91, 234, 0.2);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(47, 91, 234, 0.3);
}

/* Market Framework Section */
.market-framework {
  background: linear-gradient(135deg, #f0f4fb 0%, #f8fbff 100%);
  padding: 80px 0;
}

.market-framework h2 {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.framework-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.framework-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 28px 70px rgba(47, 91, 234, 0.15);
}

.framework-icon {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 18px;
  width: fit-content;
}

.framework-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--text);
  font-weight: 800;
}

.framework-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.framework-card > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.framework-subtitle {
  margin: 0 !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 14px !important;
  color: #344054 !important;
  font-style: italic;
}

.framework-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 2px solid var(--line);
}

.stat-box {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(47, 91, 234, 0.08);
}

.stat-box h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--text);
  font-weight: 800;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
}

/* Trading Results Section */
.trading-results {
  background: linear-gradient(135deg, #f8fbff 0%, #f0f4fb 100%);
  padding: 80px 0;
}

.trading-results h2 {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.results-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 50px;
}

.results-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(47, 91, 234, 0.2);
}

.comparison-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  background: #d3d3d3;
  min-height: 450px;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.results-explanation h3 {
  margin: 0 0 28px;
  font-size: 28px;
  color: var(--text);
  line-height: 1.2;
}

.result-box {
  background: var(--surface);
  border-left: 4px solid #dc2626;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.08);
}

.result-box h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.result-box h4 i {
  font-size: 20px;
}

.result-box p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.result-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-box li {
  color: #344054;
  font-size: 14px;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.result-box li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 900;
  font-size: 16px;
}

.result-box.success {
  border-left-color: var(--success);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08);
}

.result-box.success h4 {
  color: var(--success);
}

.result-box.success h4 i {
  font-size: 20px;
}

.result-box.success li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
  font-size: 16px;
}

.insight-box {
  background: linear-gradient(135deg, rgba(47, 91, 234, 0.08) 0%, rgba(47, 91, 234, 0.04) 100%);
  border: 1px solid rgba(47, 91, 234, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.insight-box h5 {
  margin: 0 0 12px;
  font-size: 17px;
  color: var(--primary);
  font-weight: 800;
}

.insight-box p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.insight-box strong {
  color: var(--text);
  font-weight: 700;
}

.faq-section {
  background:
    radial-gradient(circle at top left, rgba(47, 91, 234, 0.1), transparent 26%),
    radial-gradient(circle at bottom right, rgba(22, 163, 74, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border-top: 1px solid rgba(47, 91, 234, 0.08);
  border-bottom: 1px solid rgba(47, 91, 234, 0.08);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 760px);
  gap: 36px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  justify-content: center;
}

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

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(47, 91, 234, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.faq-intro-panel h2 {
  margin: 18px 0 14px;
  text-align: left;
}

.faq-intro {
  margin: 0 0 26px;
  max-width: none;
  text-align: left;
}

.faq-support-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 91, 234, 0.14);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(12px);
}

.faq-support-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.faq-support-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(47, 91, 234, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(16, 24, 40, 0.1);
}

.faq-item[open] {
  border-color: rgba(47, 91, 234, 0.28);
  box-shadow: 0 30px 70px rgba(47, 91, 234, 0.12);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 30px;
  color: var(--text);
  position: relative;
  padding-right: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: var(--primary);
  background: rgba(47, 91, 234, 0.1);
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--primary);
  color: #fff;
}

.faq-number {
  flex: 0 0 auto;
  min-width: 52px;
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(47, 91, 234, 0.14) 0%, rgba(47, 91, 234, 0.06) 100%);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-align: center;
}

.faq-question {
  display: block;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  padding: 0 30px 28px 100px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.faq-item p a {
  color: var(--primary);
  font-weight: 700;
}

.vip-details {
  padding: 80px 0;
  background: linear-gradient(180deg, #eef3ff 0%, #f7f9fd 100%);
  border-top: 1px solid #dbe5ff;
  border-bottom: 1px solid #dbe5ff;
}

.vip-details h2 {
  text-align: center;
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.vip-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.vip-grid > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.vip-grid h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.15;
}

.vip-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.vip-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.vip-grid ul li {
  color: #344054;
  font-size: 17px;
}

.vip-grid ul li::before {
  content: "▪";
  color: var(--primary);
  font-weight: 900;
  margin-right: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #f8fbff 0%, #f0f4fb 100%);
  padding: 100px 0 80px;
}

.why-choose-us h2 {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.section-intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 800px;
  margin: 20px auto 50px;
  line-height: 1.8;
  text-align: center;
}

.subsection-title {
  text-align: center;
  font-size: 32px;
  margin: 48px 0 36px;
  color: var(--text);
  line-height: 1.2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(47, 91, 234, 0.12);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 16px;
}

.benefit-card h4 {
  margin: 16px 0 12px;
  font-size: 20px;
  color: var(--text);
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.audience-proof-section {
  margin: 18px 0 50px;
}

.audience-proof-intro {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.audience-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.audience-proof-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  display: block;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.audience-proof-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 28px 70px rgba(47, 91, 234, 0.15);
}

.audience-proof-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 26px;
  box-shadow: 0 16px 30px rgba(47, 91, 234, 0.2);
}

.audience-proof-icon-image {
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.audience-proof-icon-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.audience-proof-platform,
.audience-proof-count,
.audience-proof-copy {
  margin: 0;
}

.audience-proof-platform {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.audience-proof-count {
  margin-top: 10px;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
}

.audience-proof-copy {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.experience-section {
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 50px 0;
  box-shadow: 0 20px 50px rgba(47, 91, 234, 0.1);
}

.experience-section h3 {
  margin-top: 0;
}

.experience-section p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.8;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 40px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
}

.comparison-table tbody tr:hover {
  background: #f8fbff;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 700;
  color: var(--primary);
  min-width: 180px;
}

/* What You Get Section */
.what-you-get {
  background: var(--bg);
  padding: 100px 0 80px;
}

.what-you-get h2 {
  text-align: center;
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 42px;
  transition: grid-template-columns 0.3s ease;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 24px 60px rgba(47, 91, 234, 0.15);
}

.feature-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
  width: fit-content;
}

.feature-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  color: var(--text);
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  flex-grow: 1;
}

/* VIP Channel Features Section */
.vip {
  background: linear-gradient(135deg, #f0f4fb 0%, #f8fbff 100%);
  padding: 100px 0 80px;
}

.vip h2 {
  text-align: center;
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.vip-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.vip-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.vip-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 24px 60px rgba(47, 91, 234, 0.15);
}

.vip-icon {
  font-size: 48px;
  color: var(--success);
  margin-bottom: 20px;
  width: fit-content;
}

.vip-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  color: var(--text);
  line-height: 1.3;
}

.vip-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  flex-grow: 1;
}

/* Markets Section */
.markets {
  background: var(--bg);
}

.markets h2 {
  text-align: center;
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.market-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.market-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 24px 60px rgba(47, 91, 234, 0.15);
}

.market-icon {
  font-size: 48px;
  color: var(--primary);
  margin: 0 auto 20px;
}

.market-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  color: var(--text);
  line-height: 1.3;
}

.market-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  flex-grow: 1;
}

.pricing-links {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pricing-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(47, 91, 234, 0.2);
  transition: 0.2s ease;
}

.pricing-links a:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* About & Contact Pages */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #f4f6fb 100%);
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  margin: 0 0 16px;
}

.about-header .section-intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-lead-card {
  padding: 28px;
  background: linear-gradient(135deg, rgba(47, 91, 234, 0.1) 0%, rgba(47, 91, 234, 0.04) 100%);
  border-radius: 20px;
  border: 1px solid rgba(47, 91, 234, 0.14);
  box-shadow: 0 14px 36px rgba(47, 91, 234, 0.08);
}

.about-lead-eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 91, 234, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.about-lead-card p {
  margin: 14px 0 0;
  color: #344054;
  line-height: 1.85;
  font-size: 18px;
}

.about-block {
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
}

.about-block:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(47, 91, 234, 0.12);
  transform: translateY(-2px);
}

.about-block h3 {
  font-size: 22px;
  color: var(--text);
  margin: 0 0 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-block h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--primary);
  border-radius: 2px;
}

.about-block p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 12px;
  font-size: 15px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #344054;
  font-size: 15px;
  transition: all 0.2s ease;
}

.about-list li:hover {
  padding-left: 32px;
  color: var(--primary);
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
  font-size: 18px;
}

.about-quote-block {
  padding: 28px;
  background: #101828;
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(16, 24, 40, 0.18);
}

.about-quote-block p {
  margin: 0 0 14px;
  color: rgba(248, 250, 252, 0.88);
  line-height: 1.85;
  font-size: 17px;
}

.about-quote-block p:last-child {
  margin-bottom: 0;
}

.about-process-note {
  margin-top: -8px;
  font-size: 18px;
  color: var(--primary);
  font-weight: 800;
}

.about-stats-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: sticky;
  top: 100px;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(47, 91, 234, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(47, 91, 234, 0.15);
  background: linear-gradient(135deg, rgba(47, 91, 234, 0.02) 0%, transparent 100%);
}

.stat-icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(47, 91, 234, 0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin: 4px 0 2px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

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

.contact-section {
  padding: 80px 0;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f6fb 100%);
}

.thank-you-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.thank-you-eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.thank-you-card h1 {
  margin: 16px 0 14px;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
}

.thank-you-card p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.thank-you-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.not-found-section {
  min-height: 70vh;
}

.not-found-card {
  max-width: 760px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.form {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.7;
  border: 1px solid transparent;
}

.form-status.success {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.18);
  color: #166534;
}

.form-status.error {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.18);
  color: #b42318;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 91, 234, 0.1);
}

.captcha-group {
  display: flex;
  justify-content: flex-start;
}

.captcha-group .cf-turnstile {
  min-height: 65px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(47, 91, 234, 0.1);
}

.info-icon {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 16px;
}

.info-icon-img {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--text);
}

.info-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.info-card a {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  transition: 0.3s ease;
}

.info-card a:hover {
  color: var(--primary-dark);
}

.legal-section {
  padding: 84px 0;
  background:
    radial-gradient(circle at top left, rgba(47, 91, 234, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f4f6fb 100%);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.legal-intro-card,
.legal-summary-card,
.legal-content-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.08);
}

.legal-intro-card {
  padding: 38px;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 91, 234, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.legal-intro-card h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.05;
}

.legal-intro-card p {
  margin: 0 0 14px;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.legal-meta-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.legal-meta-item {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(47, 91, 234, 0.06), rgba(47, 91, 234, 0.02));
  border: 1px solid rgba(47, 91, 234, 0.12);
}

.legal-meta-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.legal-meta-item strong,
.legal-meta-item a {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.legal-meta-item a:hover {
  color: var(--primary);
}

.legal-summary-card {
  position: sticky;
  top: 110px;
  padding: 30px;
}

.legal-summary-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.legal-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.legal-summary-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-summary-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(47, 91, 234, 0.12);
}

.legal-content-card {
  grid-column: 1 / 2;
  padding: 20px;
}

.legal-clause-block {
  padding: 24px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.legal-clause-block:last-child {
  border-bottom: none;
}

.legal-clause-block h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.35;
}

.legal-clause-block p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.legal-clause-block p:last-child {
  margin-bottom: 0;
}

.footer {
  padding: 72px 0 0;
  background:
    radial-gradient(circle at top left, rgba(47, 91, 234, 0.12), transparent 26%),
    linear-gradient(180deg, #0a0e27 0%, #141829 100%);
  color: #e0e7ff;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding: 34px 0 54px;
  align-items: start;
}

.footer-section h3,
.footer-section h4 {
  margin: 0 0 16px;
  font-weight: 800;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h3::after,
.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 114px;
  max-width: 100%;
  height: auto;
  margin: 0 0 18px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.footer-about p {
  color: #a5b4fc;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 18px;
  max-width: 430px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(99, 102, 241, 0.14);
  border-radius: 50%;
  color: #c7d2fe;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 14px 28px rgba(47, 91, 234, 0.26);
}

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

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #a5b4fc;
  font-size: 15px;
  transition: all 0.2s ease;
  position: relative;
}

.footer-links span {
  color: rgba(165, 180, 252, 0.72);
  font-size: 15px;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: -14px;
}

.footer-empty-state {
  min-height: 190px;
  border: 1px dashed rgba(165, 180, 252, 0.22);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
}

.footer-empty-state p {
  margin: 0;
  color: #8b94c7;
  font-size: 15px;
  line-height: 1.8;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
  margin: 0;
}

.footer-trust {
  margin-top: 28px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 18px;
  padding: 24px;
  background: rgba(17, 24, 39, 0.35);
}

.footer-trust h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 17px;
}

.footer-trust p {
  margin: 0;
  color: #a5b4fc;
  font-size: 14px;
  line-height: 1.7;
}

.footer-trust-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-trust-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #c7d2fe;
  font-size: 14px;
}

.footer-trust-list li span {
  color: #fff;
  font-weight: 700;
}

.footer-trust-list li a {
  color: #a5b4fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-trust-list li a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 40px 0;
  text-align: center;
}

.footer-disclaimer {
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 22px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-disclaimer p {
  margin: 0 0 12px;
  color: #a5b4fc;
  font-size: 14px;
  line-height: 1.75;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer strong {
  color: #fff;
  font-weight: 700;
}

.footer-meta p {
  margin: 0;
  color: #8b8fb8;
  font-size: 15px;
  line-height: 1.8;
}

.footer-meta-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  font-size: 12px;
}

.footer-meta-links a {
  color: #a5b4fc;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.footer-meta-links a + a::before {
  content: "|";
  color: rgba(165, 180, 252, 0.45);
  margin-right: 10px;
}

.footer .disclaimer {
  font-size: 13px !important;
  color: #666 !important;
  margin: 14px 0 !important;
  line-height: 1.6;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1080px) {
  .pricing-grid,
  .vip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .audience-proof-grid {
    grid-template-columns: repeat(2, minmax(260px, 320px));
    justify-content: center;
  }

  .audience-proof-grid .audience-proof-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 320px);
    justify-self: center;
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 14px));
    justify-self: center;
  }

  .framework-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .framework-grid .framework-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 14px));
    justify-self: center;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    justify-content: center;
  }

  nav,
  .cta-buttons {
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(240px, 320px));
    justify-content: center;
    gap: 36px;
  }

  .footer-section,
  .footer-about {
    text-align: center;
  }

  .footer-section h3::after,
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-about p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social,
  .footer-links {
    justify-content: center;
    align-items: center;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-empty-state {
    text-align: center;
    justify-content: center;
  }

  .footer-disclaimer {
    text-align: center;
  }

  .footer-trust {
    text-align: center;
  }

  .footer-trust-list li {
    justify-content: center;
  }

  .footer-meta-links {
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
}

@media (max-width: 860px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 140;
  }

  body {
    padding-top: 98px;
  }

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

  .pricing-card {
    align-items: center;
    text-align: center;
  }

  .pricing-card ul {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card ul li {
    text-align: left;
  }

  .pricing-card .btn {
    align-self: center;
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .nav {
    min-height: 74px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
  }

  .logo {
    width: auto;
    text-align: left;
    font-size: 24px;
    justify-content: flex-start;
    flex: 0 1 auto;
  }

  .logo-img {
    height: 56px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    position: relative;
    z-index: 121;
  }

  nav {
    position: fixed;
    top: calc(var(--mobile-nav-offset) + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    max-height: calc(100vh - var(--mobile-nav-offset) - 28px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.16);
    z-index: 120;
  }

  nav.active {
    display: flex;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    text-align: center;
    background: #f8fafc;
  }

  .btn-contact {
    display: none;
  }

  .mobile-contact {
    display: inline-flex;
    width: 100%;
    max-width: none;
    margin-top: 6px;
    background: var(--primary);
    color: #fff;
    justify-content: center;
  }

  nav a {
    font-size: 15px;
  }

  .language-menu {
    width: 100%;
  }

  .language-trigger {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    background: #f8fafc;
  }

  .language-dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    background: #ffffff;
  }

  .hero {
    padding: 70px 0 54px;
  }

  .hero p {
    font-size: 18px;
  }

  .seo-content-grid,
  .seo-trust-grid {
    grid-template-columns: 1fr;
  }

  .seo-content-card {
    padding: 24px;
  }

  .seo-content-main {
    text-align: center;
  }

  .seo-content-side,
  .seo-trust-item {
    text-align: center;
  }

  .seo-content-eyebrow {
    display: flex;
    width: fit-content;
    margin: 0 auto;
  }

  .seo-content-list {
    justify-items: center;
  }

  .seo-content-list li {
    width: fit-content;
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .seo-content-list li::before {
    position: static;
    display: inline-block;
    margin-right: 10px;
  }

  .seo-content-main h2 {
    font-size: 30px;
  }

  .seo-content-side h3 {
    font-size: 22px;
  }

  .method-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .method-item.featured-method {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .featured-image {
    order: 0;
    min-height: 280px;
    padding: 18px;
    border-radius: 18px;
  }

  .featured-method-img {
    max-height: 300px;
    border-radius: 16px;
  }

  .method-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .method-icon-wrapper .icon {
    font-size: 32px;
  }

  .method-content h3 {
    font-size: 20px;
  }

  .method-content p {
    font-size: 15px;
  }

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card {
    padding: 24px;
  }

  .vip-features-grid {
    grid-template-columns: 1fr;
  }

  .vip-card {
    text-align: center;
    align-items: center;
  }

  .vip-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .framework-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .framework-grid .framework-card:last-child {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .framework-card {
    padding: 24px;
  }

  .stat-box {
    padding: 24px;
  }

  .framework-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
    padding-top: 40px;
  }

  .results-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .results-image {
    order: 2;
  }

  .results-explanation {
    order: 1;
  }

  .results-explanation h3 {
    font-size: 24px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-intro-panel {
    position: static;
  }

  .faq-intro-panel h2,
  .faq-intro {
    text-align: center;
  }

  .faq-eyebrow {
    display: flex;
    width: fit-content;
    margin: 0 auto;
  }

  .faq-support-card {
    padding: 22px;
    text-align: center;
  }

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

  .faq-item summary {
    padding: 20px 22px;
    padding-right: 72px;
    gap: 14px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-item p {
    padding: 0 22px 22px 88px;
  }

  .result-box h4 {
    font-size: 16px;
  }

  .subsection-title {
    font-size: 26px;
    margin: 36px 0 24px;
  }

  .audience-proof-count {
    font-size: 26px;
  }

  .experience-section {
    padding: 28px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
    font-size: 13px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: static;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary-card {
    position: static;
    order: 2;
  }

  .legal-content-card {
    grid-column: auto;
  }

  .legal-meta-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-empty-state {
    min-height: 140px;
  }
}

@media (max-width: 640px) {
  .thank-you-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .legal-intro-card,
  .legal-summary-card,
  .legal-content-card {
    border-radius: 22px;
  }

  .legal-intro-card {
    padding: 28px 22px;
  }

  .legal-intro-card h1 {
    font-size: 34px;
  }

  .legal-clause-block {
    padding: 20px 8px;
  }

  .thank-you-card p {
    font-size: 16px;
  }

  .seo-content-section {
    padding: 28px 0 56px;
  }

  .seo-content-card {
    padding: 20px;
    border-radius: 16px;
  }

  .seo-content-main h2 {
    font-size: 26px;
  }

  .comparison-img {
    min-height: 350px;
  }

  .results-content {
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-proof-grid {
    grid-template-columns: 1fr;
  }

  .audience-proof-grid .audience-proof-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .feature-icon {
    font-size: 40px;
  }

  .what-you-get {
    padding: 60px 0 50px;
  }

  .what-you-get h2 {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 16px;
  }

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

  .vip-features-grid {
    grid-template-columns: 1fr;
  }

  .vip-card {
    text-align: center;
    align-items: center;
  }

  .vip-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0;
  }

  .footer-section,
  .footer-about {
    text-align: center;
    align-items: center;
  }

  .footer-section h4 {
    font-size: 14px;
  }

  .footer-section h3::after,
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-section {
    padding-bottom: 10px;
  }

  .footer-about p {
    max-width: none;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-empty-state {
    min-height: auto;
    padding: 18px;
    text-align: center;
    justify-content: center;
  }

  .footer-disclaimer {
    padding: 16px;
  }

  .footer-disclaimer p {
    font-size: 12px;
  }

  .footer-meta p {
    font-size: 14px;
  }

  .footer-meta-links {
    display: flex;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .trading-results {
    padding: 60px 0;
  }

  .comparison-img {
    min-height: 280px;
    border-radius: 8px;
  }

  .results-image {
    border-radius: 8px;
  }

  .results-explanation h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .result-box {
    padding: 16px;
    margin-bottom: 16px;
  }

  .result-box h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .result-box ul {
    margin: 8px 0 0;
    padding-left: 20px;
  }

  .result-box li {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .insight-box {
    padding: 16px;
    font-size: 13px;
  }

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

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    padding: 18px;
    padding-right: 62px;
    gap: 12px;
  }

  .faq-item summary::after {
    right: 18px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .faq-number {
    min-width: 44px;
    font-size: 12px;
    padding: 7px 8px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-item p {
    padding: 0 18px 18px 18px;
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 16px;
    border-radius: 8px;
  }

  .feature-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .what-you-get {
    padding: 50px 0 40px;
  }

  .what-you-get h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  nav {
    top: calc(100% + 10px);
    padding: 14px;
  }

  .nav {
    min-height: 68px;
  }

  .logo-img {
    height: 50px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  nav a {
    font-size: 14px;
    padding: 11px 12px;
  }
}
