/* ================================================================
   NEXORA CRM — Landing Page
   Design Language: coin.nexora-nxr.io (teal-dominant)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --teal: #14b8a6;
  --teal-d: #0d9488;
  --teal-l: #2dd4bf;
  --teal-50: #f0fdfa;
  --cyan: #06b6d4;
  --accent: #5B3E96;
  --grad: linear-gradient(135deg, #0d9488, #14b8a6, #06b6d4);
  --grad-btn: linear-gradient(135deg, #0d9488, #06b6d4);
  --grad-subtle: linear-gradient(135deg, rgba(13,148,136,.06), rgba(6,182,212,.06));
  --bg: #F7F8FA;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --body: #3D3D56;
  --muted: #7A7A96;
  --light: #B0B0C8;
  --border: #E8E8F0;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'SF Mono', 'Fira Code', monospace;
  --nav-h: 68px;
  --container: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--teal); color: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── RTL Fonts + Layout ── */
[dir="rtl"] { font-family: 'Heebo', 'Inter', system-ui, sans-serif; }
[dir="rtl"] .nav-logo,
[dir="rtl"] .sec-title,
[dir="rtl"] .hero-title,
[dir="rtl"] .hero-subtitle,
[dir="rtl"] .f-card p,
[dir="rtl"] .sec-desc,
[dir="rtl"] .faq-question span,
[dir="rtl"] .faq-answer-inner { font-family: 'Heebo', 'Inter', system-ui, sans-serif; }
[dir="rtl"] .hero-btns { flex-direction: row-reverse; }
[dir="rtl"] .btn-main svg,
[dir="rtl"] .btn-sec svg { transform: scaleX(-1); }
[dir="rtl"] .faq-question { text-align: right; }
[dir="rtl"] .showcase-content { text-align: right; }
[dir="rtl"] .footer-brand p { text-align: right; }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; width: 100%; padding: 0 24px; }

/* ── Sections ── */
section { position: relative; padding: 100px 24px; width: 100%; }
.sec-alt { background: var(--white); }

/* ── Section Header ── */
.sec-head { text-align: center; margin-bottom: 50px; }
.sec-tag {
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.sec-title {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.15;
}
.sec-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  font-weight: 400;
  line-height: 1.8;
}
.sec-head .sec-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--grad-btn);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: all .3s;
}
.btn-main:hover {
  box-shadow: 0 6px 28px rgba(13, 148, 136, .3);
  transform: translateY(-2px);
}

.btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all .3s;
}
.btn-sec:hover { border-color: var(--teal); color: var(--teal-d); }

.btn-sm { padding: 10px 24px; font-size: 13px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--teal-d);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--teal);
  border-radius: 10px;
  transition: all .3s;
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--white);
  color: var(--teal-d);
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: all .3s;
}
.btn-white:hover {
  box-shadow: 0 6px 24px rgba(255,255,255,.3);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  transition: all .3s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ================================================================
   NAVIGATION — Glassmorphism (exact coin site pattern)
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: var(--nav-h);
}
.nav-logo span {
  font-weight: 600;
  opacity: .7;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links li { white-space: nowrap; }
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .3s;
}
.nav-links a:hover { color: var(--teal-d); }

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

/* Language Switcher */
.lang-sel { position: relative; }
.lang-cur {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  background: var(--white);
  transition: all .2s;
  user-select: none;
}
.lang-cur:hover { border-color: var(--teal); }
.lang-cur svg {
  width: 12px; height: 12px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  transition: transform .2s;
}
.lang-sel.open .lang-cur svg { transform: rotate(180deg); }

