* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --purple: #7d5ee8;
  --purple-dark: #6a4ed4;
  --purple-light: #f0ecff;
  --white: #ffffff;
  --offwhite: #f8f8fc;
  --text: #1a1a2e;
  --gray: #666680;
  --card-bg: #ffffff;
  --border: #e0daf7;
}
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: 'Arial', sans-serif; line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 84px;
  box-shadow: 0 2px 12px rgba(125,94,232,0.08);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 58px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 1rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }

/* ── BUTTONS ── */
.btn-purple {
  background: var(--purple); color: #fff;
  padding: 0.7rem 1.6rem; border-radius: 6px;
  font-weight: 900; font-size: 0.95rem; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s; border: none; cursor: pointer;
  display: inline-block;
}
.btn-purple:hover { background: var(--purple-dark); }
.btn-outline {
  border: 2px solid var(--purple); color: var(--purple);
  padding: 0.75rem 2rem; border-radius: 6px;
  font-weight: 900; font-size: 0.85rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-purple-solid {
  background: var(--purple); color: #fff;
  padding: 1rem 2.5rem; border-radius: 6px;
  font-weight: 900; font-size: 0.9rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.btn-purple-solid:hover { background: var(--purple-dark); }
.btn-hero-outline {
  border: 2px dashed var(--purple); color: var(--text);
  padding: 1rem 2.5rem; border-radius: 40px;
  font-weight: 900; font-size: 0.9rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: all 0.2s;
  background: transparent; cursor: pointer;
}
.btn-hero-outline:hover { background: var(--purple); color: #fff; border-style: solid; }

/* ── SECTIONS ── */
section { padding: 90px 5%; }
.section-label {
  font-size: 0.75rem; letter-spacing: 3px; color: var(--purple);
  text-transform: uppercase; margin-bottom: 1rem; font-weight: 700;
}
h1, h2, h3 { text-transform: uppercase; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding-top: 120px;
  background: #fff;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 60% 40%, rgba(125,94,232,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 80% 60% at 20% 80%, rgba(125,94,232,0.05) 0%, transparent 60%);
  pointer-events: none;
}
#hero .section-label { color: var(--gray); font-size: 1.1rem; position: relative; }
#hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: 2px; color: var(--text); position: relative;
}
#hero h1 span { color: var(--purple); }
#hero .hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--text); margin: 1.5rem 0 2.5rem;
  max-width: 700px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; position: relative;
}
#hero .hero-sub span { color: var(--purple); }

/* ── AI SKYROCKET ── */
#ai-sales { background: var(--offwhite); text-align: center; }
#ai-sales h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 3rem; color: var(--text); }
#ai-sales h2 span { color: var(--purple); }
.cards-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; margin-bottom: 3rem;
}
.card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 4px solid var(--purple);
  padding: 2rem 1.5rem; border-radius: 8px; text-align: left;
  box-shadow: 0 4px 20px rgba(125,94,232,0.08);
}
.card h3 { font-size: 1rem; letter-spacing: 1px; margin-bottom: 1rem; color: var(--purple); }
.card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ── CALCULATOR ── */
#calculator { background: var(--offwhite); text-align: center; }
#calculator h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 900; margin-bottom: 0.5rem; color: var(--text); }
#calculator h2 span { color: var(--purple); }
#calculator .subtitle { color: var(--text); font-size: 0.78rem; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; margin-bottom: 3rem; }
.calc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; max-width: 820px; margin: 0 auto;
}
.calc-card {
  background: linear-gradient(135deg, #7b6fe0 0%, #9c5fe8 100%);
  border-radius: 16px; padding: 2.5rem 2rem 2rem;
  text-align: left; color: #fff;
}
.calc-card-label {
  font-size: 0.78rem; font-weight: 900; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem; line-height: 1.4;
}
.calc-card-value {
  font-size: 2rem; font-weight: 900; color: #fff;
  text-align: center; margin-top: 0.5rem;
}
.calc-result-card {
  background: linear-gradient(135deg, #7b6fe0 0%, #9c5fe8 100%);
  border-radius: 16px; padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; color: #fff;
}
.calc-result-card .result-label {
  font-size: 0.85rem; font-weight: 900; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.calc-result-card .result-amount {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #fff;
}
.calc-slider { width: 100%; -webkit-appearance: none; appearance: none;
  height: 5px; border-radius: 3px; outline: none; cursor: pointer;
  background: rgba(255,255,255,0.4);
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: #1a1a2e; cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.calc-slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #1a1a2e; cursor: pointer; border: none;
}
@media (max-width: 600px) { .calc-grid { grid-template-columns: 1fr; } }

/* ── HOW IT WORKS ── */
#how-it-works { background: var(--white); text-align: center; }
#how-it-works h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 900; margin-bottom: 3.5rem; color: var(--text); }
#how-it-works h2 span { color: var(--purple); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; margin-bottom: 3rem;
}
.step {
  background: var(--purple-light); border: 1px solid var(--border);
  border-radius: 10px; padding: 2.5rem 1.5rem;
}
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--purple); color: #fff;
  font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.step h3 { font-size: 0.9rem; letter-spacing: 1.5px; line-height: 1.5; color: var(--text); }

/* ── NEVER MISS ── */
#never-miss { background: var(--offwhite); text-align: center; padding: 80px 5%; }
#never-miss h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900; color: var(--text);
  line-height: 1.1; margin-bottom: 2rem;
}
#never-miss h2 span { color: var(--purple); }

