/* ==========================================================================
   ONTU EBOOK — MODERN SAAS DESIGN SYSTEM (OPTION 1)
   - Backgrounds: 100% Full-Width Edge-to-Edge
   - Content Containers: 1200px Centered Frame
   ========================================================================== */

:root, [data-theme="dark"] {
  --navy: #080c14;
  --navy2: #0b111e;
  --blue: #0070f3;
  --blue-light: #38bdf8;
  --violet: #7C3AED;
  --gold: #F59E0B;
  --gold2: #FBBF24;
  --green: #10b981;
  --red: #ef4444;
  
  --ink: #ffffff;
  --ink2: #cbd5e1;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.12);
  --bg: #0b111e;
  --grad: linear-gradient(135deg, #38bdf8 0%, #0070f3 60%, #7c3aed 100%);
  
  --bg-main: #060911;
  --bg-card: rgba(15, 23, 42, 0.85);
  --bg-card-hover: rgba(24, 35, 60, 0.98);
  --bg-header: rgba(6, 9, 17, 0.92);
  --bg-footer: #04060b;
  --border-card: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(56, 189, 248, 0.4);
  
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --stat-subtext: #cbd5e1;
  
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 20px 40px rgba(0, 112, 243, 0.25);
}

[data-theme="light"] {
  --navy: #f8fafc;
  --navy2: #ffffff;
  --blue: #0070f3;
  --blue-light: #0284c7;
  --violet: #6d28d9;
  --gold: #d97706;
  --gold2: #f59e0b;
  --green: #059669;
  --red: #dc2626;

  --ink: #0f172a;
  --ink2: #334155;
  --muted: #475569;
  --line: rgba(148, 163, 184, 0.35);
  --bg: #f8fafc;
  --grad: linear-gradient(135deg, #0284c7 0%, #0070f3 60%, #6d28d9 100%);

  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-header: rgba(248, 250, 252, 0.95);
  --bg-footer: #04060b;
  --border-card: rgba(148, 163, 184, 0.35);
  --border-accent: rgba(0, 112, 243, 0.4);

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --stat-subtext: #475569;

  --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 16px 36px rgba(0, 112, 243, 0.16);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-main) !important;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background-color .3s ease, color .3s ease;
  width: 100% !important;
  overflow-x: hidden;
}

a, a:hover, a:focus, a:visited {
  color: inherit;
  text-decoration: none !important;
}

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

/* Page canvas un-constrains Frappe container wrappers for edge-to-edge backgrounds */
.container,
.page-container,
.page-content,
.web-page,
main,
[id^="page-"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 100% Full-Width Section Backgrounds */
.oe-header,
nav.oe-header,
.offerbar,
.hero,
.stats,
section,
footer,
.oe-legal-footer,
.ok-footer {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  border-radius: 0 !important;
}

/* Centered 1200px Content Frame */
.wrap,
.oe-container,
.ok-container {
  max-width: 1200px !important;
  width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  box-sizing: border-box !important;
}

.serif {
  font-family: "Lora", Georgia, serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16.5px;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  border: 0;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #0070f3, #38bdf8);
  color: #ffffff !important;
  box-shadow: 0 10px 28px rgba(0, 112, 243, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 14px 34px rgba(0, 112, 243, 0.5);
  transform: translateY(-2px) scale(1.02);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.eyebrow {
  color: var(--blue-light);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12.5px;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.18;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -.02em;
}

.lead {
  font-size: 17.5px;
  color: var(--text-secondary);
  max-width: 800px;
  line-height: 1.65;
  font-weight: 500;
}

section {
  padding: 84px 0;
}

/* Ontu Sticky Header Navbar */
.oe-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-card);
}

.oe-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: nowrap;
  max-width: 1200px !important;
  width: 90% !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}

.oe-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-primary);
  text-decoration: none;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.oe-logo:hover {
  transform: scale(1.02);
}

.oe-logo-ring {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 112, 243, 0.2), rgba(56, 189, 248, 0.1));
  border: 1px solid var(--border-accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue-light);
}