.lang-dd {
  position: absolute;
  top: calc(100% + 6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  min-width: 120px;
  display: none;
  overflow: hidden;
  z-index: 10;
}
[dir="rtl"] .lang-dd { left: 0; right: auto; }
[dir="ltr"] .lang-dd { right: 0; left: auto; }
.lang-sel.open .lang-dd { display: block; }

.lang-opt {
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s;
  color: var(--body);
  font-weight: 500;
}
.lang-opt:hover { background: var(--bg); }
.lang-opt.active { color: var(--teal-d); font-weight: 600; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
}
.hero-bg .orb.a { width: 500px; height: 500px; background: var(--teal); top: -5%; right: 10%; }
.hero-bg .orb.b { width: 400px; height: 400px; background: var(--cyan); bottom: 0; left: 5%; }

.hero-inner { position: relative; z-index: 2; max-width: 800px; width: 100%; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(13, 148, 136, .15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-d);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(13, 148, 136, .04);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(44px, 8vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.hero-title .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(13px, 2vw, 16px);
  color: var(--muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--body);
  max-width: 580px;
  margin: 0 auto 32px;
  font-weight: 400;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-note {
  font-size: 13px;
  color: var(--light);
  margin-bottom: 48px;
}

/* Hero Stats Strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 620px;
  margin: 0 auto 48px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.h-stat {
  background: var(--white);
  padding: 20px 12px;
  text-align: center;
}
.h-stat .n {
  font-size: 20px;
  font-weight: 800;
  color: var(--teal-d);
  margin-bottom: 2px;
}
.h-stat .l {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Hero Screenshot */
.hero-screenshot {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 148, 136, .15), 0 0 0 1px var(--border);
  position: relative;
}

.screenshot-titlebar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fb;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.screenshot-dots {
  display: flex;
  gap: 6px;
}
.screenshot-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.screenshot-dots span:nth-child(1) { background: #ff5f57; }
.screenshot-dots span:nth-child(2) { background: #febc2e; }
.screenshot-dots span:nth-child(3) { background: #28c840; }
.screenshot-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.screenshot-body {
  position: relative;
  background: var(--bg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screenshot-body img {
  width: 100%;
  height: auto;
  display: block;
}
.screenshot-placeholder {
  color: var(--light);
  font-size: 14px;
  text-align: center;
  padding: 80px 20px;
}

/* ================================================================
   SHOWCASE — Product Screenshots with Tabs
   ================================================================ */
.showcase { background: var(--white); }

.showcase-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.showcase-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  transition: all .3s;
}
.showcase-tab svg {
  width: 18px; height: 18px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .3s;
}
.showcase-tab:hover { border-color: var(--teal); color: var(--teal-d); }
.showcase-tab:hover svg { stroke: var(--teal); }
.showcase-tab.active {
  border-color: var(--teal);
  background: var(--teal-50);
  color: var(--teal-d);
  font-weight: 600;
}
.showcase-tab.active svg { stroke: var(--teal-d); }

.showcase-panels { position: relative; }
.showcase-panel {
  display: none;
  animation: fadeIn .4s ease;
}
.showcase-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.showcase-screenshot {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  border: 1px solid var(--border);
}
.showcase-screenshot .ss-bar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #f8f9fb;
  border-bottom: 1px solid var(--border);
  gap: 6px;
}
.showcase-screenshot .ss-dots {
  display: flex;
  gap: 5px;
}
.showcase-screenshot .ss-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.showcase-screenshot .ss-dots span:nth-child(1) { background: #ff5f57; }
.showcase-screenshot .ss-dots span:nth-child(2) { background: #febc2e; }
.showcase-screenshot .ss-dots span:nth-child(3) { background: #28c840; }
.showcase-screenshot .ss-img {
  background: var(--bg);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-screenshot .ss-img img {
  width: 100%;
  height: auto;
}

.showcase-content { padding: 20px 0; }
.showcase-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.showcase-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.showcase-content .showcase-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.showcase-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.showcase-feature .check {
  width: 20px; height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border-radius: 50%;
  margin-top: 2px;
}
.showcase-feature .check svg {
  width: 12px; height: 12px;
  stroke: var(--teal-d);
  fill: none;
  stroke-width: 2.5;
}
.showcase-feature span {
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
}

/* ================================================================
   FEATURES GRID
   ================================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.f-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: 12px;
  transition: all .35s;
}
.f-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(13, 148, 136, .08);
  transform: translateY(-3px);
}
.f-card .ic {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 10px;
  background: var(--grad-subtle);
}
.f-card .ic svg {
  width: 22px; height: 22px;
  stroke: var(--teal-d);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.f-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.f-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-section { background: var(--white); }

.pricing-highlight {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(13, 148, 136, .06);
  border: 1px solid rgba(13, 148, 136, .15);
  border-radius: 8px;
  font-size: 14px;
  color: var(--teal-d);
  font-weight: 600;
  margin-top: 8px;
}

/* Billing Toggle */
.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.billing-label {
  font-size: 14px;
  color: var(--light);
  font-weight: 500;
  transition: color .3s;
  cursor: pointer;
}
.billing-label.active { color: var(--text); font-weight: 600; }

.billing-toggle {
  width: 48px;
  height: 26px;
  border-radius: 13px;
  background: var(--border);
  position: relative;
  cursor: pointer;
  transition: background .3s;
  padding: 0;
}
.billing-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
  transition: transform .3s;
}
.billing-toggle.yearly { background: var(--teal); }
.billing-toggle.yearly::after { transform: translateX(22px); }

.billing-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-d);
  background: var(--teal-50);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: 14px;
  transition: all .35s;
  position: relative;
}
.price-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(13, 148, 136, .08);
  transform: translateY(-3px);
}

.price-card.popular {
  border: 2px solid var(--teal);
  box-shadow: 0 8px 40px rgba(13, 148, 136, .12);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--grad-btn);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.price-card .per-user {
  font-size: 13px;
  color: var(--teal-d);
  font-weight: 600;
  margin-bottom: 12px;
}

.price-amount {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 2px;
}
.price-period {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}
.price-contact {
  font-size: 28px;
  font-weight: 800;
  color: var(--teal-d);
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--body);
}
.price-feature svg {
  width: 16px; height: 16px;
  min-width: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}

.price-cta { margin-top: auto; }
.price-cta .btn-main,
.price-cta .btn-outline { width: 100%; justify-content: center; }

/* ================================================================
   SECURITY
   ================================================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all .3s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-item.open { border-color: var(--teal); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  cursor: pointer;
  transition: color .3s;
}
[dir="ltr"] .faq-question { text-align: left; }
.faq-question:hover { color: var(--teal-d); }

.faq-icon {
  display: flex;
  align-items: center;
  transition: transform .3s;
}
.faq-icon svg {
  width: 18px; height: 18px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-section {
  text-align: center;
  padding: 100px 24px;
  background: var(--grad-btn);
  color: #fff;
}
.cta-section h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 16px;
  opacity: .85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  padding: 60px 48px 36px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 8px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 16px;
  line-height: 1.4;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg);
  color: var(--muted);
  transition: all .3s;
}
.footer-social a:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  transition: all .3s;
  position: relative;
}
.footer-col a:hover {
  color: var(--teal-d);
  padding-inline-start: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  margin-top: 8px;
  border-top: 2px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* Currency note */
.pricing-currency-note {
  text-align: center;
  font-size: 14px;
  color: var(--teal-d);
  margin-bottom: 32px;
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(13, 148, 136, .06);
  border: 1px solid rgba(13, 148, 136, .15);
  border-radius: 8px;
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.pricing-section .pricing-currency-note,
.pricing .pricing-currency-note {
  display: block;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--light);
  font-weight: 500;
  transition: all .3s;
}
.footer-bottom-links a:hover { color: var(--teal-d); }

/* ================================================================
   SUBPAGE NAV — .container wrapper + .nav-menu + .lang-switcher
   ================================================================ */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.nav-menu .nav-links {
  flex: 1;
  justify-content: center;
}

/* Subpage Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  background: var(--white);
  transition: all .2s;
  user-select: none;
  font-family: var(--font);
}
.lang-btn:hover { border-color: var(--teal); }
.lang-btn svg {
  width: 12px; height: 12px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
  transition: transform .2s;
}
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  min-width: 140px;
  display: none;
  overflow: hidden;
  z-index: 10;
}
[dir="rtl"] .lang-dropdown { left: 0; right: auto; }
[dir="ltr"] .lang-dropdown { right: 0; left: auto; }
.lang-switcher.open .lang-dropdown { display: block; }

.lang-dropdown button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s;
  color: var(--body);
  font-weight: 500;
  background: none;
  border: none;
  text-align: start;
  font-family: var(--font);
}
.lang-dropdown button:hover { background: var(--bg); }
.lang-dropdown button.active { color: var(--teal-d); font-weight: 600; }

/* ================================================================
   SUBPAGE STYLES — page-header, content-page, content-section
   ================================================================ */
.page-header {
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-content {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.page-header p {
  font-size: 17px;
  opacity: .85;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-header .section-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(255,255,255,.08);
}

.content-page {
  padding: 4rem 0;
}
.content-page .container {
  max-width: var(--container);
}

.content-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
  margin-bottom: 2rem;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(13, 148, 136, .15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-d);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(13, 148, 136, .04);
}

.feature-card,
.feature-card.glass {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all .35s;
}
.feature-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(13, 148, 136, .08);
  transform: translateY(-3px);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Contact form styles for subpage */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, .1);
}

/* Subpage button overrides */
.content-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 10px;
  transition: all .3s;
  border: none;
  cursor: pointer;
}
.content-page .btn-primary {
  background: var(--grad-btn);
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
}
.content-page .btn-primary:hover {
  box-shadow: 0 6px 28px rgba(13, 148, 136, .3);
  transform: translateY(-2px);
}
.content-page .btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}
.content-page .btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}

