/*
Theme Name:   Option Pilot
Theme URI:    https://optionpilot.in
Description:  Bold, modern SaaS theme for Option Pilot — automated options trading software for Indian markets.
Version:      3.0.0
Author:       Option Pilot
Text Domain:  op-theme
*/

/* ═══════════════════════════════════════════════════════════════════════
   OPTION PILOT THEME v3 — BOLD SAAS
   Inspired by: Deski / modern SaaS product sites
   Palette: Deep Indigo · Electric Green · White · Charcoal
   Typography: Sora (display) · Nunito Sans (body) · JetBrains Mono (code)
   Character: Confident, technical, conversion-focused
   ═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Nunito+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Core brand */
  --indigo:        #3a0ca3;
  --indigo-dark:   #240870;
  --indigo-light:  #560bad;
  --indigo-pale:   #f0ebff;
  --violet:        #7209b7;
  --pink:          #b5179e;

  /* Electric accent */
  --green:         #06d6a0;
  --green-dark:    #04a57d;
  --green-glow:    rgba(6,214,160,.25);

  /* Blues */
  --blue:          #4361ee;
  --blue-light:    #4cc9f0;
  --cyan:          #4cc9f0;

  /* Neutrals */
  --white:         #ffffff;
  --off-white:     #f8f7ff;
  --gray-50:       #f5f5f7;
  --gray-100:      #ebebf0;
  --gray-200:      #d8d8e8;
  --gray-300:      #b0aec8;
  --gray-400:      #8584a0;
  --gray-500:      #5d5c78;
  --gray-600:      #3e3d58;
  --gray-700:      #2b2a42;
  --gray-800:      #1a1930;
  --gray-900:      #0d0c1d;

  /* Text */
  --text-primary:   #0d0c1d;
  --text-secondary: #5d5c78;
  --text-muted:     #8584a0;
  --text-inverse:   #ffffff;

  /* Surfaces */
  --surface:        #ffffff;
  --surface-subtle: #f8f7ff;
  --surface-card:   #ffffff;

  /* Gradients */
  --grad-hero:      linear-gradient(135deg, #0d0c1d 0%, #1a1848 40%, #3a0ca3 100%);
  --grad-brand:     linear-gradient(135deg, #3a0ca3, #7209b7, #b5179e);
  --grad-green:     linear-gradient(135deg, #04a57d, #06d6a0);
  --grad-card:      linear-gradient(135deg, #f0ebff 0%, #ffffff 100%);
  --grad-section:   linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);

  /* Typography */
  --font-display:  'Sora', -apple-system, sans-serif;
  --font-body:     'Nunito Sans', -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  /* Spacing */
  --max-w:         1220px;
  --section-pad:   100px;
  --gutter:        24px;

  /* Radii */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-2xl:  36px;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs:    0 1px 4px rgba(58,12,163,.06);
  --sh-sm:    0 4px 16px rgba(58,12,163,.08), 0 1px 4px rgba(0,0,0,.04);
  --sh-md:    0 8px 32px rgba(58,12,163,.12), 0 2px 8px rgba(0,0,0,.06);
  --sh-lg:    0 16px 56px rgba(58,12,163,.15), 0 4px 16px rgba(0,0,0,.08);
  --sh-xl:    0 24px 80px rgba(58,12,163,.20), 0 8px 24px rgba(0,0,0,.10);
  --sh-green: 0 8px 32px rgba(6,214,160,.30);
  --sh-card:  0 2px 20px rgba(58,12,163,.08), 0 0 0 1px rgba(58,12,163,.06);
  --sh-float: 0 20px 60px rgba(13,12,29,.25);
}

/* ── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--indigo); text-decoration: none; transition: color .2s; }
a:hover { color: var(--violet); }

/* ── TYPOGRAPHY ────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem,   4vw,   3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw,   1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: .95rem;  font-weight: 700; }
p  { color: var(--text-secondary); line-height: 1.78; }
em { color: var(--violet); font-style: italic; }
strong { color: var(--text-primary); font-weight: 700; }
code  { font-family: var(--font-mono); background: var(--indigo-pale); color: var(--indigo); padding: 2px 7px; border-radius: var(--r-xs); font-size: .85em; }
pre   { background: var(--gray-900); color: #e2e8f0; padding: 24px; border-radius: var(--r-md); overflow-x: auto; font-family: var(--font-mono); font-size: .875rem; }
ul, ol { padding-left: 1.4em; color: var(--text-secondary); }
li { margin-bottom: .45em; }
hr { border: none; height: 1px; background: var(--gray-100); margin: 56px 0; }

/* ── LAYOUT ────────────────────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.section     { padding: var(--section-pad) 0; }
.section-sm  { padding: 64px 0; }
.section-xs  { padding: 40px 0; }
.section-lg  { padding: 128px 0; }

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

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr;            gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr);     gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr);     gap: 24px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr;          gap: 48px; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr;          gap: 48px; }

/* Section bg variants */
.bg-dark    { background: var(--gray-900); }
.bg-hero    { background: var(--grad-hero); }
.bg-subtle  { background: var(--surface-subtle); }
.bg-indigo  { background: var(--indigo-pale); }
.bg-gradient{ background: linear-gradient(180deg, var(--indigo-pale) 0%, var(--surface) 100%); }

/* ── OVERLINE / EYEBROW ─────────────────────────────────────────────── */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--violet);
  margin-bottom: 16px;
}
.overline::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--grad-brand);
  border-radius: var(--r-full);
}

