/* ═══════════════════════════════════════════
   Ohveda WordPress Theme — main.css
   All layout, component, and page styles
═══════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white, #fff);
  color: var(--text, #0C0C0F);
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ── Typography ─────────────────────────── */
h1, h2, h3, h4, h5, .widget-title {
  font-family: var(--font-head, 'Space Grotesk', sans-serif);
  line-height: 1.12; letter-spacing: -0.025em; color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--muted); line-height: 1.7; }
a { text-decoration: none; color: inherit; transition: color 0.15s; }
a:hover { color: var(--purple); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5rem; }

/* ── Layout ───────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-header { max-width: 580px; }
.section-header.center { text-align: center; margin: 0 auto; }
.section-header h2 { color: var(--text); margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; }

/* ── Badge ────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--purple); background: var(--purple-dim);
  border: 1px solid rgba(124,58,237,0.18);
  padding: 5px 13px; border-radius: 100px; margin-bottom: 20px;
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }

/* ── Buttons ──────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s ease;
  white-space: nowrap; letter-spacing: -0.01em; text-decoration: none;
}
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,58,237,0.28); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-dim); }
.btn-text { background: transparent; color: var(--purple); padding: 0; font-size: 14px; font-weight: 600; border: none; cursor: pointer; }
.btn-white { background: var(--white); color: var(--text); }
.btn-white:hover { background: var(--purple-light); color: var(--purple); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.08); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── Nav ──────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px; display: flex; align-items: center; padding: 0 28px;
  transition: all 0.25s ease;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}
.nav-inner { max-width: 1160px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo-wrap { display: flex; align-items: center; text-decoration: none; }
.nav-logo-wrap img, .nav-logo-wrap svg { display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; margin: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px; font-size: 14px; font-weight: 500;
  color: var(--text2); border-radius: var(--radius-xs); transition: all 0.15s;
  text-decoration: none;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--purple); background: var(--purple-dim); }
.nav-links > li > a .sub-arrow { opacity: 0.45; font-size: 10px; }
.nav-links > li:hover > a { color: var(--purple); background: var(--purple-dim); }
.sub-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px; min-width: 232px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: all 0.18s ease;
  list-style: none; padding-left: 0; margin: 0;
}
.nav-links > li:hover .sub-menu,
.nav-links > li:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; font-size: 13.5px; color: var(--text2);
  border-radius: var(--radius-xs); transition: all 0.12s;
  text-decoration: none;
}
.sub-menu li a:hover { color: var(--purple); background: var(--purple-dim); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav-mobile-btn span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
.nav-mobile-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px; z-index: 999; box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 0; font-size: 15px; font-weight: 500; color: var(--text2); border-bottom: 1px solid var(--border); text-decoration: none; }
.mobile-menu a:last-child { border: none; color: var(--purple); font-weight: 600; }
@media (max-width: 880px) {
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-btn { display: flex; }
}

/* ── Site main ────────────────────────── */
.site-main { padding-top: 64px; }