/* Footer newsletter for subpages */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-newsletter h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-newsletter p {
  font-size: 14px;
  color: var(--muted);
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
}
.footer-newsletter-form input {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-width: 240px;
}
.footer-newsletter-form input:focus {
  border-color: var(--teal);
  outline: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col-brand .nav-logo {
  display: inline-block;
  margin-bottom: 12px;
  line-height: 1.4;
}
.footer-brand-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.7;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: .5px;
}

/* Dark mode for subpages */
[data-theme="dark"] .page-header {
  background: linear-gradient(135deg, #0a7a6f, #0891b2);
}
[data-theme="dark"] .content-section {
  background: var(--white);
  border-color: var(--border);
}
[data-theme="dark"] .feature-card,
[data-theme="dark"] .feature-card.glass {
  background: var(--white);
  border-color: var(--border);
}

/* Animate on scroll (subpages use this class) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s cubic-bezier(.22, 1, .36, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive subpages */
@media (max-width: 900px) {
  .page-header { padding: 6rem 1rem 3rem; }
  .content-section { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-newsletter { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .page-header { padding: 5rem 1rem 2.5rem; }
  .page-header h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-newsletter-form { flex-direction: column; width: 100%; }
  .footer-newsletter-form input { min-width: auto; width: 100%; }
}

/* ================================================================
   VOXORA SECTION
   ================================================================ */
.voxora-section {
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  color: #fff;
}
.voxora-section .f-card:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all .35s;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(13, 148, 136, .08);
  transform: translateY(-3px);
}
.testimonial-quote {
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
  opacity: .5;
}
.testimonial-text {
  font-size: 14px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testimonial-role {
  font-size: 12px;
  color: var(--muted);
}

/* ================================================================
   PRO HIGHLIGHT BADGE
   ================================================================ */
.pro-highlight {
  display: inline-block;
  padding: 6px 16px;
  background: var(--grad-btn);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 8px;
  letter-spacing: .5px;
}

/* ================================================================
   VIDEO MODAL
   ================================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  cursor: pointer;
}
.video-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  width: 90%;
  max-width: 720px;
  padding: 40px;
  z-index: 1;
  text-align: center;
}
.video-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}
.video-modal-close:hover { color: var(--text); }
.video-placeholder {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ================================================================
   ACCESSIBILITY WIDGET
   ================================================================ */
.a11y-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 150;
}
[dir="ltr"] .a11y-widget { left: 24px; right: auto; }
[dir="rtl"] .a11y-widget { right: auto; left: 24px; }

.a11y-fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13,148,136,.3);
  transition: all .3s;
  border: none;
}
.a11y-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(13,148,136,.4);
}

.a11y-panel {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,.12);
  display: none;
  overflow: hidden;
}
.a11y-panel.open { display: block; }

.a11y-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 15px;
}
.a11y-close {
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.a11y-close:hover { color: var(--text); }

.a11y-options {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.a11y-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--body);
}
.a11y-font-btns {
  display: flex;
  gap: 4px;
}
.a11y-font-btn {
  width: 32px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: var(--bg);
  color: var(--text);
  transition: all .2s;
}
.a11y-font-btn:hover { border-color: var(--teal); color: var(--teal-d); }

.a11y-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--body);
  cursor: pointer;
}
.a11y-toggle-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  cursor: pointer;
}