/* ── INDUSTRIES ── */
#industries { background: var(--offwhite); text-align: center; }
#industries h2 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
  margin-bottom: 3.5rem; color: var(--text); line-height: 1.15;
}
#industries h2 span { color: var(--purple); }
.industry-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem 1.5rem; max-width: 900px; margin: 0 auto;
}
@media (max-width: 700px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
.industry-item { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.industry-icon { width: 72px; height: 72px; color: var(--purple); }
.industry-item span {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text); line-height: 1.4; text-align: center;
}

/* ── FEATURES CHECKLIST ── */
#features { background: var(--offwhite); text-align: center; }
#features .intro { color: var(--gray); margin-bottom: 0.75rem; font-size: 1rem; font-family: 'Georgia', serif; font-style: italic; letter-spacing: 0.5px; }
#features h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; margin-bottom: 1rem; color: var(--text); line-height: 1.1; letter-spacing: -0.5px; }
#features h2 span { color: var(--purple); }
#features .sub { color: var(--gray); font-size: 1.1rem; margin-bottom: 3rem; font-family: 'Georgia', serif; font-style: italic; }
.checklist {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-bottom: 3rem; max-width: 1100px; margin-left: auto; margin-right: auto;
}
@media (max-width: 900px) { .checklist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .checklist { grid-template-columns: 1fr; } }
.check-item {
  display: flex; flex-direction: column; gap: 0.75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(125,94,232,0.06); align-items: center;
}
.check-icon {
  min-width: 28px; height: 28px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 900;
}
.check-item h4 { font-size: 0.95rem; letter-spacing: 1px; margin-bottom: 0.4rem; color: var(--purple); text-align: center; }
.check-item p { color: var(--gray); font-size: 0.97rem; line-height: 1.6; text-align: center; }
#features .cta { text-align: center; }

/* ── FOOTER ── */
footer {
  background: var(--text);
  border-top: 1px solid #2a2a4a;
  padding: 50px 5% 30px; text-align: center;
}
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img { height: 50px; width: auto; }
.footer-contact { color: #aaa; font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-contact a { color: #aaa; text-decoration: none; }
.footer-contact a:hover { color: var(--purple); }
.footer-links { margin-bottom: 1.5rem; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 0.85rem; margin: 0 1rem; }
.footer-links a:hover { color: var(--purple); }
.footer-copy { color: #555; font-size: 0.8rem; }

/* ── BOOK PAGE ── */
.book-hero {
  background: var(--purple-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 5% 60px;
}
.book-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; margin-bottom: 0.4rem; color: var(--text); letter-spacing: -1px; }
.book-hero h1 span { color: var(--purple); }
.book-hero h2 { font-size: clamp(1rem, 2.5vw, 1.5rem); font-weight: 900; color: var(--text); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.book-hero h2 span { color: var(--purple); }
.book-hero .scroll-arrow { font-size: 1.5rem; color: var(--purple); margin-bottom: 0; }
.book-form-section {
  background: var(--purple-light);
  display: flex; justify-content: center;
  padding: 0 5% 80px;
}
.contact-form {
  background: #fff; border-radius: 12px; padding: 2.5rem;
  width: 100%; max-width: 560px; text-align: left;
  box-shadow: 0 8px 40px rgba(125,94,232,0.15);
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block; font-size: 0.75rem; letter-spacing: 1.5px;
  color: var(--purple); text-transform: uppercase; margin-bottom: 0.4rem; font-weight: 700;
}
.form-field label .req { color: #e53e3e; margin-left: 2px; }
.form-field input, .form-field textarea {
  width: 100%; background: var(--offwhite); border: 1px solid var(--border);
  color: var(--text); padding: 0.75rem 1rem; border-radius: 6px;
  font-size: 0.95rem; outline: none; font-family: inherit; transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--purple); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

/* ── THANK YOU PAGE ── */
.thankyou-page {
  min-height: 100vh; background: var(--purple-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 5% 80px;
}
.thankyou-icon {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(125,94,232,0.35);
}
.thankyou-page h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--text); margin-bottom: 1rem; }
.thankyou-page h1 span { color: var(--purple); }
.thankyou-page p { font-size: 1.15rem; color: var(--gray); max-width: 520px; margin-bottom: 2.5rem; font-family: 'Georgia', serif; font-style: italic; }

/* ── LEGAL PAGES ── */
.page-inner { max-width: 900px; margin: 0 auto; padding: 120px 5% 80px; }
.page-inner h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 2rem; color: var(--text); }
.page-inner h2 { font-size: 1.1rem; color: var(--purple); margin: 2rem 0 0.75rem; letter-spacing: 1px; text-transform: uppercase; }
.page-inner p, .page-inner li { color: var(--gray); line-height: 1.8; font-size: 0.95rem; margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) { .nav-links { gap: 1rem; } .nav-links a { font-size: 0.85rem; } }
@media (max-width: 560px) { nav { padding: 0 4%; } .nav-links a:not(.btn-purple) { display: none; } }