.oe-logo-text {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.oe-logo-text .brand-ontu {
  color: var(--text-primary);
}

.oe-logo-text .brand-ebook {
  background: linear-gradient(135deg, #38bdf8, #0070f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}

.oe-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 22px);
  font-size: 14px;
  font-weight: 600;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
}

.oe-nav-link {
  color: var(--text-secondary);
  transition: color .2s ease, background .2s ease;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.oe-nav-link:hover, .oe-nav-link.active {
  color: var(--blue-light) !important;
  background: rgba(0, 112, 243, 0.1);
}

.oe-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile Hamburger Toggle Button */
.oe-mobile-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.oe-mobile-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

/* Mobile Slide-down Navigation Drawer */
.oe-mobile-drawer {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  padding: 24px clamp(20px, 4vw, 64px);
  z-index: 499;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.oe-mobile-drawer.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.oe-mobile-drawer .oe-nav-link {
  font-size: 16px;
  padding: 10px 16px;
  width: 100%;
}

.oe-mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-card);
}

@media(max-width: 990px) {
  .oe-nav-links, .oe-nav-actions .cta, .oe-nav-actions .oe-theme-toggle {
    display: none !important;
  }
  .oe-mobile-toggle {
    display: flex !important;
  }
}

.cta {
  background: linear-gradient(135deg, #0070f3, #38bdf8);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  transition: all .2s ease;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 112, 243, 0.3);
  white-space: nowrap;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 112, 243, 0.45);
}

/* Theme Switcher Button */
.oe-theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .25s ease;
  user-select: none;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.oe-theme-toggle:hover {
  border-color: var(--blue-light);
  transform: translateY(-1px);
}

/* Offer Bar */
.offerbar {
  background: linear-gradient(90deg, #0F2A4A 0%, #0070f3 50%, #38bdf8 100%);
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
}

.offerbar b {
  font-weight: 800;
  color: #FBBF24;
}

/* Hero */
.hero {
  background: radial-gradient(ellipse at 15% 10%, #1E3A8A 0%, #0F2A4A 45%, #0B1F38 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 14px 0 18px;
  color: #ffffff;
}

.hero h1 span {
  color: #38bdf8;
}

.hero .sub {
  font-size: 18.5px;
  color: #DBEAFE;
  max-width: 640px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero .kicker {
  color: #93C5FD;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 8px 0 22px;
  flex-wrap: wrap;
}

.price .now {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #38bdf8;
  line-height: 1;
}

.price .was {
  font-size: 24px;
  color: #93C5FD;
  text-decoration: line-through !important;
  font-weight: 500;
}

.price .save {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #FBBF24;
}

.hero .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero .micro {
  margin-top: 18px;
  font-size: 13.5px;
  color: #93C5FD;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .micro span::before {
  content: "✓ ";
  color: #38bdf8;
  font-weight: 800;
}

.bookwrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.book {
  width: min(380px, 90%);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .6), 0 0 40px rgba(0, 112, 243, 0.4);
  transform: rotate(-2.5deg);
  transition: transform .4s ease;
  background: linear-gradient(145deg, #0f172a, #020617);
  padding: 28px;
  border: 2px solid #38bdf8;
  color: #ffffff;
}

.book:hover {
  transform: rotate(0) scale(1.02);
}

.badge {
  position: absolute;
  z-index: 2;
  right: 2%;
  top: -14px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0070f3, #38bdf8);
  color: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  line-height: 1.05;
  box-shadow: 0 12px 30px rgba(0, 112, 243, .5);
  transform: rotate(8deg);
}

.badge small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
}

.badge b {
  font-size: 26px;
}

@media(max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .bookwrap {
    order: -1;
  }
  .book {
    width: min(300px, 80%);
  }
}

/* Stats Bar */
.stats {
  background: var(--navy2);
  color: var(--text-primary);
  padding: 0;
  border-bottom: 1px solid var(--border-card);
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border-card);
}

.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--border-card);
}

.stat b {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
}

.stat span {
  font-size: 13.5px;
  color: var(--stat-subtext);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

@media(max-width: 700px) {
  .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Grid Layouts */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media(max-width: 1024px) {
  .grid4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 768px) {
  .grid3, .grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 560px) {
  .grid3, .grid4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue-light);
}

.card .num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 800;
}

.card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 500;
}

.card .tag {
  font-size: 12px;
  color: var(--blue-light);
  font-weight: 800;
  margin-top: 14px;
}

.alt {
  background: var(--bg-main);
}

/* Template Strip */
.template {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 18px 16px;
  font-size: 13.5px;
  color: var(--text-secondary);
  position: relative;
  box-shadow: var(--shadow-card);
}

.step b {
  display: block;
  color: var(--text-primary);
  font-size: 14.5px;
  margin-bottom: 6px;
}

.step i {
  position: absolute;
  top: 10px;
  right: 12px;
  font-style: normal;
  color: var(--blue-light);
  font-weight: 900;
  font-size: 22px;
  opacity: .4;
}

@media(max-width: 900px) {
  .template {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Search & 50 Situations Grid */
.oe-search-box {
  position: relative;
  max-width: 640px;
  margin: 0 auto 28px;
}

.oe-search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  font-size: 15px;
  padding: 16px 20px 16px 52px;
  border-radius: 999px;
  box-sizing: border-box;
  outline: none;
  transition: all .25s ease;
  box-shadow: var(--shadow-card);
}

.oe-search-input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 24px rgba(0, 112, 243, 0.25);
}