.a11y-reset {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.a11y-reset:hover { border-color: var(--teal); color: var(--teal-d); }

/* Accessibility state classes */
.a11y-contrast { filter: contrast(1.4); }
.a11y-grayscale { filter: grayscale(1); }
.a11y-contrast.a11y-grayscale { filter: contrast(1.4) grayscale(1); }
.a11y-links a { text-decoration: underline !important; outline: 2px solid currentColor !important; outline-offset: 2px; }
.a11y-no-animations *, .a11y-no-animations *::before, .a11y-no-animations *::after {
  animation-duration: 0s !important;
  transition-duration: 0s !important;
}
.a11y-big-cursor, .a11y-big-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 2l20 14H14l6 12-4 2-6-12-5 8z' fill='%23000' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E") 5 2, auto !important; }

/* Nav logo image */
.nav-logo img {
  height: 48px;
  display: block;
  background: transparent !important;
}
[data-theme="dark"] .nav-logo img {
  filter: brightness(0) invert(1);
}
.footer-brand .nav-logo img,
.footer-col-brand .nav-logo img {
  background: transparent !important;
}
[data-theme="dark"] .footer-brand .nav-logo img,
[data-theme="dark"] .footer-col-brand .nav-logo img {
  filter: brightness(0) invert(1);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s cubic-bezier(.22, 1, .36, 1);
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }
.reveal.d6 { transition-delay: .6s; }
.reveal.d7 { transition-delay: .7s; }
.reveal.d8 { transition-delay: .8s; }
.reveal.d9 { transition-delay: .9s; }

/* Float animation for hero screenshot */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-screenshot { animation: float 6s ease-in-out infinite; }

/* ================================================================
   PREMIUM DESIGN UPGRADE — Luxury & Depth Enhancements
   ================================================================ */

/* --- New Keyframe Animations --- */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes aurora {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes orb-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.05); }
}

@keyframes orb-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-25px, 30px) scale(1.08); }
  50% { transform: translate(35px, -15px) scale(0.92); }
  75% { transform: translate(-10px, -25px) scale(1.12); }
}

@keyframes float-shape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float-shape-2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-120deg); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes badge-shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes hero-float-3d {
  0%, 100% { transform: perspective(1200px) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateX(1.5deg) translateY(-6px); }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--teal-d), var(--cyan));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* --- Navbar Premium --- */
.navbar {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, .04);
}
.nav-actions .btn-main.btn-sm {
  box-shadow: 0 2px 12px rgba(13, 148, 136, .25);
  position: relative;
  overflow: hidden;
}
.nav-actions .btn-main.btn-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: shimmer 3s infinite;
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad-btn);
  border-radius: 1px;
  transition: all .3s;
  transform: translateX(-50%);
}
.nav-links a:hover::after {
  width: 100%;
}

/* --- Hero Premium --- */
.hero {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(13, 148, 136, .08), transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 20%, rgba(6, 182, 212, .06), transparent 50%),
    radial-gradient(ellipse 50% 50% at 0% 60%, rgba(91, 62, 150, .04), transparent 50%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(13, 148, 136, .04), transparent),
    linear-gradient(180deg, #fafffe 0%, #fbfefd 15%, #fff 40%, var(--bg) 100%);
}

/* Dot grid pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 148, 136, .06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black, transparent);
}

/* Central glow */
.hero-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(13, 148, 136, .07) 0%, rgba(6, 182, 212, .03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}

/* Floating geometric shapes */
.hero-float-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
}
.hero-float-shape.shape-1 {
  top: 15%;
  right: 8%;
  width: 60px;
  height: 60px;
  border: 3px solid var(--teal);
  border-radius: 12px;
  animation: float-shape 8s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(13, 148, 136, .2);
}
.hero-float-shape.shape-2 {
  top: 60%;
  left: 6%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 50%;
  animation: float-shape-2 6s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(6, 182, 212, .3);
}
.hero-float-shape.shape-3 {
  top: 25%;
  left: 10%;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 30px solid rgba(13, 148, 136, .4);
  animation: float-shape 10s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(13, 148, 136, .3));
}
.hero-float-shape.shape-4 {
  bottom: 25%;
  right: 10%;
  width: 32px;
  height: 32px;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  animation: float-shape-2 7s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(6, 182, 212, .25);
}

/* Enhanced Orbs */
.hero-bg .orb.a {
  width: 600px;
  height: 600px;
  opacity: .06;
  animation: orb-drift-a 15s ease-in-out infinite;
}
.hero-bg .orb.b {
  width: 500px;
  height: 500px;
  opacity: .05;
  animation: orb-drift-b 18s ease-in-out infinite;
}

/* Hero Badge Glassmorphism */
.hero-badge {
  background: rgba(13, 148, 136, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 148, 136, .2);
  position: relative;
  overflow: hidden;
}
.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, .15), transparent);
  animation: badge-shimmer 4s ease-in-out infinite;
}

/* Hero Title Enhancement */
.hero-title {
  text-shadow: 0 2px 40px rgba(0, 0, 0, .04);
}
.hero-title .grad {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 30%, #06b6d4 60%, #0d9488 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aurora 6s ease infinite;
}

/* CTA Button Shimmer */
.hero-btns .btn-main {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(13, 148, 136, .3);
  padding: 18px 44px;
  font-size: 17px;
  border-radius: 14px;
  letter-spacing: .5px;
}
.hero-btns .btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}
.hero-btns .btn-main:hover {
  box-shadow: 0 10px 40px rgba(13, 148, 136, .45);
  transform: translateY(-4px);
}
.hero-btns .btn-sec {
  padding: 18px 44px;
  font-size: 17px;
  border-radius: 14px;
  border-width: 2px;
}