.overline-green {
  color: var(--green-dark);
}
.overline-green::before {
  background: var(--grad-green);
}

.overline-white {
  color: rgba(255,255,255,.8);
}
.overline-white::before {
  background: linear-gradient(90deg, var(--green), var(--blue-light));
}

/* ── SECTION DIVIDER (wave / curve shape) ──────────────────────────── */
.wave-top, .wave-bottom { line-height: 0; }
.wave-top    { margin-bottom: -1px; }
.wave-bottom { margin-top: -1px; }

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Primary – gradient brand */
.btn-primary {
  background: var(--grad-brand);
  color: white;
  box-shadow: 0 6px 24px rgba(114,9,183,.35);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(114,9,183,.45);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.btn-primary:hover::after { opacity: 1; }

/* Green CTA */
.btn-green {
  background: var(--grad-green);
  color: #0d0c1d;
  font-weight: 800;
  box-shadow: var(--sh-green);
}
.btn-green:hover {
  color: #0d0c1d;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(6,214,160,.40);
}

/* Ghost on dark */
.btn-ghost-dark {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,.2);
  color: white;
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
}

/* Ghost on light */
.btn-ghost {
  background: transparent;
  color: var(--indigo);
  border: 2px solid var(--indigo);
}
.btn-ghost:hover {
  background: var(--indigo);
  color: white;
  transform: translateY(-2px);
}

/* Outline white */
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.1); color: white; }

/* Sizes */
.btn-xl  { padding: 18px 40px; font-size: 1.05rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; }
.btn-sm  { padding: 9px 20px;  font-size: .82rem; }
.btn-xs  { padding: 6px 14px;  font-size: .75rem; }

/* ── CARDS ──────────────────────────────────────────────────────────── */
.card {
  background: var(--surface-card);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-card);
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: rgba(58,12,163,.12);
}
.card-featured {
  background: linear-gradient(135deg, #f0ebff 0%, #fff 60%);
  border-color: rgba(114,9,183,.2);
  box-shadow: 0 8px 40px rgba(58,12,163,.12);
}
.card-dark {
  background: var(--gray-800);
  border-color: rgba(255,255,255,.08);
  color: white;
}
.card-dark p { color: rgba(255,255,255,.65); }
.card-dark:hover { border-color: rgba(6,214,160,.3); box-shadow: 0 8px 40px rgba(6,214,160,.12); }

/* ── NAVIGATION ─────────────────────────────────────────────────────── */
#op-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 0;
}
#op-header.at-top {
  background: transparent;
}
#op-header.scrolled {
  background: rgba(13,12,29,.96);
  box-shadow: 0 4px 40px rgba(0,0,0,.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
/* Always solid on inner pages */
#op-header.solid {
  background: rgba(13,12,29,.98);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}

.op-nav {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 40px;
}

/* Logo */
.op-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.op-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-brand);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(114,9,183,.4);
}
.op-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.op-logo-text span {
  display: block;
  font-size: .58rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav menu */
.op-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  padding: 0;
  margin: 0;
}
.op-nav-menu a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  border-radius: var(--r-sm);
  transition: all .2s;
  text-decoration: none;
}
.op-nav-menu a:hover,
.op-nav-menu .current-menu-item > a {
  color: white;
  background: rgba(255,255,255,.1);
}