.oe-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--muted);
}

.oe-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.oe-filter-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}

.oe-filter-pill:hover, .oe-filter-pill.active {
  background: linear-gradient(135deg, #0070f3, #38bdf8);
  color: #ffffff;
  border-color: #0070f3;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.35);
}

.oe-sit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media(max-width: 820px) {
  .oe-sit-grid {
    grid-template-columns: 1fr;
  }
}

.oe-sit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: all .25s ease;
  cursor: pointer;
}

.oe-sit-card:hover {
  transform: translateY(-3px) scale(1.005);
  border-color: var(--blue-light);
  box-shadow: var(--shadow-hover);
}

.oe-sit-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.oe-sit-num {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  background: var(--grad);
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.oe-sit-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.oe-sit-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 7px;
  background: rgba(0, 112, 243, 0.12);
  color: var(--blue-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Samples */
.samples {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}

.samples .big img, .samples .small img {
  border-radius: 14px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

.samples .small {
  display: grid;
  gap: 24px;
}

.cap {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
}

@media(max-width: 900px) {
  .samples {
    grid-template-columns: 1fr;
  }
}

/* Checks & Author */
.checks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 36px;
  margin-top: 32px;
  max-width: 960px;
}

.checks li {
  padding-left: 34px;
  position: relative;
  color: var(--text-secondary);
  font-size: 16px;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #DCFCE7;
  color: var(--green);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.checks li.no::before {
  content: "✕";
  background: #FEE2E2;
  color: var(--red);
}

@media(max-width: 700px) {
  .checks {
    grid-template-columns: 1fr;
  }
}

.author {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 860px;
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--grad);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 900;
}

@media(max-width: 600px) {
  .author {
    grid-template-columns: 1fr;
  }
}

/* Pricing Card */
.pricing {
  background: radial-gradient(ellipse at 80% 0%, #1E3A8A 0%, #0F2A4A 50%, #0B1F38 100%);
  color: #ffffff;
}

.pricecard {
  max-width: 600px;
  margin: 40px auto 0;
  background: #ffffff;
  color: #111827;
  border-radius: 24px;
  padding: 44px 36px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5);
  position: relative;
  text-align: center;
}

.pricecard .ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #38bdf8;
  color: #0F2A4A;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .1em;
  padding: 8px 22px;
  border-radius: 999px;
  text-transform: uppercase;
}

.pricecard h3 {
  font-size: 24px;
  color: #0F2A4A;
  margin: 8px 0 4px;
  font-weight: 900;
}

.pricecard .p {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  margin: 16px 0 6px;
}

.pricecard .p .now {
  font-size: 64px;
  font-weight: 900;
  color: #0070f3;
  letter-spacing: -.03em;
  line-height: 1;
}

.pricecard .p .was {
  font-size: 26px;
  color: #6B7280;
  text-decoration: line-through !important;
}

.pricecard .note {
  color: #6B7280;
  font-size: 13.5px;
  margin-bottom: 24px;
}

.pricecard ul {
  list-style: none;
  text-align: left;
  margin: 24px 0 30px;
  display: grid;
  gap: 12px;
}

.pricecard li {
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  color: #374151;
}

.pricecard li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1E9E6A;
  font-weight: 800;
  font-size: 16px;
}

.pricecard .btn {
  width: 100%;
}

.secure {
  font-size: 12px;
  color: #6B7280;
  margin-top: 16px;
}

/* FAQ */
details {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 14px;
  box-shadow: var(--shadow-card);
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

summary::after {
  content: "+";
  font-size: 22px;
  color: var(--blue-light);
}

details[open] summary::after {
  content: "–";
}

details p {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Dark Multi-Column Footer (100% Edge-to-Edge Background) */
.oe-legal-footer {
  background: #04060b !important;
  color: #94a3b8 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 60px 0 36px;
  margin-top: 60px;
  font-size: 13.5px;
  line-height: 1.65;
}

.oe-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  text-align: left;
}

@media(max-width: 820px) {
  .oe-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.oe-legal-footer .oe-logo-text .brand-ontu {
  color: #ffffff !important;
}

.oe-legal-footer .oe-logo-text .brand-ebook {
  background: linear-gradient(135deg, #38bdf8, #0070f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.oe-legal-footer .oe-footer-desc {
  color: #cbd5e1 !important;
  margin: 16px 0 18px;
  font-size: 13.5px;
  max-width: 420px;
  line-height: 1.6;
}

.oe-footer-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 13px;
}

.oe-legal-footer .oe-footer-contact a {
  color: #38bdf8 !important;
  text-decoration: none !important;
}

.oe-legal-footer .oe-footer-title {
  font-size: 15px;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 18px;
  letter-spacing: .02em;
}

.oe-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oe-legal-footer .oe-footer-menu a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  font-size: 13.5px;
  font-weight: 500;
  transition: all .2s ease;
  display: inline-block;
}

.oe-legal-footer .oe-footer-menu a:hover {
  color: #38bdf8 !important;
  transform: translateX(3px);
}

.oe-legal-footer .oe-footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px;
  padding: 22px 26px;
  text-align: left;
  margin: 32px 0 24px;
  font-size: 12px;
  color: #94a3b8 !important;
  line-height: 1.65;
}

