/* ============================================
   OZOOMA — Public Marketing Site Styles
   Accent: #6b4eff
   ============================================ */

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

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6b4eff;
  --primary-light: #8b73ff;
  --primary-lighter: #b8a4ff;
  --primary-bg: #f3f0ff;
  --primary-dark: #5438cc;
  --primary-gradient: linear-gradient(135deg, #6b4eff 0%, #8b73ff 50%, #a78bfa 100%);
  --primary-gradient-r: linear-gradient(135deg, #a78bfa 0%, #8b73ff 50%, #6b4eff 100%);
  --hero-gradient: linear-gradient(160deg, #0f0c29 0%, #1a1440 30%, #302b63 60%, #6b4eff 100%);
  --text-dark: #1a1a2e;
  --text-medium: #4a4a68;
  --text-light: #7c7c96;
  --bg-white: #ffffff;
  --bg-light: #f8f7ff;
  --bg-gray: #f4f4f8;
  --border: #e4e2f0;
  --shadow-sm: 0 2px 8px rgba(107,78,255,.08);
  --shadow-md: 0 8px 30px rgba(107,78,255,.12);
  --shadow-lg: 0 20px 60px rgba(107,78,255,.15);
  --shadow-card: 0 4px 20px rgba(0,0,0,.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
  --nav-height: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant', Georgia, serif;
  font-optical-sizing: auto;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* RTL */
body.rtl { direction: rtl; text-align: right; }
body.rtl .nav-links { direction: rtl; }
body.rtl .hero-buttons { flex-direction: row-reverse; }
body.rtl .step-number { margin-right: 0; margin-left: 18px; }
body.rtl .feature-icon { margin-right: 0; margin-left: auto; }
body.rtl .footer-grid { direction: rtl; }
body.rtl .hamburger { margin-left: 0; margin-right: auto; }
body.rtl .nav-cta { margin-left: 0; margin-right: auto; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.25; letter-spacing: -.015em; }
h3 { font-size: 1.35rem; font-weight: 600; line-height: 1.35; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-medium); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  background: var(--primary-bg);
  border: 1px solid var(--primary-lighter);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.15rem; max-width: 640px; margin: 0 auto 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(107,78,255,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,78,255,.45);
}
.btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; border-radius: var(--radius-md); }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
  padding: 12px 0 4px;
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  gap: 18px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  transition: var(--transition);
  z-index: 1001;
  flex-shrink: 0;
}
.navbar.scrolled .nav-logo { color: var(--text-dark); }
.nav-logo img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.nav-logo-svg {
  height: 72px;
  width: auto;
}
/* White logo on transparent nav */
.nav-logo-svg .ll-s { fill: #fff; stroke: #fff; }
.nav-logo-svg .ll-d { stroke: #fff; }
/* Dark logo on scrolled nav */
.navbar.scrolled .nav-logo-svg .ll-s { fill: #000; stroke: #000; }
.navbar.scrolled .nav-logo-svg .ll-d { stroke: #000; }
.navbar.scrolled .nav-logo img {
  filter: none;
}

/* ---- Logo draw animation ---- */
@keyframes drawCircle {
  from { stroke-dashoffset: 218; }
  to   { stroke-dashoffset: 0; }
}
@keyframes drawLineShort {
  from { stroke-dashoffset: 51; }
  to   { stroke-dashoffset: 0; }
}
@keyframes drawLineLong {
  from { stroke-dashoffset: 169; }
  to   { stroke-dashoffset: 0; }
}
@keyframes drawLineV {
  from { stroke-dashoffset: 343; }
  to   { stroke-dashoffset: 0; }
}

/* Circles: staggered start, 0.6s each */
.logo-cr { stroke-dasharray: 218; stroke-dashoffset: 218; animation: drawCircle .6s ease-out .05s forwards; }
.logo-cm { stroke-dasharray: 218; stroke-dashoffset: 218; animation: drawCircle .6s ease-out .15s forwards; }
.logo-cl { stroke-dasharray: 218; stroke-dashoffset: 218; animation: drawCircle .6s ease-out .25s forwards; }

/* V-lines: after circles ~0.7s, fast 0.25s each, staggered 0.06s */
.logo-v1 { stroke-dasharray: 51;  stroke-dashoffset: 51;  animation: drawLineShort .25s ease-out .72s forwards; }
.logo-v2 { stroke-dasharray: 169; stroke-dashoffset: 169; animation: drawLineLong  .25s ease-out .78s forwards; }
.logo-v3 { stroke-dasharray: 169; stroke-dashoffset: 169; animation: drawLineLong  .25s ease-out .84s forwards; }
.logo-v4 { stroke-dasharray: 169; stroke-dashoffset: 169; animation: drawLineLong  .25s ease-out .90s forwards; }
.logo-v5 { stroke-dasharray: 169; stroke-dashoffset: 169; animation: drawLineLong  .25s ease-out .96s forwards; }
.logo-v6 { stroke-dasharray: 51;  stroke-dashoffset: 51;  animation: drawLineShort .25s ease-out 1.02s forwards; }

/* H-line: after v-lines ~1.27s, drawn top to bottom */
.logo-h  { stroke-dasharray: 343; stroke-dashoffset: 343; animation: drawLineV .4s ease-out 1.28s forwards; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}
.mobile-nav-extras {
  display: none;
}
.nav-links a {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
  position: relative;
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: var(--transition);
}
body.rtl .nav-links a::after { left: auto; right: 0; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a { color: var(--text-medium); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }
.navbar.scrolled .nav-links a::after { background: var(--primary); }

/* ---- Nav Dropdown (Professionals) ---- */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap > a { display: inline-block; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 4px 0;
  z-index: 999;
}
body.rtl .nav-dropdown { left: auto; right: 50%; transform: translateX(50%); }
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 10px;
}
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 6px 0;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.7) !important;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}
.nav-dropdown a:hover { color: #fff !important; }
.navbar.scrolled .nav-dropdown a { color: var(--text-medium) !important; }
.navbar.scrolled .nav-dropdown a:hover { color: var(--primary) !important; }
.nav-dropdown a::after { display: none !important; }
.mobile-subnav { display: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.nav-login {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.navbar.scrolled .nav-login { color: var(--text-medium); }
.navbar.scrolled .nav-login:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.navbar.scrolled .nav-cta { background: var(--primary); color: #fff; }

/* Language Dropdown */
.lang-dropdown-wrap {
  position: relative;
  margin-left: 8px;
}
body.rtl .lang-dropdown-wrap { margin-left: 0; margin-right: 8px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  letter-spacing: .03em;
}
.lang-toggle:hover { border-color: rgba(255,255,255,.5); }
.lang-toggle .lang-globe {
  width: 13px; height: 13px;
  opacity: .75;
}
.lang-toggle .lang-caret {
  font-size: .5rem;
  opacity: .6;
  transition: transform .2s ease;
}
.lang-dropdown-wrap.open .lang-toggle .lang-caret { transform: rotate(180deg); }

.navbar.scrolled .lang-toggle {
  color: var(--text-medium);
  border-color: rgba(0,0,0,.15);
}
.navbar.scrolled .lang-toggle:hover { border-color: var(--primary); color: var(--primary); }

.lang-dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100px;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 4px 0;
  z-index: 999;
}
body.rtl .lang-dropdown-list { right: auto; left: 0; }
.lang-dropdown-wrap.open .lang-dropdown-list { display: block; }

.lang-option {
  display: block;
  width: 100%;
  padding: 7px 14px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-medium);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
body.rtl .lang-option { text-align: right; }
.lang-option:hover {
  background: var(--primary-bg);
  color: var(--primary);
}
.lang-option.active {
  color: var(--primary);
  font-weight: 700;
}

/* Keep old class for mobile fallback */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 3px;
}
.lang-btn {
  padding: 5px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.lang-btn.active {
  background: var(--primary);
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--hero-gradient);
  overflow: hidden;
  padding: 140px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,78,255,.3) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,115,255,.2) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--primary-lighter); }
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-image {
  margin-top: 64px;
  position: relative;
  z-index: 2;
}
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-light);
}
.section-center {
  text-align: center;
}