/* Nav CTA */
.op-nav-cta { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }

/* Hamburger */
.op-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.op-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all .25s;
}
.op-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.op-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.op-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────────────── */
.op-hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px var(--gutter) 80px;
  text-align: center;
}

/* Background decorative blobs */
.op-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,9,183,.4) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.op-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,214,160,.15) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  pointer-events: none;
}

/* Grid dot texture */
.op-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.op-hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

.op-hero h1 { color: white; margin-bottom: 24px; }

.op-hero h1 .highlight {
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.op-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.op-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 72px;
}

/* Hero screenshot mockup */
.op-hero-mockup {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}
.op-hero-mockup-inner {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-float);
  border: 1px solid rgba(255,255,255,.12);
  background: var(--gray-900);
}
.op-hero-mockup-bar {
  background: rgba(255,255,255,.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.op-hero-mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.op-hero-mockup-dot:nth-child(1) { background: #ff5f57; }
.op-hero-mockup-dot:nth-child(2) { background: #febc2e; }
.op-hero-mockup-dot:nth-child(3) { background: #28c840; }
.op-hero-mockup-bar-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .5px;
}
.op-hero-mockup img {
  width: 100%;
  display: block;
}

/* Hero stats */
.op-hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  flex-wrap: wrap;
}
.op-hero-stat {
  padding: 20px 36px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.op-hero-stat:last-child { border-right: none; }
.op-hero-stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.op-hero-stat-val span { color: var(--green); }
.op-hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ── TRUSTED BY / LOGOS STRIP ───────────────────────────────────────── */
.op-logos-strip {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--surface-subtle);
  padding: 28px 0;
}
.op-logos-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-family: var(--font-display);
  margin-bottom: 20px;
  text-align: center;
}
.op-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 8px;
}
.op-broker-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-600);
  box-shadow: var(--sh-xs);
  transition: border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.op-broker-pill:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.op-broker-pill-more {
  border-style: dashed;
  color: var(--text-muted);
  border-color: var(--gray-200);
}

/* ── FEATURE SECTIONS ───────────────────────────────────────────────── */
.op-feature-row { align-items: center; gap: 72px; }
.op-feature-row + .op-feature-row { margin-top: 100px; }

.op-feature-text h2 { margin-bottom: 20px; }
.op-feature-text p  { margin-bottom: 28px; font-size: 1.05rem; }

.op-check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.op-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-secondary);
}
.op-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.op-check-icon svg { width: 12px; height: 12px; stroke: #0d0c1d; stroke-width: 3; }

/* App screenshot framing */
.op-app-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--gray-100);
  position: relative;
}
.op-app-frame-bar {
  background: var(--gray-800);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.op-app-frame-dot { width: 10px; height: 10px; border-radius: 50%; }
.op-app-frame-dot:nth-child(1) { background: #ff5f57; }
.op-app-frame-dot:nth-child(2) { background: #febc2e; }
.op-app-frame-dot:nth-child(3) { background: #28c840; }
.op-app-frame-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .7rem;
  color: rgba(255,255,255,.3);
}
.op-app-frame img { width: 100%; display: block; }

/* ── FEATURE ICON CARDS (3 col grid) ───────────────────────────────── */
.op-feat-card {
  padding: 36px 28px;
  border-radius: var(--r-xl);
  background: white;
  border: 1px solid var(--gray-100);
  box-shadow: var(--sh-card);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.op-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(114,9,183,.15);
}
.op-feat-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  position: relative;
}
.op-feat-icon-indigo   { background: var(--indigo-pale); }
.op-feat-icon-green    { background: rgba(6,214,160,.1); }
.op-feat-icon-blue     { background: rgba(67,97,238,.1); }
.op-feat-icon-pink     { background: rgba(181,23,158,.1); }
.op-feat-icon-orange   { background: rgba(255,140,0,.1); }
.op-feat-icon-cyan     { background: rgba(76,201,240,.1); }

.op-feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.op-feat-card p { font-size: .9rem; }

/* ── HOW IT WORKS / STEPS ───────────────────────────────────────────── */
.op-steps-grid { position: relative; }
.op-step-connector {
  position: absolute;
  top: 46px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--indigo) 0%, var(--violet) 50%, var(--pink) 100%);
  opacity: .25;
  pointer-events: none;
}
.op-step-item { text-align: center; padding: 24px 16px; }
.op-step-num-wrap {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  box-shadow: 0 8px 28px rgba(114,9,183,.35);
  font-size: 1.8rem;
}
.op-step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #0d0c1d;
  font-size: .65rem;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}