/* ── Hero ─────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); z-index: 0;
}
.hero-orb-1 { width: 600px; height: 600px; background: rgba(124,58,237,0.07); top: -10%; right: -5%; animation: orbFloat 12s ease-in-out infinite; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(124,58,237,0.05); bottom: 10%; right: 25%; animation: orbFloat 16s ease-in-out infinite 2s; }
.hero-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,0.13) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 70% 40%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 85% 75% at 70% 40%, black 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--purple); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--purple); border-radius: 1px; }
.hero h1 { color: var(--text); margin-bottom: 22px; }
.hero h1 .purple { color: var(--purple); }
.hero-sub { font-size: 1.1rem; max-width: 540px; margin-bottom: 40px; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 48px; font-size: 13px; color: var(--muted); }
.hero-trust-dots { display: flex; }
.hero-trust-dots span { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--white); background: var(--purple-dim); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 10px; font-weight: 700; color: var(--purple); margin-left: -8px; }
.hero-trust-dots span:first-child { margin-left: 0; }
.hero-card { position: absolute; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); z-index: 2; }
.hero-card-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.hero-card-num span { color: var(--purple); }
.hero-card-label { font-size: 12px; color: var(--muted); margin-top: 3px; }
.card1 { top: 22%; right: 5%; animation: floatA 4s ease-in-out infinite; }
.card2 { top: 50%; right: 18%; animation: floatB 5s ease-in-out infinite; }
.card3 { bottom: 20%; right: 4%; animation: floatA 4.5s ease-in-out infinite 1s; }
@media (max-width: 900px) { .hero-card { display: none; } }

/* ── Clients ──────────────────────────── */
.clients { padding: 44px 0; border-top: 1px solid var(--border); background: var(--bg); }
.clients-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.clients-label { font-family: var(--font-head); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted2); white-space: nowrap; flex-shrink: 0; }
.clients-logos { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.client-chip { padding: 7px 16px; border: 1px solid var(--border); border-radius: 100px; background: var(--white); font-family: var(--font-head); font-size: 12.5px; font-weight: 600; color: var(--text2); transition: all 0.15s; box-shadow: var(--shadow-sm); }
.client-chip:hover { border-color: var(--purple-mid); color: var(--purple); background: var(--purple-dim); }

/* ── Services ─────────────────────────── */
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
@media (max-width: 700px) { .services-layout { grid-template-columns: 1fr; } }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; transition: all 0.22s ease; position: relative; overflow: hidden; }
.service-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,0.22); transform: translateY(-3px); }
.service-card.featured { background: var(--text); border-color: var(--text); grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 700px) { .service-card.featured { grid-column: span 1; grid-template-columns: 1fr; } }
.service-card.featured h3 { color: var(--white); }
.service-card.featured > div > p { color: rgba(255,255,255,0.58); }
.service-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--purple-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--purple); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.1); color: var(--purple-mid); }
.service-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 10px; }
.service-bullets { list-style: none; padding: 0; margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.service-bullets li { font-size: 13.5px; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; }
.sbdot { width: 5px; height: 5px; border-radius: 50%; background: var(--purple); flex-shrink: 0; margin-top: 7px; }
.service-card.featured .service-bullets li { color: rgba(255,255,255,0.62); }
.service-card.featured .sbdot { background: var(--purple-mid); }
.service-cta { margin-top: 24px; }
.feat-bar-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feat-bar { height: 9px; border-radius: 5px; background: rgba(124,58,237,0.3); }
.feat-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.feat-tag { padding: 6px 12px; border-radius: 100px; background: rgba(124,58,237,0.18); font-family: var(--font-head); font-size: 12px; font-weight: 600; color: #C4B5FD; }

/* ── Serve grid ───────────────────────── */
.serve-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.serve-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 56px; }
@media (max-width: 800px) { .serve-grid { grid-template-columns: 1fr 1fr; } }
.serve-card { background: var(--white); padding: 32px 28px; transition: background 0.2s; }
.serve-card:hover { background: var(--purple-dim); }
.serve-num { font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple); letter-spacing: 0.08em; margin-bottom: 14px; }