.oe-legal-footer .oe-footer-disclaimer-box strong {
  color: #f8fafc !important;
  display: block;
  margin-bottom: 8px;
  font-size: 11.5px;
  letter-spacing: .08em;
}

.oe-legal-footer .oe-footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: #64748b !important;
}

/* Sticky Mobile CTA */
.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  background: #0F2A4A;
  color: #ffffff;
  padding: 10px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .3);
}

.sticky .p {
  font-weight: 800;
  font-size: 18px;
}

.sticky .p s {
  color: #93C5FD;
  font-weight: 500;
  font-size: 13px;
  margin-left: 6px;
}

@media(max-width: 700px) {
  .sticky {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
}

/* Modal Overlay & Checkout Form */
.oe-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.oe-modal-card {
  background: #ffffff;
  color: #111827;
  border-radius: 24px;
  max-width: 460px;
  width: 100%;
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  box-sizing: border-box;
}

.oe-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #111827;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.oe-form-group {
  margin-bottom: 18px;
  text-align: left;
}

.oe-form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.oe-form-input {
  width: 100%;
  background: #F9FAFB;
  border: 1px solid #D1D5DB;
  color: #111827;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
  transition: all .2s ease;
}

.oe-form-input:focus {
  border-color: #1D4ED8;
  box-shadow: 0 0 12px rgba(29, 78, 216, 0.25);
}

/* --- responsive fix: situation cards must never force horizontal scroll --- */
.oe-sit-grid { min-width: 0; }
.oe-sit-card { min-width: 0; }
.oe-sit-left { min-width: 0; flex: 1 1 auto; }
.oe-sit-title { min-width: 0; overflow-wrap: anywhere; }
.oe-sit-tag { flex-shrink: 0; }
@media (max-width: 560px) {
  .oe-sit-card { flex-wrap: wrap; }
}

/* review section button must be visible on the light section background */
#reviews .btn-ghost {
  background: transparent;
  color: #2563eb !important;
  border: 1.5px solid #93c5fd;
}
#reviews .btn-ghost:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: #2563eb;
}
[data-theme="dark"] #reviews .btn-ghost {
  color: #7dd3fc !important;
  border-color: rgba(125, 211, 252, 0.45);
}

/* horizontal review row scrollbar */
.oe-review-row::-webkit-scrollbar { height: 8px; }
.oe-review-row::-webkit-scrollbar-thumb { background: rgba(148, 163, 184, .45); border-radius: 4px; }
.oe-review-row::-webkit-scrollbar-track { background: transparent; }

/* --- Policy / legal pages: match landing style --- */
.oe-wrap { background: var(--bg-main, #f8fafc); min-height: 60vh; }
.oe-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.oe-page-main { padding: 40px 0 60px; }
.oe-policy-card {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-card, #e2e8f0);
  border-radius: 18px;
  padding: 40px 44px;
  box-shadow: 0 10px 30px rgba(2, 8, 23, 0.06);
}
.oe-policy-title {
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--text-primary, #0f172a);
  letter-spacing: -0.02em;
}
.oe-policy-date {
  font-size: 13px;
  color: var(--text-secondary, #64748b);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-card, #e2e8f0);
}
.oe-policy-section { margin: 0 0 26px; padding: 0; }
.oe-policy-section:last-child { margin-bottom: 0; }
.oe-policy-section h2 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--text-primary, #0f172a);
}
.oe-policy-section p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary, #475569);
  margin: 0 0 10px;
}
.oe-policy-section ul, .oe-policy-section ol { margin: 0 0 10px 20px; padding: 0; }
.oe-policy-section li { font-size: 14.5px; line-height: 1.7; color: var(--text-secondary, #475569); margin-bottom: 6px; }
.oe-policy-section a { color: #2563eb; font-weight: 600; }
@media (max-width: 640px) {
  .oe-policy-card { padding: 26px 20px; }
  .oe-policy-title { font-size: 26px; }
}