.op-step-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.op-step-item p { font-size: .9rem; max-width: 240px; margin: 0 auto; }

/* ── PRICING ─────────────────────────────────────────────────────────── */
.op-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; max-width: 1000px; margin: 0 auto; }

.op-pricing-card {
  background: white;
  border: 2px solid var(--gray-100);
  border-radius: var(--r-2xl);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.op-pricing-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); }

.op-pricing-card.featured {
  background: var(--grad-hero);
  border-color: transparent;
  box-shadow: var(--sh-xl);
  margin-top: -16px;
  padding-top: 56px;
}
.op-pricing-card.featured h3,
.op-pricing-card.featured .op-price-val,
.op-pricing-card.featured .op-price-per,
.op-pricing-card.featured .op-plan-name { color: white; }
.op-pricing-card.featured p { color: rgba(255,255,255,.7); }

.op-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-green);
  color: #0d0c1d;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.op-plan-name {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--violet);
  margin-bottom: 10px;
}
.op-price-val {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin: 12px 0 2px;
  letter-spacing: -.04em;
}
.op-price-val sup { font-size: 1.4rem; vertical-align: super; font-weight: 600; }
.op-price-per { font-size: .82rem; color: var(--text-muted); margin-bottom: 28px; }
.op-price-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.op-price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-secondary);
}
.op-pricing-card.featured .op-price-features li { color: rgba(255,255,255,.8); }
.op-price-features li .chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.op-price-features li .chk svg { width: 11px; height: 11px; stroke: #0d0c1d; stroke-width: 3; }
.op-price-features li .na {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.op-price-features li .na::before { content: '–'; color: var(--gray-400); font-size: .8rem; }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────── */
.op-testi-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-card);
  transition: transform .3s, box-shadow .3s;
}
.op-testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.op-stars { color: #f59e0b; font-size: .9rem; letter-spacing: 2px; margin-bottom: 16px; }
.op-testi-quote { font-size: .95rem; line-height: 1.78; color: var(--text-secondary); margin-bottom: 24px; font-style: italic; }
.op-testi-author { display: flex; align-items: center; gap: 12px; }
.op-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.op-testi-name { font-weight: 700; font-size: .9rem; color: var(--text-primary); }
.op-testi-role { font-size: .78rem; color: var(--text-muted); }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.op-faq-item {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg);
  background: white;
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.op-faq-item:hover { border-color: rgba(114,9,183,.2); box-shadow: var(--sh-xs); }
.op-faq-item.open { border-color: rgba(114,9,183,.3); box-shadow: 0 4px 16px rgba(114,9,183,.08); }
.op-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-primary);
  gap: 16px;
  user-select: none;
  font-family: var(--font-display);
}
.op-faq-q:hover { color: var(--violet); }
.op-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  color: var(--violet);
  transition: transform .25s, background .2s, border-color .2s;
  font-weight: 700;
}
.op-faq-item.open .op-faq-icon {
  transform: rotate(45deg);
  background: var(--grad-brand);
  border-color: transparent;
  color: white;
}
.op-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.78;
}
.op-faq-item.open .op-faq-a { max-height: 320px; padding: 0 24px 22px; }

/* ── CTA BAND ─────────────────────────────────────────────────────────── */
.op-cta-band {
  background: var(--grad-hero);
  border-radius: var(--r-2xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.op-cta-band::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,9,183,.5) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}