/* Hero Stats Glass */
.hero-stats {
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(13, 148, 136, .2);
  box-shadow:
    0 8px 32px rgba(13, 148, 136, .1),
    inset 0 1px 0 rgba(255, 255, 255, .5);
}
.h-stat {
  background: transparent;
  border-left: 1px solid rgba(13, 148, 136, .1);
}
.h-stat:last-child { border-left: none; }
[dir="rtl"] .h-stat { border-left: none; border-right: 1px solid rgba(13, 148, 136, .1); }
[dir="rtl"] .h-stat:last-child { border-right: none; }
.h-stat .n {
  font-size: 24px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Screenshot 3D */
.hero-screenshot {
  box-shadow:
    0 25px 50px rgba(13, 148, 136, .18),
    0 50px 100px rgba(0, 0, 0, .12),
    0 0 0 1px rgba(13, 148, 136, .15),
    0 0 80px rgba(13, 148, 136, .08);
  animation: hero-float-3d 6s ease-in-out infinite;
  position: relative;
  border: 1px solid rgba(13, 148, 136, .2);
}
.hero-screenshot:hover {
  box-shadow:
    0 30px 60px rgba(13, 148, 136, .25),
    0 60px 120px rgba(0, 0, 0, .15),
    0 0 0 1px rgba(13, 148, 136, .2),
    0 0 100px rgba(13, 148, 136, .12);
}
.hero-screenshot::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 5%;
  right: 5%;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, .15) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

/* --- Feature Cards Premium --- */
section:not(.voxora-section) > .container > .feat-grid > .f-card,
section:not(.voxora-section) > .container > .security-grid > .f-card,
.feature-grid > .f-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Gradient accent line */
section:not(.voxora-section) .f-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
  background: var(--grad-btn);
  border-radius: 0 12px 12px 0;
  transition: height .4s ease;
}
[dir="ltr"] section:not(.voxora-section) .f-card::before {
  left: 0;
  right: auto;
  border-radius: 12px 0 0 12px;
}
section:not(.voxora-section) .f-card:hover::before {
  height: 100%;
}

/* Feature icon upgrade */
section:not(.voxora-section) .f-card .ic,
.feature-grid .f-card .f-icon {
  width: 52px;
  height: 52px;
  background: var(--grad-btn);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 148, 136, .2);
}
section:not(.voxora-section) .f-card .ic svg {
  stroke: #fff;
  width: 24px;
  height: 24px;
}

section:not(.voxora-section) .f-card:hover {
  box-shadow:
    0 8px 30px rgba(13, 148, 136, .1),
    0 20px 60px rgba(0, 0, 0, .04);
  transform: translateY(-4px);
}

/* --- Showcase Premium --- */
.showcase-tab.active {
  box-shadow: 0 4px 16px rgba(13, 148, 136, .1);
  position: relative;
}
.showcase-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--grad-btn);
  border-radius: 1px;
}

.showcase-screenshot {
  transition: all .4s ease;
}
.showcase-screenshot:hover {
  box-shadow:
    0 12px 40px rgba(13, 148, 136, .12),
    0 0 40px rgba(13, 148, 136, .05),
    0 0 0 1px rgba(13, 148, 136, .15);
}

/* --- Pricing Premium --- */
.price-card.popular {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--teal-d), var(--cyan), var(--teal-d)) border-box;
  background-size: 100% 100%, 200% 200%;
  animation: aurora 4s ease infinite;
  box-shadow: 0 8px 40px rgba(13, 148, 136, .15);
}
.price-card.popular:hover {
  box-shadow: 0 12px 50px rgba(13, 148, 136, .2);
  transform: translateY(-6px);
}

.popular-badge {
  box-shadow: 0 4px 16px rgba(13, 148, 136, .3);
  animation: glow-pulse 2s ease-in-out infinite;
}

.price-card.popular .price-amount {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 12px 40px rgba(13, 148, 136, .1),
    0 4px 16px rgba(0, 0, 0, .04);
}

/* --- Testimonials Premium --- */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-btn);
  opacity: 0;
  transition: opacity .3s;
}
.testimonial-card:hover::before {
  opacity: 1;
}
.testimonial-quote {
  font-size: 56px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .4;
}
.testimonial-avatar {
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--teal);
}
.testimonial-card:hover {
  box-shadow:
    0 8px 30px rgba(13, 148, 136, .1),
    0 0 20px rgba(13, 148, 136, .04);
}

/* --- Security Premium --- */
#security .f-card {
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(13,148,136,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
  position: relative;
}
#security .f-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-btn);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity .3s;
}
#security .f-card:hover::after {
  opacity: 1;
}
#security .f-card:hover {
  border-color: rgba(13,148,136,.15);
  box-shadow: 0 12px 40px rgba(13,148,136,.1), 0 4px 16px rgba(0,0,0,.03);
  transform: translateY(-5px);
}
#security .f-card .ic {
  width: 56px;
  height: 56px;
  background: var(--grad-btn);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(13, 148, 136, .22);
  position: relative;
}
#security .f-card .ic::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(13,148,136,.12);
}
#security .f-card .ic svg {
  stroke: #fff;
  width: 24px;
  height: 24px;
}
#security .f-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.3px;
}
#security .f-card p {
  font-size: 13.5px;
  line-height: 1.8;
}