/* ── Process ──────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 56px; }
@media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { background: var(--white); padding: 40px 32px; transition: background 0.2s; }
.process-step:hover { background: var(--bg); }
.process-step-num { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; color: var(--purple-dim2); line-height: 1; margin-bottom: 20px; letter-spacing: -0.04em; }
.process-step h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 10px; }
.process-step-tag { display: inline-block; margin-top: 20px; font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.07em; padding: 4px 10px; background: var(--purple-dim); border-radius: 100px; }

/* ── Stats ────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 700px) { .stats-row { grid-template-columns: 1fr 1fr; } }
.stat-box { padding: 44px 32px; border-right: 1px solid var(--border); }
.stat-box:last-child { border-right: none; }
.stat-val { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; letter-spacing: -0.04em; color: var(--text); line-height: 1; }
.stat-val em { font-style: normal; color: var(--purple); }
.stat-lbl { font-size: 14px; color: var(--muted); margin-top: 8px; }
.stat-sub { font-size: 12px; color: var(--muted2); margin-top: 3px; }

/* ── Testimonials ─────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
@media (max-width: 800px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all 0.2s; }
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-quote { font-size: 15px; color: var(--text2); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--purple-dim); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--purple); flex-shrink: 0; }
.testimonial-name { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ── Case studies grid ────────────────── */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
@media (max-width: 700px) { .case-grid { grid-template-columns: 1fr; } }
.case-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.22s; }
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(124,58,237,0.2); }
.case-card-header { padding: 28px; background: var(--bg); border-bottom: 1px solid var(--border); }
.case-industry { font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.case-card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }
.case-metrics { padding: 24px 28px; display: flex; gap: 32px; flex-wrap: wrap; }
.case-metric-val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--purple); letter-spacing: -0.03em; line-height: 1; }
.case-metric-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── Case study full list ─────────────── */
.cs-hero { padding: 120px 0 80px; background: var(--white); position: relative; overflow: hidden; }
.cs-hero-inner { display: grid; grid-template-columns: 1fr 540px; gap: 64px; align-items: center; }
@media (max-width: 960px) { .cs-hero-inner { grid-template-columns: 1fr; } }
.cs-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 700px) { .cs-stats { grid-template-columns: 1fr 1fr; } }
.cs-stat { background: var(--white); padding: 36px 28px; text-align: center; }
.cs-stat-val { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--purple); letter-spacing: -0.04em; line-height: 1; }
.cs-stat-lbl { font-size: 13px; color: var(--muted); margin-top: 8px; }
.cs-list { display: flex; flex-direction: column; gap: 32px; }
.cs-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: all 0.22s; }
.cs-card:hover { box-shadow: var(--shadow-xl); border-color: rgba(124,58,237,0.2); transform: translateY(-2px); }
.cs-card-inner { display: grid; grid-template-columns: 300px 1fr; }
@media (max-width: 800px) { .cs-card-inner { grid-template-columns: 1fr; } }
.cs-card-visual { background: var(--bg); padding: 36px 32px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--border); position: relative; overflow: hidden; min-height: 260px; }
.cs-card-visual-pat { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(124,58,237,0.1) 1px, transparent 1px); background-size: 18px 18px; }
.cs-card-visual-content { position: relative; z-index: 1; }
.cs-big-metric { font-family: var(--font-head); font-size: 4.5rem; font-weight: 700; color: var(--purple); letter-spacing: -0.05em; line-height: 1; }
.cs-big-metric-label { font-size: 14px; color: var(--muted); margin-top: 6px; }
.cs-mini-metrics { display: flex; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1; }
.cs-mini-val { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--text); letter-spacing: -0.03em; }
.cs-mini-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }
.cs-card-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: space-between; }
.cs-tag { font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.cs-card h2 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); color: var(--text); margin-bottom: 12px; line-height: 1.25; }
.cs-timeline { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.cs-timeline-item { display: flex; gap: 12px; align-items: flex-start; }
.cs-timeline-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); flex-shrink: 0; margin-top: 5px; }
.cs-timeline-text { font-size: 13.5px; color: var(--text2); }
.cs-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.cs-industry-chip { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 12.5px; font-weight: 500; color: var(--text2); padding: 6px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: 100px; }
.cs-quote { background: var(--bg); border-left: 3px solid var(--purple); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 24px; margin: 20px 0; }
.cs-quote-text { font-size: 14px; font-style: italic; color: var(--text2); line-height: 1.75; margin-bottom: 10px; }
.cs-quote-author { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--text); }
.cs-quote-role { font-size: 12px; color: var(--muted); }