.op-cta-band::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,214,160,.2) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}
.op-cta-band h2 { color: white; position: relative; z-index: 1; margin-bottom: 16px; }
.op-cta-band p  { color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto 36px; position: relative; z-index: 1; font-size: 1.05rem; }
.op-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── PAGE HEADER (inner pages) ──────────────────────────────────────── */
.op-page-hero {
  background: var(--grad-hero);
  padding: 130px var(--gutter) 72px;
  position: relative;
  overflow: hidden;
}
.op-page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,9,183,.4) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.op-page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.op-page-hero .container { position: relative; z-index: 1; }
.op-page-hero h1 { color: white; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.op-page-hero p  { color: rgba(255,255,255,.7); max-width: 540px; font-size: 1rem; }

/* Breadcrumb */
.op-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-family: var(--font-display);
  font-weight: 600;
}
.op-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.op-breadcrumb a:hover { color: white; }
.op-breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── SECTION HEADERS ─────────────────────────────────────────────────── */
.op-section-head { text-align: center; margin-bottom: 60px; }
.op-section-head h2 { margin-bottom: 16px; }
.op-section-head p  { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ── FORMS ────────────────────────────────────────────────────────────── */
.op-form-group  { margin-bottom: 20px; }
.op-form-label  { display: block; font-size: .88rem; font-weight: 700; color: var(--gray-700); margin-bottom: 7px; font-family: var(--font-display); }
.op-form-input,
.op-form-select,
.op-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-md);
  background: white;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-primary);
  transition: border-color .2s, box-shadow .2s;
}
.op-form-input:focus, .op-form-select:focus, .op-form-textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(58,12,163,.1);
}
.op-form-input::placeholder, .op-form-textarea::placeholder { color: var(--text-muted); }
.op-form-textarea { resize: vertical; min-height: 130px; }
.op-form-select   {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238584a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

/* ── BLOG / ARCHIVE ──────────────────────────────────────────────────── */
.op-post-card {
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.op-post-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(114,9,183,.15); }
.op-post-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--indigo-pale); }
.op-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.op-post-card:hover .op-post-thumb img { transform: scale(1.05); }
.op-post-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.op-post-meta { font-size: .75rem; color: var(--text-muted); font-family: var(--font-display); font-weight: 600; margin-bottom: 10px; letter-spacing: .3px; }
.op-post-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text-primary); line-height: 1.4; }
.op-post-card h3 a { color: var(--text-primary); transition: color .2s; }
.op-post-card h3 a:hover { color: var(--indigo); }
.op-post-excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.op-read-more { font-size: .82rem; font-weight: 700; color: var(--violet); font-family: var(--font-display); display: flex; align-items: center; gap: 4px; }

/* ── BADGES / CHIPS ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-family: var(--font-display);
}
.badge-green  { background: rgba(6,214,160,.12);  color: var(--green-dark);  border: 1px solid rgba(6,214,160,.3);  }
.badge-violet { background: var(--indigo-pale);    color: var(--violet);      border: 1px solid rgba(114,9,183,.2); }
.badge-blue   { background: rgba(67,97,238,.1);    color: var(--blue);        border: 1px solid rgba(67,97,238,.2); }
.badge-red    { background: rgba(239,68,68,.1);    color: #dc2626;            border: 1px solid rgba(239,68,68,.2); }

/* ── ALERTS ──────────────────────────────────────────────────────────── */
.op-alert { padding: 14px 18px; border-radius: var(--r-md); font-size: .9rem; margin-bottom: 16px; font-weight: 500; }
.op-alert-success { background: rgba(6,214,160,.1); border: 1.5px solid rgba(6,214,160,.3); color: var(--green-dark); }
.op-alert-error   { background: rgba(239,68,68,.08); border: 1.5px solid rgba(239,68,68,.25); color: #dc2626; }
.op-alert-info    { background: var(--indigo-pale); border: 1.5px solid rgba(58,12,163,.2); color: var(--indigo); }
.op-alert-warn    { background: rgba(245,158,11,.1); border: 1.5px solid rgba(245,158,11,.3); color: #b45309; }

/* ── CONTENT STYLES ──────────────────────────────────────────────────── */
.op-content-wrap { max-width: 760px; margin: 0 auto; padding: 56px var(--gutter); }
.op-content-wrap h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 44px 0 16px; }
.op-content-wrap h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin: 32px 0 12px; }
.op-content-wrap p  { margin-bottom: 20px; }
.op-content-wrap ul, .op-content-wrap ol { margin-bottom: 20px; }
.op-content-wrap img { border-radius: var(--r-xl); box-shadow: var(--sh-lg); margin: 32px 0; }
.op-content-wrap a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.op-content-wrap blockquote { border-left: 4px solid var(--violet); background: var(--indigo-pale); padding: 20px 28px; border-radius: 0 var(--r-md) var(--r-md) 0; margin: 28px 0; font-style: italic; }
.op-content-wrap table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.op-content-wrap th, .op-content-wrap td { border: 1px solid var(--gray-100); padding: 12px 16px; font-size: .9rem; }
.op-content-wrap th { background: var(--indigo-pale); font-weight: 700; color: var(--text-primary); }