/* --- CTA Premium --- */
.cta-section {
  background: linear-gradient(-45deg, #0a7a6f, #0d9488, #06b6d4, #0d9488);
  background-size: 300% 300%;
  animation: gradient-shift 8s ease infinite;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-section .btn-white {
  box-shadow: 0 4px 20px rgba(255, 255, 255, .25);
  position: relative;
  overflow: hidden;
}
.cta-section .btn-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, .1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
.cta-section .btn-white:hover {
  box-shadow: 0 8px 32px rgba(255, 255, 255, .35);
  transform: translateY(-3px);
}

/* --- Footer Premium --- */
footer {
  border-top: none;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-btn);
}
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
[dir="rtl"] .footer-col a::after {
  transform-origin: left;
}
.footer-col a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
[dir="rtl"] .footer-col a:hover::after {
  transform-origin: right;
}

/* --- Trust Strip (marquee) --- */
.trust-strip {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #0a7a6f 0%, #0d9488 40%, #06b6d4 100%);
  padding: 16px 0;
  position: relative;
}
.trust-strip::before,
.trust-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-strip::before {
  left: 0;
  background: linear-gradient(to right, #0a7a6f, transparent);
}
.trust-strip::after {
  right: 0;
  background: linear-gradient(to left, #06b6d4, transparent);
}
.trust-strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: trust-scroll 30s linear infinite;
}
[dir="rtl"] .trust-strip-track {
  animation: trust-scroll 30s linear infinite;
  direction: ltr;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-strip-item svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,.85);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.trust-strip-item span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .3px;
}
.trust-strip-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  flex-shrink: 0;
}
@keyframes trust-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Wave Dividers --- */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
.wave-divider.flip { transform: scaleY(-1); margin-top: 0; margin-bottom: -1px; }

/* --- "How it Works" Section --- */
.how-section {
  background: linear-gradient(180deg, var(--bg) 0%, #ecfdf5 50%, var(--bg) 100%);
  padding: 80px 24px;
  position: relative;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}
.how-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.how-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(13, 148, 136, .3);
  position: relative;
}
.how-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(13, 148, 136, .2);
  animation: float-shape 6s linear infinite;
}
.how-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(13, 148, 136, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}
.how-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--teal-d);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.how-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.how-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}
.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
}
.how-connector svg {
  width: 40px;
  height: 40px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  opacity: .4;
}
[dir="rtl"] .how-connector svg {
  transform: scaleX(-1);
}

/* --- Big Numbers Section --- */
.numbers-section {
  background: var(--bg);
  padding: 80px 24px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.number-card {
  text-align: center;
  padding: 36px 24px 32px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
}
.number-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13,148,136,.12);
  border-color: rgba(13,148,136,.25);
}
.number-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity .4s;
}
.number-card:hover .number-accent {
  opacity: 1;
}
.number-value {
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal-d), var(--teal), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.number-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .3px;
}
.number-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(13,148,136,.08), rgba(6,182,212,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all .4s;
}
.number-card:hover .number-icon {
  background: linear-gradient(135deg, rgba(13,148,136,.15), rgba(6,182,212,.15));
  transform: scale(1.08);
}
.number-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Platform Overview Section --- */
.platform-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, #f0fdfa 30%, #ecfdf5 70%, var(--bg) 100%);
  position: relative;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.platform-card {
  background: var(--white);
  border: 1px solid rgba(13, 148, 136, .1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-btn);
  transform: scaleX(0);
  transition: transform .4s;
}
.platform-card:hover::before {
  transform: scaleX(1);
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 148, 136, .12), 0 4px 16px rgba(0, 0, 0, .04);
  border-color: rgba(13, 148, 136, .2);
}
.platform-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(13, 148, 136, .25);
}
.platform-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.platform-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.platform-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.platform-card .platform-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.platform-card .platform-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--body);
  font-weight: 500;
}
.platform-feat svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* Highlight card (spans 2 cols) */
.platform-card.highlight {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #f0fdfa, #ecfdf5);
  border-color: rgba(13, 148, 136, .15);
}
.platform-card.highlight .platform-visual {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
  text-align: center;
}
.platform-card.highlight .platform-visual img {
  max-width: 100%;
  border-radius: 8px;
}

/* --- Vision Section (David) --- */
.vision-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(13,148,136,.05), transparent 60%);
  pointer-events: none;
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.vision-photo {
  position: relative;
}
.vision-photo img {
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(13,148,136,.1);
  display: block;
}
.vision-photo::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(13,148,136,.15);
  border-radius: 24px;
  z-index: -1;
}
[dir="rtl"] .vision-photo::before { right: auto; left: -16px; }
.vision-photo::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(13,148,136,.15), transparent 70%);
  filter: blur(10px);
}
.vision-content {
  position: relative;
}
.vision-content .sec-tag {
  text-align: start;
  margin-bottom: 12px;
}
.vision-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.vision-content .vision-text {
  font-size: 16px;
  color: var(--body);
  line-height: 1.9;
  margin-bottom: 24px;
}
.vision-quote {
  padding: 20px 24px;
  background: var(--teal-50);
  border-radius: 16px;
  border-right: 4px solid var(--teal);
  position: relative;
  margin-bottom: 24px;
}
[dir="ltr"] .vision-quote { border-right: none; border-left: 4px solid var(--teal); }
.vision-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  font-weight: 500;
}
.vision-quote .quote-attr {
  margin-top: 12px;
  font-size: 14px;
  color: var(--teal-d);
  font-weight: 700;
  font-style: normal;
}
.vision-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vision-stat {
  text-align: center;
  padding: 16px 8px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.vision-stat .vs-val {
  font-size: 28px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vision-stat .vs-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- Integrations / Partners Strip --- */
.integrations-section {
  padding: 48px 24px;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.integrations-section .sec-tag {
  margin-bottom: 24px;
}
.integrations-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .5;
  transition: all .3s;
  filter: grayscale(1);
}
.integration-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-3px);
}
.integration-item svg {
  width: 40px;
  height: 40px;
}
.integration-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .5px;
}