/* ── Blog ─────────────────────────────── */
.blog-controls { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-tab { padding: 8px 16px; border-radius: 100px; font-family: var(--font-head); font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--border); background: transparent; color: var(--muted); transition: all 0.15s; text-decoration: none; display: inline-block; }
.cat-tab:hover { border-color: var(--purple); color: var(--purple); }
.cat-tab.active { background: var(--purple); color: #fff; border-color: transparent; }
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
@media (max-width: 960px) { .blog-layout { grid-template-columns: 1fr; } }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 880px) { .posts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .posts-grid { grid-template-columns: 1fr; } }
.post-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: all 0.2s; }
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(124,58,237,0.18); }
.post-card-img { height: 160px; background: var(--bg); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-img-pat { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(124,58,237,0.1) 1px, transparent 1px); background-size: 16px 16px; }
.post-card-img-icon { position: relative; z-index: 1; width: 44px; height: 44px; border-radius: 11px; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); color: var(--purple); }
.post-body { padding: 22px; }
.post-cat { font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 9px; }
.post-card h3 { font-size: 15px; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.post-card h3 a { color: var(--text); text-decoration: none; }
.post-card h3 a:hover { color: var(--purple); }
.post-card p { font-size: 13px; margin-bottom: 14px; }
.post-footer { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted2); }
.post-read-more { color: var(--purple); font-weight: 600; font-size: 12.5px; font-family: var(--font-head); text-decoration: none; }
.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 84px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.sidebar-title { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.topic-chip { display: inline-flex; margin: 3px; padding: 5px 12px; border-radius: 100px; font-family: var(--font-head); font-size: 12px; font-weight: 500; color: var(--text2); background: var(--bg); border: 1px solid var(--border); cursor: pointer; transition: all 0.15s; text-decoration: none; }
.topic-chip:hover { background: var(--purple-dim); border-color: rgba(124,58,237,0.25); color: var(--purple); }
.recent-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-item-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--purple-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--purple); }
.recent-item-title { font-family: var(--font-head); font-size: 12.5px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 3px; }
.recent-item-title a { color: var(--text); text-decoration: none; }
.recent-item-title a:hover { color: var(--purple); }
.recent-item-meta { font-size: 11px; color: var(--muted2); }
.ohveda-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.ohveda-pagination .page-numbers { padding: 8px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); font-family: var(--font-head); font-size: 14px; color: var(--text2); text-decoration: none; transition: all 0.15s; }
.ohveda-pagination .page-numbers:hover, .ohveda-pagination .page-numbers.current { background: var(--purple); color: #fff; border-color: transparent; }

/* ── Single post ──────────────────────── */
.single-post .page-hero { background: var(--bg); }
.single-content { font-size: 16px; line-height: 1.8; color: var(--text2); }
.single-content h2, .single-content h3 { margin: 32px 0 16px; }
.single-content p { margin-bottom: 18px; color: var(--text2); }
.single-content ul, .single-content ol { margin-bottom: 18px; padding-left: 24px; color: var(--text2); }
.single-content li { margin-bottom: 8px; }
.single-content a { color: var(--purple); }
.single-content blockquote { border-left: 3px solid var(--purple); padding: 16px 20px; background: var(--bg); border-radius: 0 8px 8px 0; margin: 24px 0; }
.single-content code { background: var(--bg2); padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: 14px; }
.single-content pre { background: var(--text); color: #e2e8f0; padding: 20px; border-radius: var(--radius-sm); overflow-x: auto; margin-bottom: 24px; }
.single-content pre code { background: transparent; padding: 0; color: inherit; }
@media (max-width: 800px) { .single-layout { grid-template-columns: 1fr !important; } }

/* ── FAQ ──────────────────────────────── */
.faq-section { background: var(--bg); border-top: 1px solid var(--border); }
.faq-wrap { max-width: 740px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; color: var(--text); font-family: var(--font-head); font-size: 15.5px; font-weight: 500; gap: 16px; transition: color 0.15s; }
.faq-q:hover { color: var(--purple); }
.faq-toggle { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.25s; }
.faq-item.open .faq-toggle { border-color: var(--purple); color: var(--purple); background: var(--purple-dim); transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-body-inner { padding-bottom: 22px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-body { max-height: 300px; }

/* ── CTA Section ──────────────────────── */
.cta-section { background: var(--text); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(124,58,237,0.18) 1px, transparent 1px); background-size: 28px 28px; }
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.58); max-width: 480px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-note { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,0.38); }
.cta-section .badge { background: rgba(124,58,237,0.18); border-color: rgba(124,58,237,0.3); color: #C4B5FD; margin-bottom: 24px; }
.cta-section .badge-dot { background: #C4B5FD; }

/* ── Page Hero ────────────────────────── */
.page-hero { padding: 120px 0 64px; background: var(--bg); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(124,58,237,0.05) 0%, transparent 60%); }
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 { color: var(--text); margin-bottom: 16px; }

/* ── Footer ───────────────────────────── */
.site-footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { margin-top: 14px; font-size: 14px; max-width: 260px; }
.footer-tagline { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--font-head); font-size: 11.5px; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.07em; }
.footer-col h4 { font-family: var(--font-head); font-size: 11.5px; font-weight: 600; color: var(--text); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.15s; text-decoration: none; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom span { font-size: 13px; color: var(--muted); }
.brand-bars { display: flex; flex-direction: column; gap: 3px; }
.brand-bar { height: 3px; border-radius: 1.5px; background: var(--purple); }
.social-link { width: 34px; height: 34px; border-radius: 8px; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.15s; text-decoration: none; }
.social-link:hover { background: var(--purple-dim); border-color: rgba(124,58,237,0.25); color: var(--purple); }

/* ── About page ───────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 700px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }
.story-visual { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; min-height: 320px; }
.story-visual-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(124,58,237,0.12) 1px, transparent 1px); background-size: 24px 24px; }
.story-visual-content { position: relative; z-index: 1; text-align: center; }
.story-big-num { font-family: var(--font-head); font-size: 5rem; font-weight: 700; color: var(--text); letter-spacing: -0.05em; line-height: 1; }
.story-big-num span { color: var(--purple); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 56px; }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: var(--white); padding: 36px 32px; transition: background 0.2s; }
.value-card:hover { background: var(--purple-dim); }
.value-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--purple-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--purple); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
@media (max-width: 640px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all 0.2s; display: flex; gap: 20px; }
.diff-card:hover { border-color: rgba(124,58,237,0.25); box-shadow: var(--shadow); transform: translateY(-2px); }
.diff-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--purple-dim2); line-height: 1; flex-shrink: 0; letter-spacing: -0.04em; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.2s; }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-avatar { height: 180px; background: var(--bg); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.team-avatar-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(124,58,237,0.08) 1px, transparent 1px); background-size: 18px 18px; }
.team-avatar-initials { position: relative; z-index: 1; width: 72px; height: 72px; border-radius: 50%; background: var(--purple-dim); border: 2px solid rgba(124,58,237,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--purple); }
.team-info { padding: 20px 22px; }
.team-name { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--purple); font-weight: 500; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--muted); line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 700px) { .about-stats { grid-template-columns: 1fr 1fr; } }
.about-stat { background: var(--white); padding: 36px 28px; text-align: center; }
.about-stat-val { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--purple); letter-spacing: -0.04em; line-height: 1; }
.about-stat-lbl { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ── Services page ────────────────────── */
.svc-tab { padding: 9px 18px; border-radius: var(--radius-sm); font-family: var(--font-head); font-size: 13.5px; font-weight: 500; cursor: pointer; background: transparent; color: var(--muted); transition: all 0.15s; text-decoration: none; display: inline-block; }
.svc-tab:hover { background: var(--bg); color: var(--text); }
.svc-block { padding: 80px 0; border-bottom: 1px solid var(--border); }
.svc-block-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.svc-block-inner.reverse { direction: rtl; }
.svc-block-inner.reverse > * { direction: ltr; }
@media (max-width: 700px) { .svc-block-inner, .svc-block-inner.reverse { grid-template-columns: 1fr; direction: ltr; } }
.svc-block-label { font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.svc-block h2 { color: var(--text); margin-bottom: 16px; }
.svc-block-lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 28px; line-height: 1.75; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.outcome-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; text-align: center; }
.outcome-val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--purple); letter-spacing: -0.03em; }
.outcome-lbl { font-size: 12px; color: var(--muted); margin-top: 5px; }
.tech-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tech-chip { padding: 5px 12px; border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--text2); background: var(--white); font-family: var(--font-head); }
.svc-visual { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; overflow: hidden; min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; }
.svc-visual-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(124,58,237,0.1) 1px, transparent 1px); background-size: 20px 20px; }
.svc-visual-content { position: relative; z-index: 1; }
.svc-metric-big { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.svc-metric-big em { font-style: normal; color: var(--purple); }
.svc-metric-label { font-size: 13px; color: var(--muted); margin-top: 6px; }
.svc-visual-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.svc-visual-tag { padding: 6px 12px; border-radius: 100px; border: 1px solid var(--border); background: var(--white); font-family: var(--font-head); font-size: 12px; font-weight: 500; color: var(--text2); }
.svc-visual-tag.purple { background: var(--purple-dim); border-color: rgba(124,58,237,0.2); color: var(--purple); }
.svc-capabilities { display: flex; flex-direction: column; gap: 10px; }
.svc-cap-item { display: flex; align-items: flex-start; gap: 12px; padding: 13px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color 0.18s; }
.svc-cap-item:hover { border-color: rgba(124,58,237,0.25); }
.svc-cap-icon { width: 30px; height: 30px; border-radius: 7px; background: var(--purple-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--purple); }
.svc-cap-title { font-family: var(--font-head); font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.svc-cap-desc { font-size: 12.5px; color: var(--muted); }
.engagement-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 48px; }
@media (max-width: 700px) { .engagement-steps { grid-template-columns: 1fr 1fr; } }
.eng-step { background: var(--white); padding: 28px 22px; }
.eng-step:hover { background: var(--purple-dim); }
.eng-step-num { font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple); letter-spacing: 0.08em; margin-bottom: 12px; }
.eng-step h4 { font-size: 15px; color: var(--text); margin-bottom: 8px; }
.eng-step-duration { display: inline-block; margin-top: 12px; font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple); padding: 3px 9px; background: var(--purple-dim); border-radius: 100px; }