/* ---------- Problem Section ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary-gradient);
}
.problem-icon {
  width: 48px;
  height: 48px;
  background: #fee2e2;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.problem-card h4 { margin-bottom: 8px; }
.problem-card p { font-size: .92rem; }

/* ---------- Solution Section ---------- */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.solution-text h2 { margin-bottom: 20px; }
.solution-text p { margin-bottom: 32px; font-size: 1.05rem; }
.solution-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.solution-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.solution-check-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .85rem;
  flex-shrink: 0;
}
.solution-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--primary-gradient);
  padding: 3px;
}
.solution-image-inner {
  background: var(--bg-white);
  border-radius: calc(var(--radius-lg) - 3px);
  padding: 32px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-mockup {
  width: 100%;
  border-radius: var(--radius-md);
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-lighter);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: .92rem; line-height: 1.7; }

/* ---------- Audience / Who It's For ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.audience-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-lighter);
}
.audience-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.audience-card h4 { margin-bottom: 6px; }
.audience-card p { font-size: .88rem; }

/* ---------- CTA Banner ---------- */
.cta-section {
  background: var(--hero-gradient);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.15rem; margin-bottom: 36px; }

/* ---------- Steps / How It Works ---------- */
.steps-container {
  max-width: 720px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}
.step + .step { border-top: 1px solid var(--border); }
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 6px; }
.step-content p { font-size: .95rem; }