/* --- Security Certifications Grid --- */
.security-certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 40px;
}
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px 28px;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 20px;
  text-align: center;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.cert-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-btn);
  opacity: 0;
  transition: opacity .3s;
}
.cert-badge:hover {
  border-color: rgba(13,148,136,.15);
  box-shadow: 0 12px 40px rgba(13,148,136,.1), 0 4px 16px rgba(0,0,0,.04);
  transform: translateY(-6px);
}
.cert-badge:hover::before {
  opacity: 1;
}
.cert-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(13,148,136,.25);
  position: relative;
}
.cert-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(13,148,136,.15);
}
.cert-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cert-badge h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.3px;
}
.cert-badge p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Security Expanded Details --- */
.security-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.security-detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.security-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(13,148,136,.08);
  border-radius: 16px;
  transition: all .35s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,.02);
  position: relative;
  overflow: hidden;
}
.security-detail-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-btn);
  opacity: 0;
  transition: opacity .3s;
}
[dir="ltr"] .security-detail-item::before {
  right: auto;
  left: 0;
}
.security-detail-item:hover {
  border-color: rgba(13,148,136,.15);
  box-shadow: 0 8px 28px rgba(13,148,136,.08), 0 2px 8px rgba(0,0,0,.02);
  transform: translateX(4px);
}
[dir="ltr"] .security-detail-item:hover {
  transform: translateX(-4px);
}
.security-detail-item:hover::before {
  opacity: 1;
}
.security-detail-item .sdi-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(13,148,136,.2);
}
.security-detail-item .sdi-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.security-detail-item h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -.2px;
}
.security-detail-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.security-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec-person-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.12));
}

/* --- CTA Centered --- */
.cta-centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-centered h2 {
  margin-bottom: 16px;
}
.cta-centered p {
  margin: 0 auto 32px;
  max-width: 500px;
}

/* --- Security Shield Art --- */
.security-shield-art {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.security-shield-art::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,.06) 0%, transparent 70%);
}
.security-shield-art svg {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(13,148,136,.15));
  animation: shield-float 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes shield-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

/* --- Subtle Avatar in Section Heads --- */
.sec-head-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--teal);
  box-shadow: 0 4px 16px rgba(13,148,136,.18);
  margin-top: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* --- Testimonial Photo Avatar --- */
.testimonial-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--teal);
  flex-shrink: 0;
}

/* --- Voxora Animated Gradient --- */
.voxora-section {
  background: linear-gradient(-45deg, #0a7a6f, #0d9488, #06b6d4, #0d9488);
  background-size: 300% 300%;
  animation: gradient-shift 8s ease infinite;
}
.voxora-section .sec-tag {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
}
.voxora-section .sec-title,
.voxora-section .sec-desc {
  color: #fff;
}
.voxora-section .f-card::before { display: none; }
.voxora-section .f-card .ic {
  background: rgba(255,255,255,.12);
  box-shadow: none;
}
.voxora-section .f-card .ic svg { stroke: #fff; }

/* --- Enhanced Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(.98);
  transition: all .7s cubic-bezier(.22, 1, .36, 1);
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ================================================================
   DARK MODE
   ================================================================ */
[data-theme="dark"] {
  --bg: #0f1117;
  --white: #1a1d27;
  --card: #1a1d27;
  --text: #e8e8f0;
  --body: #b0b0c8;
  --muted: #7a7a96;
  --light: #4a4a62;
  --border: #2a2d3a;
}
[data-theme="dark"] .navbar {
  background: rgba(15, 17, 23, .92);
}
[data-theme="dark"] .hero {
  background: linear-gradient(180deg, #0f1117 0%, #161822 100%);
}
[data-theme="dark"] .screenshot-titlebar,
[data-theme="dark"] .showcase-screenshot .ss-bar {
  background: #1e2030;
}
[data-theme="dark"] .btn-sec {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}
[data-theme="dark"] .btn-sec:hover {
  border-color: var(--teal);
  color: var(--teal-l);
}
[data-theme="dark"] .f-card .ic {
  background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(6,182,212,.12));
}
[data-theme="dark"] .faq-question { color: var(--text); }
[data-theme="dark"] .h-stat .n { color: var(--teal-l); }
[data-theme="dark"] footer { background: #0f1117; }

/* Dark mode — premium elements */
[data-theme="dark"] .navbar {
  background: rgba(15, 17, 23, .88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(42, 45, 58, .6);
}
[data-theme="dark"] .hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(13, 148, 136, .08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, .05), transparent 50%),
    linear-gradient(180deg, #0f1117 0%, #161822 100%);
}
[data-theme="dark"] .hero-grid-pattern {
  background-image: radial-gradient(rgba(13, 148, 136, .05) 1px, transparent 1px);
}
[data-theme="dark"] .hero-glow {
  background: radial-gradient(circle, rgba(13, 148, 136, .07) 0%, transparent 70%);
}
[data-theme="dark"] .hero-badge {
  background: rgba(13, 148, 136, .08);
  border-color: rgba(13, 148, 136, .2);
}
[data-theme="dark"] .hero-stats {
  background: rgba(26, 29, 39, .6);
  border-color: rgba(13, 148, 136, .15);
}
[data-theme="dark"] .hero-screenshot {
  box-shadow:
    0 25px 50px rgba(0, 0, 0, .3),
    0 50px 100px rgba(0, 0, 0, .2),
    0 0 0 1px rgba(13, 148, 136, .15);
}
[data-theme="dark"] .trust-strip {
  background: linear-gradient(135deg, #064e47 0%, #0a6e64 40%, #047e94 100%);
}
[data-theme="dark"] section:not(.voxora-section) .f-card {
  background: rgba(26, 29, 39, .8);
}
[data-theme="dark"] .price-card.popular {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--teal-d), var(--cyan), var(--teal-d)) border-box;
}
[data-theme="dark"] .testimonial-avatar {
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--teal);
}
[data-theme="dark"] .how-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0d1a17 50%, var(--bg) 100%);
}
[data-theme="dark"] .how-icon {
  background: var(--white);
  border-color: var(--border);
}
[data-theme="dark"] .platform-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0d1a17 30%, #0d1a17 70%, var(--bg) 100%);
}
[data-theme="dark"] .platform-card {
  background: var(--white);
  border-color: var(--border);
}
[data-theme="dark"] .platform-card.highlight {
  background: linear-gradient(135deg, rgba(13,148,136,.08), rgba(6,182,212,.05));
}
[data-theme="dark"] .wave-divider svg path { fill: var(--bg); }
[data-theme="dark"] .wave-divider.wave-white svg path { fill: var(--white); }
/* Dark mode — number cards */
[data-theme="dark"] .number-card {
  background: var(--white);
  border-color: var(--border);
}
[data-theme="dark"] .number-card:hover {
  border-color: rgba(13,148,136,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
/* Dark mode — new sections */
[data-theme="dark"] .vision-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0d1a17 50%, var(--bg) 100%);
}
[data-theme="dark"] .vision-photo img {
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
[data-theme="dark"] .vision-photo::before {
  border-color: rgba(13,148,136,.1);
}
[data-theme="dark"] .vision-quote {
  background: rgba(13,148,136,.08);
}
[data-theme="dark"] .vision-stat {
  background: var(--white);
  border-color: var(--border);
}
[data-theme="dark"] .integrations-section {
  background: var(--white);
  border-color: var(--border);
}
[data-theme="dark"] .cert-badge {
  background: var(--white);
  border-color: var(--border);
}
[data-theme="dark"] #security .f-card {
  border-color: var(--border);
}
[data-theme="dark"] .security-detail-item {
  background: var(--white);
  border-color: var(--border);
}