/* ── Contact page ─────────────────────── */
.contact-hero { padding: 100px 0 0; background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; padding: 64px 0 100px; }
@media (max-width: 960px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-field label { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--text2); }
.form-field input, .form-field select, .form-field textarea { padding: 10px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--white); transition: border-color 0.18s, box-shadow 0.18s; outline: none; width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit-btn { width: 100%; padding: 13px; background: var(--purple); color: #fff; border: none; border-radius: var(--radius-sm); font-family: var(--font-head); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; }
.form-submit-btn:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,58,237,0.28); }
.form-privacy { font-size: 12px; color: var(--muted2); text-align: center; margin-top: 12px; }
.form-success { text-align: center; padding: 36px 16px; }
.success-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--purple-dim); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--purple); }
.success-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 18px; }
.booking-card { background: var(--text); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; }
.booking-card::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(124,58,237,0.2) 1px, transparent 1px); background-size: 20px 20px; }
.booking-card-inner { position: relative; z-index: 1; }
.booking-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple-mid); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.booking-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.booking-card p { font-size: 13.5px; color: rgba(255,255,255,0.58); margin-bottom: 20px; }
.booking-perks { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.booking-perk { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.75); }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start; }
.info-card-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--purple-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--purple); }
.info-card-label { font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.info-card-val { font-size: 14px; color: var(--text); font-weight: 500; }
.info-card-val a { color: var(--purple); text-decoration: none; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 7px; padding: 7px 13px; background: var(--bg); border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--text2); font-family: var(--font-head); }
.trust-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.mini-faq { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border); }
.mini-faq h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); margin-bottom: 4px; }
.mini-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
@media (max-width: 640px) { .mini-faq-grid { grid-template-columns: 1fr; } }
.mini-faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.mini-faq-q { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.mini-faq-a { font-size: 13px; color: var(--muted); }

/* ── Pricing page ─────────────────────── */
.pricing-hero { padding: 100px 0 64px; background: var(--white); text-align: center; position: relative; overflow: hidden; }
.pricing-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,0.06) 0%, transparent 65%); }
.pricing-hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 28px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; align-items: start; }
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }
.pricing-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: all 0.22s; }
.pricing-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); transform: scale(1.02); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.featured-ribbon { background: var(--purple); color: white; text-align: center; padding: 8px; font-family: var(--font-head); font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }
.pricing-card-header { padding: 28px 24px 20px; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-card-header { background: var(--purple); border-bottom: none; }
.pricing-tier { font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.7); }
.pricing-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.pricing-card.featured .pricing-name { color: var(--white); }
.price-label { font-family: var(--font-head); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; margin-top: 16px; }
.pricing-card.featured .price-label { color: rgba(255,255,255,.6); }
.price-val { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.pricing-card.featured .price-val { color: var(--white); }
.price-note { font-size: 12px; color: var(--muted); margin-top: 5px; }
.pricing-card-body { padding: 20px 24px 24px; }
.pricing-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; }
.pf-check { width: 17px; height: 17px; border-radius: 50%; background: var(--purple-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.pf-x { width: 17px; height: 17px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.pricing-section-label { font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--text); padding: 14px 18px; text-align: left; background: var(--white); border-bottom: 2px solid var(--border); }
.compare-table th.highlighted { background: var(--purple-dim); color: var(--purple); }
.compare-table td { padding: 13px 18px; font-size: 14px; color: var(--text2); border-bottom: 1px solid var(--border); }
.compare-table td.highlighted { background: oklch(0.97 0.01 285); }
.compare-table tr:hover td { background: var(--bg); }
.compare-table tr:hover td.highlighted { background: oklch(0.95 0.02 285); }
.eng-models { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 700px) { .eng-models { grid-template-columns: 1fr; } }
.eng-model { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: all 0.2s; }
.eng-model:hover { border-color: rgba(124,58,237,0.25); box-shadow: var(--shadow); }
.eng-model-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--purple-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--purple); }
.eng-model-tag { display: inline-block; margin-top: 13px; font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--purple); padding: 4px 10px; background: var(--purple-dim); border-radius: 100px; }
.roi-canvas-wrap { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }

/* ── Scroll Reveal ────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.2s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.36s; }

/* ── Animations ───────────────────────── */
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes orbFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(30px,-20px) scale(1.05)} 66%{transform:translate(-20px,15px) scale(0.95)} }
@keyframes wordIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* ── Data-animate helpers ─────────────── */
[data-animate="fade-up"] { opacity: 0; }
[data-animate="fade-up"].animated { animation: fadeUp 0.6s ease forwards; }

/* ── Page content (generic) ───────────── */
.page-content { font-size: 16px; line-height: 1.8; color: var(--text2); }
.page-content h2, .page-content h3 { margin: 28px 0 14px; }
.page-content p { margin-bottom: 16px; }
.page-content ul, .page-content ol { margin-bottom: 16px; }
.page-content a { color: var(--purple); }

/* ── Accessibility ────────────────────── */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; background: var(--purple); color: #fff; padding: 8px 16px; border-radius: 6px; text-decoration: none; }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }

/* ── Screen reader ────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Responsive type ──────────────────── */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 60px; }
  .page-hero { padding: 100px 0 48px; }
  .cta-section { padding: 72px 0; }
}