/* ---------- Pro Feature Rows ---------- */
.pro-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}
.pro-feature-row + .pro-feature-row { border-top: 1px solid var(--border); }
.pro-feature-row.reverse { direction: rtl; }
.pro-feature-row.reverse > * { direction: ltr; }
body.rtl .pro-feature-row.reverse { direction: ltr; }
body.rtl .pro-feature-row.reverse > * { direction: rtl; }
.pro-feature-text h3 { font-size: 1.5rem; margin-bottom: 14px; }
.pro-feature-text p { font-size: 1rem; margin-bottom: 20px; }
.pro-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pro-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
}
.pro-feature-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}
.pro-feature-visual {
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  font-size: 5rem;
}

/* ---------- Pricing ---------- */
.pricing-placeholder {
  text-align: center;
  padding: 80px 0;
}
.pricing-placeholder-box {
  background: var(--bg-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-placeholder-box h3 { margin-bottom: 12px; font-size: 1.4rem; }
.pricing-placeholder-box p { margin-bottom: 24px; }

/* ---------- About ---------- */
.about-hero {
  text-align: center;
  padding: 160px 24px 80px;
  background: var(--hero-gradient);
}
.about-hero h1 { color: #fff; margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,.7); font-size: 1.15rem; max-width: 640px; margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 48px;
}
.about-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-white);
}
.about-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.about-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.about-card p { font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: inherit;
  font-size: .95rem;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107,78,255,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info { padding-top: 20px; }
.contact-info h3 { margin-bottom: 24px; font-size: 1.4rem; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 2px; }
.contact-info-item p { font-size: .92rem; }

/* ---------- Footer ---------- */
.footer {
  background: #0f0c29;
  padding: 64px 0 32px;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: .9rem; margin-top: 12px; line-height: 1.8; }
.footer-brand img { height: 32px; margin-bottom: 4px; }
.footer-col h4 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ---------- Page Headers ---------- */
.page-header {
  padding: 160px 24px 80px;
  background: var(--hero-gradient);
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,.7); font-size: 1.15rem; max-width: 640px; margin: 0 auto; }

/* ---------- Features Page Detail ---------- */
.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}
.feature-detail + .feature-detail { border-top: 1px solid var(--border); }
.feature-detail.reverse { direction: rtl; }
.feature-detail.reverse > * { direction: ltr; }
body.rtl .feature-detail.reverse { direction: ltr; }
body.rtl .feature-detail.reverse > * { direction: rtl; }
.feature-detail-text h3 { font-size: 1.6rem; margin-bottom: 14px; }
.feature-detail-text p { font-size: 1rem; margin-bottom: 20px; }
.feature-detail-visual {
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  font-size: 5rem;
}

/* ---------- Demo Section ---------- */
.demo-section {
  background: var(--bg-light);
  padding: 100px 0;
  text-align: center;
}
.demo-placeholder {
  max-width: 800px;
  margin: 40px auto 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.demo-play-btn {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(107,78,255,.3);
}
.demo-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(107,78,255,.45);
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .solution-grid, .contact-grid, .feature-detail, .pro-feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-detail.reverse, .pro-feature-row.reverse { direction: ltr; }
  body.rtl .feature-detail.reverse, body.rtl .pro-feature-row.reverse { direction: rtl; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,12,41,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: #fff !important; font-size: 1.2rem; }
  .nav-dropdown-wrap { display: contents; }
  .nav-dropdown { display: none !important; }
  .mobile-subnav { display: block !important; font-size: 1rem !important; opacity: .7; }
  .nav-right { display: none; }
  .nav-links.open ~ .nav-right { display: none; }
  .hamburger { display: flex; }
  .mobile-nav-extras { display: flex; }
  
  .hero { min-height: auto; padding: 160px 20px 80px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }

  
  .mobile-nav-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
  }
  .mobile-nav-extras .lang-switcher { margin: 0; }
}

@media (max-width: 480px) {
  .audience-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
}

/* ---------- Content Sections (Long-form Landing Page) ---------- */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-row.reverse { direction: rtl; }
.content-row.reverse > * { direction: ltr; }
body.rtl .content-row { direction: rtl; }
body.rtl .content-row.reverse { direction: ltr; }
body.rtl .content-row.reverse > * { direction: rtl; }

.content-text h2 { margin-bottom: 16px; }
.content-text .section-label { margin-bottom: 20px; }
.content-text p { margin-bottom: 16px; font-size: 1.05rem; }

.content-flow {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--text-dark) !important;
  background: var(--primary-bg);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  margin-bottom: 24px !important;
}
body.rtl .content-flow { border-left: none; border-right: 4px solid var(--primary); }

.content-quote {
  font-size: .88rem;
  font-style: normal;
  color: var(--text-muted);
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}
.content-quote::before {
  content: '💡';
  flex-shrink: 0;
  font-style: normal;
}
body.rtl .content-quote {
  border: none;
  border-radius: 0;
}