/* ── TABLE ────────────────────────────────────────────────────────────── */
.op-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.op-table th { background: var(--indigo-pale); border: 1px solid var(--gray-100); padding: 12px 16px; font-weight: 700; text-align: left; font-family: var(--font-display); font-size: .8rem; letter-spacing: .3px; color: var(--indigo); text-transform: uppercase; }
.op-table td { border: 1px solid var(--gray-100); padding: 12px 16px; color: var(--text-secondary); vertical-align: middle; }
.op-table tr:hover td { background: var(--indigo-pale); }

/* ── PAGINATION ───────────────────────────────────────────────────────── */
.op-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
.op-pagination a, .op-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all .2s;
}
.op-pagination a:hover { border-color: var(--indigo); color: var(--indigo); background: var(--indigo-pale); }
.op-pagination .current { background: var(--grad-brand); border-color: transparent; color: white; }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
#op-footer {
  background: var(--gray-900);
  padding: 80px 0 0;
}
.op-footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.op-footer-brand { }
.op-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.op-footer-desc { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 280px; }
.op-footer-social { display: flex; gap: 10px; margin-top: 24px; }
.op-footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  transition: all .2s;
  text-decoration: none;
}
.op-footer-social-link:hover { border-color: var(--violet); color: white; background: rgba(114,9,183,.3); }

.op-footer-col h5 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.op-footer-col ul { list-style: none; padding: 0; }
.op-footer-col ul li { margin-bottom: 11px; }
.op-footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color .2s; }
.op-footer-col ul a:hover { color: white; }

.op-footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-display);
}
.op-footer-status { display: flex; align-items: center; gap: 6px; }
.op-status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

/* ── ANIMATIONS ───────────────────────────────────────────────────────── */
.op-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.215,.61,.355,1), transform .65s cubic-bezier(.215,.61,.355,1);
}
.op-reveal.visible { opacity: 1; transform: translateY(0); }
.op-reveal-d1 { transition-delay: .1s; }
.op-reveal-d2 { transition-delay: .2s; }
.op-reveal-d3 { transition-delay: .3s; }
.op-reveal-d4 { transition-delay: .4s; }

@keyframes op-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.op-float { animation: op-float 4s ease-in-out infinite; }

@keyframes op-pulse-glow { 0%,100%{box-shadow:0 0 0 0 rgba(6,214,160,.4)} 50%{box-shadow:0 0 0 12px rgba(6,214,160,0)} }
.op-pulse { animation: op-pulse-glow 2.5s ease infinite; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .op-feature-row { gap: 48px; }
}

@media (max-width: 960px) {
  .grid-3   { grid-template-columns: 1fr 1fr; }
  .grid-4   { grid-template-columns: 1fr 1fr; }
  .grid-2-3, .grid-3-2 { grid-template-columns: 1fr; }
  .op-pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .op-pricing-card.featured { margin-top: 0; }
  .op-footer-grid { grid-template-columns: 1fr 1fr; }
  .op-footer-brand { grid-column: 1 / -1; }
  .op-feature-row { gap: 36px; }
}

@media (max-width: 768px) {
  .op-nav-menu { display: none; position: absolute; top: 76px; left: 0; right: 0; background: rgba(13,12,29,.98); border-bottom: 1px solid rgba(255,255,255,.08); padding: 12px 16px 20px; flex-direction: column; gap: 2px; backdrop-filter: blur(20px); }
  .op-nav-menu.open { display: flex; }
  .op-nav-cta  { display: none; }
  .op-nav-cta.open { display: flex; position: absolute; top: calc(76px + 8px); right: 16px; z-index: 1001; }
  .op-hamburger { display: flex; }
  .op-hero-stat { padding: 16px 24px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; --gutter: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .op-footer-grid { grid-template-columns: 1fr; }
  .op-cta-band { padding: 52px 28px; }
  .op-step-connector { display: none; }
  .op-hero-stats { flex-wrap: wrap; }
  .op-hero-stat { min-width: 50%; border-right: 1px solid rgba(255,255,255,.1) !important; }
  .op-hero-stat:nth-child(2n) { border-right: none !important; }
  .op-hero-stat:nth-child(3), .op-hero-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .d-none-mobile { display: none !important; }
}
