/* ── 2 fois shared landing styles ─────────────────────────── */
:root {
  --primary: #FF6B35;
  --primary-dark: #E8441A;
  --primary-light: #FF8A5C;
  --primary-pale: #FFF0EB;
  --accent: #5856D6;
  --accent-pale: #EEEEFF;
  --gold: #FFB340;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --fg: #1A1A2E;
  --muted: #6B7280;
  --border: #E8E8ED;
  --success: #34C759;
  --success-pale: #F0FFF4;
  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 40px;
  --sh-sm: 0 2px 8px rgba(0,0,0,.06);
  --sh-md: 0 8px 32px rgba(0,0,0,.10);
  --sh-lg: 0 24px 64px rgba(0,0,0,.14);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--fg);
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-pale); color: var(--primary);
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
}
.badge-accent { background: var(--accent-pale); color: var(--accent); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,250,250,.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
nav.scrolled { box-shadow: var(--sh-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo img { width: 46px; height: 46px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); padding: 6px 10px; border-radius: 8px; white-space: nowrap; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--fg); background: rgba(0,0,0,.04); }
.nav-cta { background: var(--fg) !important; color: #fff !important; font-weight: 700 !important; border-radius: var(--r-sm) !important; }
.nav-cta:hover { opacity: .88; }
.lang-switch { display: inline-flex; align-items: center; gap: 4px; padding: 4px; border: 1px solid var(--border); border-radius: 100px; background: rgba(255,255,255,.7); }
.lang-switch button { border: 0; border-radius: 100px; padding: 7px 10px; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 12px; font-weight: 800; }
.lang-switch button[aria-pressed="true"] { background: var(--fg); color: #fff; }
@media (max-width: 860px) { .nav-links li.nav-hide-mobile { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 15px; font-weight: 700; border-radius: var(--r-md); padding: 13px 26px; cursor: pointer; border: none; transition: transform .15s, box-shadow .15s, opacity .15s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 20px rgba(255,107,53,.35); }
.btn-primary:hover { box-shadow: 0 8px 28px rgba(255,107,53,.45); }
.btn-dark { background: var(--fg); color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.btn-outline { background: var(--surface); color: var(--fg); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); }
.btn-white { background: #fff; color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-lg { font-size: 16px; padding: 15px 30px; }

/* Hero */
.hero { padding: 128px 0 80px; position: relative; overflow: hidden; background: linear-gradient(160deg, #fff 0%, #FFF7F4 60%, #fff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-eyebrow { margin-bottom: 20px; }
.hero-title { font-size: clamp(38px, 5vw, 60px); font-weight: 900; line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 20px; }
.hero-title .hl { color: var(--primary); }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.trust-chip { font-size: 12px; font-weight: 700; color: var(--muted); padding: 7px 12px; border: 1px solid var(--border); border-radius: 100px; background: rgba(255,255,255,.7); }
.hero-media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 14 / 9; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* Bare variant: transparent PNG (e.g. floating phone fan) — no box/crop */
.hero-media-bare { border-radius: 0; overflow: visible; box-shadow: none; aspect-ratio: auto; }
.hero-media-bare img { width: 100%; height: auto; object-fit: contain; }

/* Sections */
.section { padding: 92px 0; }
.section.alt { background: var(--surface); }
.section-hdr { text-align: center; margin-bottom: 56px; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1px; margin: 12px 0 14px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* Cards grid */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--bg); border-radius: var(--r-lg); padding: 30px 26px; border: 1.5px solid var(--border); transition: transform .2s, box-shadow .2s, border-color .2s; }
.section.alt .card { background: var(--surface); }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(255,107,53,.3); }
.card-ico { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; background: var(--primary-pale); color: var(--primary); }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.2px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: var(--surface); border-radius: var(--r-lg); padding: 30px 24px; border: 1.5px solid var(--border); }
.section.alt .step { background: var(--bg); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 4px 16px rgba(255,107,53,.35); }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Split (image + list) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 14 / 9; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split .section-title, .split .section-sub { text-align: left; margin-left: 0; }
.feature-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--muted); }
.feature-list .fl-ico { width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.feature-list strong { color: var(--fg); }

/* Stats */
.stat-band { background: var(--fg); padding: 44px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat { text-align: center; padding: 0 18px; }
.stat-num { font-size: 36px; font-weight: 900; color: var(--primary); letter-spacing: -1px; }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 4px; font-weight: 500; }

/* Success story / case study */
.case { background: linear-gradient(160deg, var(--primary-pale) 0%, var(--surface) 72%); }
.case-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: stretch; max-width: 980px; margin: 0 auto; }
.case-snapshot { background: var(--fg); color: #fff; border-radius: var(--r-lg); padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--sh-md); }
.case-snap-row { display: flex; flex-direction: column; gap: 3px; }
.case-snap-k { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.case-snap-v { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.4; }
.case-snap-v.hl { color: var(--primary-light); }
.case .section-title .hl { color: var(--primary); }
.case-body { display: flex; flex-direction: column; gap: 18px; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.case-metric { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 18px 14px; text-align: center; box-shadow: var(--sh-sm); }
.case-metric-num { font-size: 24px; font-weight: 900; color: var(--primary); letter-spacing: -.5px; }
.case-metric-lbl { font-size: 12px; color: var(--muted); margin-top: 5px; line-height: 1.4; }
.case-quote { background: var(--surface); border: 1.5px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--r-md); padding: 22px 24px; }
.case-quote p { font-size: 16px; font-weight: 600; line-height: 1.6; color: var(--fg); }
.case-quote footer { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--muted); }

/* Lead form */
.lead { background: var(--surface); }
.lead-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lead-copy .section-title, .lead-copy .section-sub { text-align: left; margin-left: 0; }
.perks { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.perks li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.perks .p-ico { width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--primary); }
.perks strong { color: var(--fg); }
.lead-card { background: var(--bg); border-radius: var(--r-xl); padding: 38px; border: 1.5px solid var(--border); box-shadow: var(--sh-sm); }
.lead-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.lead-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.form-row { display: flex; flex-direction: column; gap: 12px; }
.form-input { width: 100%; padding: 12px 16px; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: 14px; font-family: inherit; color: var(--fg); outline: none; transition: border-color .2s, box-shadow .2s; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,53,.12); }
.form-input::placeholder { color: var(--muted); }
.form-submit { width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none; border-radius: var(--r-sm); font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; transition: opacity .2s, transform .15s; }
.form-submit:hover { opacity: .9; transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.form-note svg { vertical-align: -0.15em; }

/* FAQ */
.faq-grid { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border-radius: var(--r-md); border: 1.5px solid var(--border); overflow: hidden; }
.section.alt .faq-item { background: var(--bg); }
.faq-q { width: 100%; padding: 20px 24px; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 15px; font-weight: 600; color: var(--fg); font-family: inherit; cursor: pointer; text-align: left; transition: background .2s; }
.faq-q:hover { background: rgba(0,0,0,.02); }
.faq-q svg { flex-shrink: 0; transition: transform .3s; color: var(--muted); }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.22,1,.36,1), padding .35s; font-size: 14px; color: var(--muted); line-height: 1.7; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 260px; padding: 0 24px 20px; }

/* CTA */
.cta { padding: 92px 0; background: linear-gradient(135deg, var(--primary) 0%, #FF8A5C 100%); position: relative; overflow: hidden; }
.cta-deco { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.12) 0%, transparent 60%); }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(30px, 5vw, 48px); font-weight: 900; color: #fff; letter-spacing: -1.2px; margin-bottom: 14px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Footer */
footer { background: var(--fg); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo img { width: 42px; height: 42px; object-fit: contain; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 16px; letter-spacing: .8px; text-transform: uppercase; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-langs { display: flex; gap: 10px; }
.footer-langs button { border: 0; background: transparent; cursor: pointer; font: inherit; font-size: 13px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-langs button:hover, .footer-langs button[aria-pressed="true"] { color: rgba(255,255,255,.8); }

/* Sticky mobile CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; display: none; align-items: center; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(20px); border-top: 1px solid var(--border); box-shadow: 0 -8px 24px rgba(0,0,0,.08); }
.sticky-cta-text { flex: 1; font-size: 13px; font-weight: 700; color: var(--fg); line-height: 1.3; }
.sticky-cta .btn { padding: 11px 18px; font-size: 14px; }

/* RTL */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .section-hdr, html[dir="rtl"] .cta-inner, html[dir="rtl"] .stat { text-align: center; }
html[dir="rtl"] .split .section-title, html[dir="rtl"] .split .section-sub,
html[dir="rtl"] .lead-copy .section-title, html[dir="rtl"] .lead-copy .section-sub { text-align: right; }
html[dir="rtl"] .faq-q { text-align: right; }
html[dir="rtl"] .case-quote { border-left: 1.5px solid var(--border); border-right: 4px solid var(--primary); }

/* Responsive */
@media (max-width: 860px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}
@media (max-width: 960px) {
  .hero-grid, .split, .lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 100px; }
  .hero-media, .split-media { order: -1; }
  .split .section-title, .split .section-sub, .lead-copy .section-title, .lead-copy .section-sub { text-align: center; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr; gap: 28px; }
  .case-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .cards, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions .btn { width: 100%; }
}