.content-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-visual-inner {
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border);
}

.content-bullets {
  margin: 16px 0 24px;
}
.content-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 0;
}
.content-bullets li::before {
  content: '•';
  color: var(--primary);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
}

.content-full {
  max-width: 800px;
  margin: 0 auto;
}
.content-full.centered { text-align: center; }
.content-full h2 { margin-bottom: 20px; }
.content-full p { margin-bottom: 16px; font-size: 1.05rem; }
.content-full .content-bullets { text-align: left; display: inline-block; }
body.rtl .content-full .content-bullets { text-align: right; }

/* Hero modifications for wedding content */
.hero-desc {
  color: rgba(255,255,255,.7) !important;
  font-size: 1.05rem !important;
  margin-bottom: 24px !important;
  line-height: 1.8;
}
.hero-no-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  align-items: center;
}
.hero-no-list span {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  font-weight: 500;
}
.hero-tagline {
  color: rgba(255,255,255,.95) !important;
  font-size: 1.15rem !important;
  font-weight: 600;
  margin-bottom: 32px !important;
}
.hero-cta-highlight {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 24px;
  border-radius: 100px;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  margin-bottom: 28px;
  font-weight: 500;
}

/* Numbered advantages grid */
.numbered-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.numbered-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.numbered-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.numbered-item-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.numbered-item span {
  font-size: .95rem;
  color: var(--text-medium);
  padding-top: 6px;
}

/* Sub-section divider within a section */
.sub-section {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

/* Add-on cards */
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.addon-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}
.addon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.addon-card .addon-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.addon-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.addon-card p {
  margin-bottom: 12px;
  font-size: .95rem;
}
.addon-card .content-quote {
  margin-top: 16px;
  font-size: .85rem;
}

/* Google Drive badge */
.drive-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 12px;
}

/* Responsive for content sections */
@media (max-width: 1024px) {
  .content-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .content-row.reverse { direction: ltr; }
  body.rtl .content-row.reverse { direction: rtl; }
  .addon-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .content-visual-inner { min-height: 200px; font-size: 3.5rem; padding: 32px; }
  .numbered-list { grid-template-columns: 1fr; }
}

/* ---------- Homepage Overview Grid ---------- */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.overview-card {
  display: block;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-lighter);
}
.overview-card::after {
  content: '→';
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 1.2rem;
  color: var(--primary);
  opacity: 0;
  transition: var(--transition);
}
body.rtl .overview-card::after {
  content: '←';
  right: auto;
  left: 24px;
}
.overview-card:hover::after {
  opacity: 1;
}
.overview-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.overview-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.overview-card p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Homepage Steps Grid ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-card-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.step-card p {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .overview-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card { text-align: left; display: flex; gap: 16px; align-items: flex-start; padding: 24px; }
  body.rtl .step-card { text-align: right; }
  .step-card-num { flex-shrink: 0; margin-bottom: 0; }
}

/* ---------- Prose Block (professionals intro) ---------- */
.prose-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.prose-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 12px;
  color: var(--text-dark);
}

/* ---------- Professional Tab UI ---------- */
.pro-tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}
.pro-tab-btn {
  flex: 1;
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: inherit;
}
.pro-tab-btn:hover {
  color: var(--primary);
  background: rgba(107, 78, 255, .04);
}
.pro-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.pro-tab-panel {
  display: none;
}
.pro-tab-panel.active {
  display: block;
  animation: tabFadeIn .35s ease;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pro-block {
  margin-bottom: 48px;
}
.pro-block:last-child {
  margin-bottom: 0;
}
.pro-block-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light, #e0d9ff);
  display: inline-block;
}
.pro-block p {
  margin-bottom: 10px;
  line-height: 1.8;
}
@media (max-width: 600px) {
  .pro-tabs-bar { flex-direction: column; }
  .pro-tab-btn { text-align: center; border-bottom: none; border-inline-start: 3px solid transparent; }
  .pro-tab-btn.active { border-inline-start-color: var(--primary); border-bottom-color: transparent; }
}

/* ---------- Professional Workflow ---------- */
.pro-workflow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.pro-workflow-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  min-width: 180px;
  transition: var(--transition);
}
.pro-workflow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pro-workflow-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.pro-workflow-step h4 {
  margin-bottom: 6px;
}
.pro-workflow-step p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}
.pro-workflow-arrow {
  font-size: 1.5rem;
  color: var(--primary);
}
body.rtl .pro-workflow-arrow {
  transform: scaleX(-1);
}
@media (max-width: 600px) {
  .pro-workflow { gap: 16px; }
  .pro-workflow-step { min-width: 140px; padding: 24px 16px; }
  .pro-workflow-arrow { font-size: 1.2rem; }
}
