:root {
  --purple: #6542FF;
  --navy: #1D3557;
  --bg-light: #ECECEC;
  --bg-lighter: #E5E7EB;
  --teal: #A8DADC;
  --text: #2D2D2D;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', 'Roboto', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.narrow { max-width: 760px; }
.center { text-align: center; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 400; margin: 0 0 16px; }
h2.eyebrow { font-size: 14px; letter-spacing: 2px; font-weight: 700; color: var(--purple); margin-bottom: 12px; }
h2.eyebrow.center { text-align: center; }
.section-sub { font-size: 28px; font-family: var(--font-head); margin-bottom: 40px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10000px;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  font-size: 16px;
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--purple);
}
.btn-dark {
  background: var(--navy);
  color: #F9FAFB;
}
.btn.full { width: 100%; text-align: center; border: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img { height: 47px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 10000px;
  padding: 6px 14px;
}
.lang-switch:hover { border-color: var(--purple); color: var(--purple); }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  min-width: 100%;
  height: 100vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-textbox {
  background: rgba(30,30,40,0.55);
  color: #fff;
  padding: 40px;
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-textbox h1 {
  font-size: 48px;
  line-height: 1.15;
  color: #fff;
}
.hero-textbox h1 strong { font-weight: 700; }
.hero-sub { font-size: 18px; margin: 0; }
.hero-sub strong { font-weight: 700; }

/* Sections */
.section { padding: 72px 0; }
.who-we-are { background: var(--bg-light); }
.who-we-are p { font-size: 17px; margin-bottom: 18px; }
.how-it-works { background: #fff; }

.steps-grid, .why-grid, .examples-grid {
  display: grid;
  gap: 32px;
  margin-top: 24px;
}
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.step-card { text-align: center; }
.step-card img { margin: 0 auto 16px; border-radius: 12px; }
.step-card h3 { font-size: 20px; }

.why-us { background: var(--bg-light); }
.why-grid { grid-template-columns: repeat(4, 1fr); text-align: left; }
.why-card i { font-size: 28px; color: var(--purple); margin-bottom: 14px; }
.why-card h3 { font-size: 18px; }
.why-card p { font-size: 15px; color: #444; }

.examples { background: #fff; }
.examples-grid { grid-template-columns: repeat(2, 1fr); text-align: left; }
.example-card { background: var(--bg-lighter); border-radius: 12px; overflow: hidden; }
.example-card img { width: 100%; height: 260px; object-fit: cover; }
.example-body { padding: 24px; }
.example-tag { display: inline-block; background: var(--purple); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 10000px; margin-bottom: 10px; }
.example-body h3 { font-size: 22px; }
.example-body ul { list-style: none; padding: 0; margin: 0; font-size: 15px; }
.example-body li { padding: 4px 0; border-bottom: 1px dashed #ccc; }
.example-body li:last-child { border-bottom: none; }

.faq { background: var(--bg-lighter); }
.faq-list details {
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
.faq-list summary { font-weight: 700; cursor: pointer; font-family: var(--font-head); font-size: 16px; }
.faq-list p { margin: 12px 0 0; color: #444; font-size: 15px; }

.vip-cta { background: var(--teal); }
.vip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.vip-copy h2 { font-size: 32px; }
.vip-signature { font-weight: 700; margin-top: 24px; }
.vip-phone { font-size: 20px; font-weight: 700; color: var(--navy); }
.vip-phone i { margin-right: 8px; }

.vip-form {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vip-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
}
.vip-form input, .vip-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.vip-form textarea { min-height: 90px; resize: vertical; }
.form-disclaimer { font-size: 12px; color: #666; margin: 0; }
.consent { flex-direction: row !important; align-items: center; font-weight: 400 !important; font-size: 13px; }
.consent input { width: auto; }
.form-success { color: #1a7f37; font-weight: 700; text-align: center; }

.site-footer {
  background: #111;
  color: #ccc;
  padding: 28px 0;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .examples-grid { grid-template-columns: 1fr; }
  .vip-grid { grid-template-columns: 1fr; }
  .hero-textbox h1 { font-size: 32px; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .header-inner .btn { padding: 10px 18px; font-size: 14px; }
}