/* Theme Toggle Button */
.theme-toggle {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--muted);
  transition: all .3s;
  cursor: pointer;
}
.theme-toggle:hover { color: var(--teal-d); background: var(--bg); }
.theme-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { gap: 28px; }
  .footer-top { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 900px) {
  .navbar { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Mobile menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
  }
  .nav-links.open a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
  }
  .nav-links.open a:hover { background: var(--bg); }
  .nav-actions .btn-main.btn-sm { display: none; }

  /* Subpage mobile menu */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    z-index: 99;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav-menu .nav-links a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
  }
  .nav-menu .nav-links a:hover { background: var(--bg); }
  .nav-menu .nav-actions {
    padding-top: 8px;
    border-top: 1px solid var(--border);
    justify-content: center;
  }

  section { padding: 80px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }

  .hero { padding: 100px 16px 40px; min-height: auto; }
  .hero-title { font-size: clamp(32px, 7vw, 48px); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-screenshot { animation: none; transform: none; }
  .hero-screenshot:hover { transform: none; }
  .hero-float-shape { display: none; }
  .hero-grid-pattern { display: none; }
  .hero-glow { width: 300px; height: 300px; }
  .trust-strip-item { padding: 0 20px; }
  .trust-strip-item span { font-size: 13px; }

  .how-grid { grid-template-columns: 1fr; gap: 0; }
  .how-connector { transform: rotate(90deg); padding: 0; margin: -8px 0; }
  [dir="rtl"] .how-connector { transform: rotate(90deg); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .number-value { font-size: 36px; }
  .number-card { padding: 28px 16px 24px; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card.highlight { grid-column: span 1; grid-template-columns: 1fr; }

  .showcase-grid { grid-template-columns: 1fr; gap: 24px; }

  .feat-grid,
  .security-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }

  .footer-top { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 40px 16px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-newsletter { flex-direction: column; text-align: center; }
  .footer-newsletter-form { width: 100%; }
  .footer-newsletter-form input { min-width: auto; width: 100%; }

  .video-modal-content { padding: 32px 20px; }

  /* New sections responsive */
  .vision-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .vision-content .sec-tag { text-align: center; }
  .vision-content h2 { text-align: center; }
  .vision-photo img { max-width: 320px; margin: 0 auto; }
  .vision-photo::before { display: none; }
  .vision-stats { grid-template-columns: repeat(3, 1fr); }
  .vision-quote { border-right: none; border-top: 4px solid var(--teal); }
  [dir="ltr"] .vision-quote { border-left: none; border-top: 4px solid var(--teal); }
  .integrations-grid { gap: 32px; }
  .security-certs { grid-template-columns: repeat(2, 1fr); }
  .security-details { grid-template-columns: 1fr; gap: 32px; }
  .security-visual { order: -1; }
  .sec-person-img { max-width: 260px; }
  .security-shield-art svg { width: 180px; }
  .sec-head-avatar { width: 48px; height: 48px; }

  .a11y-widget { bottom: 16px; left: 16px; }
  .a11y-panel { width: 260px; }

  .nav-logo img { height: 42px; }
  .page-header p { max-width: 100%; }
}

@media (max-width: 600px) {
  section { padding: 60px 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .showcase-tabs { gap: 4px; }
  .showcase-tab { padding: 8px 14px; font-size: 12px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-main, .btn-sec, .btn-lg { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-strip-item { padding: 0 16px; }
  .trust-strip-item span { font-size: 12px; }
  .trust-strip-track { animation-duration: 20s; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .number-value { font-size: 28px; }
  .number-card { padding: 24px 12px 20px; border-radius: 16px; }
  .number-icon { width: 44px; height: 44px; }
  .wave-divider svg { height: 30px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .security-certs { grid-template-columns: 1fr 1fr; }
  .integrations-grid { gap: 20px; }
  .integration-item svg { width: 32px; height: 32px; }
  .vision-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .vision-stat .vs-val { font-size: 22px; }
  .security-shield-art svg { width: 140px; }
  .video-modal-content { padding: 24px 16px; width: 95%; }
  .nav-logo img { height: 36px; }
  .lang-dropdown { min-width: 120px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
  .a11y-widget { bottom: 12px; left: 12px; }
  .a11y-panel { width: 240px; bottom: 50px; }
}
