/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --bg-main: #0a8a8e;
  --bg-deep: #065e61;
  --bg-darkest: #043a3c;
  --heading-color: #441639;
  --text-primary: #2A3C42;
  --text-secondary: #6D3D74;
  --ivory: #F5F1E5;
  --ivory-warm: #EDE8D8;
  --crimson: #441639;
  --crimson-dark: #2D0E26;
  --terracotta: #D76F4B;
  --tan: #A17D5B;
  --surface-panel: #0eb4b7;
  --whatsapp: #25D366;
  --white: #FFFFFF;
  --border-glass: rgba(255,255,255,0.13);
  --border-light: #d4cfc3;
  --glass-bg: rgba(255,255,255,0.07);
  --glass-bg-hover: rgba(255,255,255,0.12);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'DM Sans',system-ui,sans-serif;
  color:var(--text-primary);
  background:var(--bg-main);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{border:none;background:none;cursor:pointer;font:inherit}

/* ═══════════════════════════════════════════
   BILINGUAL VISIBILITY
   ═══════════════════════════════════════════ */
.ar-only{display:none!important}
.en-only{display:block}
span.en-only{display:inline}
[dir=rtl] .en-only{display:none!important}
[dir=rtl] .ar-only{display:block!important}
[dir=rtl] span.ar-only{display:inline!important}
[dir=rtl] span.en-only{display:none!important}
[dir=rtl] body,[dir=rtl] button,[dir=rtl] input{
  font-family:'IBM Plex Sans Arabic','Segoe UI',Tahoma,sans-serif;
}

/* ═══════════════════════════════════════════
   SHARED
   ═══════════════════════════════════════════ */
.si{max-width:1140px;margin:0 auto;padding:0 40px}
.section-pad{padding:100px 0}
.section-pad-sm{padding:72px 0}

/* Section headers */
.sl{
  font-size:11px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  margin-bottom:14px;display:block;
}
.sl-light{color:rgba(255,255,255,.55)}
.sl-dark{color:var(--heading-color)}
.st{
  font-family:'Bricolage Grotesque',sans-serif;font-weight:400;
  line-height:1.15;letter-spacing:-.02em;margin-bottom:16px;
}
.st-lg{font-size:clamp(32px,4.5vw,48px)}
.st-light{color:var(--ivory)}
.st-dark{color:var(--text-primary)}
.ss{
  font-size:17px;line-height:1.7;max-width:560px;
}
.ss-light{color:rgba(255,255,255,.7)}
.ss-dark{color:var(--text-secondary)}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:15px 30px;border-radius:10px;font-size:15px;font-weight:600;
  white-space:nowrap;transition:all .3s cubic-bezier(.4,0,.2,1);
  letter-spacing:.01em;
  border:none;cursor:pointer;font-family:inherit;
}
.btn.btn-crimson{
  background:var(--ivory);color:var(--heading-color);
  border:1.5px solid var(--ivory);
  box-shadow:0 4px 20px rgba(0,0,0,.15);
  font-weight:700;
}
.btn.btn-crimson:hover{
  background:var(--white);border-color:var(--white);
  color:var(--heading-color);
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(0,0,0,.2);
}
/* On ivory backgrounds, use tyrian purple fill */
.bg-ivory .btn.btn-crimson,
.pricing-section .btn.btn-crimson,
.problem-section .btn.btn-crimson{
  background:var(--heading-color);color:var(--white);
  border-color:var(--heading-color);
  box-shadow:0 4px 20px rgba(68,22,57,.25);
}
.bg-ivory .btn.btn-crimson:hover,
.pricing-section .btn.btn-crimson:hover,
.problem-section .btn.btn-crimson:hover{
  background:var(--crimson-dark);border-color:var(--crimson-dark);
  color:var(--white);
  box-shadow:0 8px 30px rgba(68,22,57,.35);
}
.btn-outline-light{
  background:transparent;color:var(--ivory);
  border:1.5px solid rgba(255,255,255,.3);
}
.btn-outline-light:hover{
  background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.5);
  transform:translateY(-2px);
}
.btn-outline-dark{
  background:transparent;color:var(--heading-color);
  border:1.5px solid var(--heading-color);
}
.btn-outline-dark:hover{
  background:rgba(154,44,108,.06);transform:translateY(-2px);
}

/* Ivory surface sections */
.bg-ivory{background:var(--ivory)}
.bg-teal{background:var(--bg-main)}
.bg-deep{background:var(--bg-deep)}
.bg-darkest{background:var(--bg-darkest)}

/* RTL adjustments */
[dir=rtl] .st,[dir=rtl] .ss,[dir=rtl] .sl{text-align:right}
[dir=rtl] .hero-content{text-align:right}
[dir=rtl] .trust-row{justify-content:flex-end}
[dir=rtl] .hero{direction:rtl}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-up{
  opacity:0;transform:translateY(28px);
  transition:opacity .7s cubic-bezier(.4,0,.2,1),transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible{opacity:1;transform:translateY(0)}

@keyframes hero-fade-up{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes hero-slide-in{
  from{opacity:0;transform:translateX(40px)}
  to{opacity:1;transform:translateX(0)}
}
[dir=rtl] .hero-visual{animation-name:hero-slide-in-rtl!important}
@keyframes hero-slide-in-rtl{
  from{opacity:0;transform:translateX(-40px)}
  to{opacity:1;transform:translateX(0)}
}
@keyframes pulse-dot{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.35;transform:scale(.85)}
}
@keyframes cothon-rotate{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes float-phone{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
nav{
  display:flex;justify-content:space-between;align-items:center;
  gap:24px;
  padding:14px clamp(20px, 4vw, 48px);
  /* Tyrian purple — monochromatic, brand-aligned. Light purple → deep crimson. */
  background:linear-gradient(135deg, rgba(109, 61, 116, 0.94) 0%, rgba(68, 22, 57, 0.94) 60%, rgba(45, 14, 38, 0.94) 100%);

  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  position:sticky;top:0;z-index:200;
  transition:background .3s ease, box-shadow .3s ease;
}
nav a{text-decoration:none}
.nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.nav-logo img{
  height:56px;width:auto;
  filter:brightness(0) invert(1);
  transition:opacity .2s;
}
.nav-logo:hover img{opacity:.82}
.nav-links{display:flex;gap:8px;align-items:center}
.nav-links a{
  color:rgba(255,255,255,.78);font-size:16px;font-weight:500;
  letter-spacing:.01em;
  padding:8px 14px;border-radius:8px;
  transition:color .2s ease, background-color .2s ease;
}
.nav-links a:hover{color:#fff;background:rgba(255,255,255,.07)}
.nav-right{display:flex;gap:10px;align-items:center}
.nav-login,
.nav-cta{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 22px;border-radius:8px;
  font-size:15px;font-weight:700;letter-spacing:.01em;
  font-family:inherit;cursor:pointer;
  transition:transform .2s cubic-bezier(.4,0,.2,1), background-color .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.nav-login{
  background:transparent;color:var(--ivory);
  border:1.5px solid rgba(245,241,229,.55);
}
.nav-login:hover{
  background:rgba(245,241,229,.08);
  border-color:var(--ivory);
  color:#fff;
  transform:translateY(-1px);
}
.nav-login:active{transform:translateY(0)}
.nav-cta{
  background:var(--ivory);color:var(--heading-color);
  border:1.5px solid var(--ivory);
  box-shadow:0 1px 2px rgba(0,0,0,.12);
}
.nav-cta:hover{
  background:var(--white);border-color:var(--white);
  transform:translateY(-1px);
  box-shadow:0 8px 22px rgba(0,0,0,.22);
}
.nav-cta:active{transform:translateY(0);box-shadow:0 1px 2px rgba(0,0,0,.12)}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero-wrap{
  background:var(--bg-main);
  position:relative;overflow:hidden;
  min-height:calc(100vh - 62px);
  display:flex;align-items:center;
}
/* Cothon harbor rings */
.hero-wrap::before{
  content:'';position:absolute;
  right:-220px;top:-160px;
  width:620px;height:620px;
  border:50px solid rgba(255,255,255,.03);
  border-radius:50%;
  pointer-events:none;
  animation:cothon-rotate 90s linear infinite;
}
.hero-wrap::after{
  content:'';position:absolute;
  right:-140px;top:-80px;
  width:460px;height:460px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:50%;
  pointer-events:none;
  animation:cothon-rotate 120s linear infinite reverse;
}
/* Trade route lines */
.hero-deco{
  position:absolute;inset:0;pointer-events:none;overflow:hidden;
}
.hero-deco::before{
  content:'';position:absolute;
  left:-10%;top:20%;width:120%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.04) 30%,rgba(255,255,255,.08) 50%,rgba(255,255,255,.04) 70%,transparent);
  transform:rotate(-4deg);
}
.hero-deco::after{
  content:'';position:absolute;
  left:-10%;top:65%;width:120%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.03) 20%,rgba(255,255,255,.06) 50%,rgba(255,255,255,.03) 80%,transparent);
  transform:rotate(2deg);
}

.hero{
  max-width:1140px;margin:0 auto;padding:60px 40px 50px;
  display:grid;grid-template-columns:1fr 280px;gap:56px;
  align-items:center;position:relative;z-index:1;
}
.hero-content{
  opacity:0;animation:hero-fade-up .8s cubic-bezier(.4,0,.2,1) .15s forwards;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
  color:var(--ivory);font-size:12px;font-weight:600;
  padding:6px 16px;border-radius:24px;margin-bottom:24px;
  letter-spacing:.04em;backdrop-filter:blur(8px);
}
.h-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--terracotta);flex-shrink:0;
  animation:pulse-dot 2s ease-in-out infinite;
}
.hero h1{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(38px,5vw,64px);font-weight:400;
  color:var(--white);line-height:1.08;
  letter-spacing:-.03em;margin-bottom:22px;
}
.hero h1 em{font-style:italic;color:var(--ivory);opacity:.85}
.hero-sub{
  font-size:18px;color:rgba(255,255,255,.68);
  line-height:1.75;margin-bottom:34px;max-width:500px;font-weight:300;
}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:32px}
.trust-row{display:flex;gap:22px;flex-wrap:wrap}
.tc{
  display:flex;align-items:center;gap:7px;
  font-size:12.5px;color:rgba(255,255,255,.5);font-weight:500;
}
.tc-check{
  width:16px;height:16px;border-radius:50%;
  background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.tc-check::after{
  content:'';display:block;width:4px;height:7px;
  border-right:1.5px solid var(--terracotta);
  border-bottom:1.5px solid var(--terracotta);
  transform:rotate(45deg) translateY(-1px);
}

/* ── PHONE MOCKUP ── */
.hero-visual{
  opacity:0;
  animation:hero-slide-in .9s cubic-bezier(.4,0,.2,1) .4s forwards;
}
.phone{
  width:240px;background:var(--white);border-radius:28px;
  overflow:hidden;margin:0 auto;
  box-shadow:
    0 30px 80px rgba(4,58,60,.4),
    0 0 0 1px rgba(255,255,255,.08),
    0 0 120px rgba(14,180,183,.15);
  transition:transform .5s cubic-bezier(.4,0,.2,1);
  animation:float-phone 6s ease-in-out infinite;
}
.phone:hover{transform:translateY(-6px)!important}
.ph-bar{
  background:#075E54;padding:12px 14px;
  display:flex;align-items:center;gap:9px;
}
.ph-av{
  width:30px;height:30px;border-radius:50%;background:#128C7E;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;font-weight:700;color:white;flex-shrink:0;
}
.ph-info{line-height:1.3}
.ph-nm{color:white;font-size:12px;font-weight:600}
.ph-st{color:rgba(255,255,255,.7);font-size:10px}
.ph-body{
  background:#ECE5DD;padding:12px 10px;
  display:flex;flex-direction:column;gap:6px;
  max-height:380px;overflow:hidden;
}
.bw{display:flex;flex-direction:column}
.bw-out{align-items:flex-end}
.bw-in{align-items:flex-start}
[dir=rtl] .bw-out{align-items:flex-start}
[dir=rtl] .bw-in{align-items:flex-end}
.b{
  max-width:82%;padding:7px 10px;border-radius:8px;
  font-size:10.5px;line-height:1.45;
}
.b-out{
  background:#DCF8C6;
  border-bottom-right-radius:2px;
}
[dir=rtl] .b-out{border-bottom-right-radius:8px;border-bottom-left-radius:2px}
.b-in{
  background:var(--white);
  border-bottom-left-radius:2px;
}
[dir=rtl] .b-in{border-bottom-left-radius:8px;border-bottom-right-radius:2px}
.ts{
  text-align:center;font-size:9px;color:#8696a0;
  padding:4px 0;font-weight:500;
}
.pcard{
  background:rgba(255,255,255,.85);border:1px solid #e0dcd4;
  border-radius:6px;padding:6px 8px;margin:2px 0;
  font-size:9.5px;line-height:1.4;
}
.pcard-name{font-weight:600;color:#1a1a1a}
.pcard-meta{color:#65756e;font-size:9px}
.conf{
  background:#075E54;color:white;text-align:center;
  padding:6px;border-radius:6px;font-size:9.5px;font-weight:600;
  margin:3px 0;
}
.ph-note{
  text-align:center;padding:8px;font-size:10px;
  color:rgba(255,255,255,.45);font-style:italic;
  background:var(--bg-main);font-weight:300;
}

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-section{background:var(--ivory)}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;text-align:center;padding:72px 0;
}
.stat-item{
  padding:20px 16px;
  position:relative;
}
.stat-item:not(:last-child)::after{
  content:'';position:absolute;right:0;top:20%;height:60%;
  width:1px;background:var(--border-light);
}
[dir=rtl] .stat-item:not(:last-child)::after{right:auto;left:0}
.stat-num{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(48px,6vw,80px);font-weight:400;
  color:var(--heading-color);line-height:1;
  letter-spacing:-.03em;margin-bottom:8px;
}
.stat-label{
  font-size:13.5px;color:var(--text-secondary);
  line-height:1.5;max-width:200px;margin:0 auto;font-weight:400;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.hiw-section{background:var(--bg-deep);position:relative;overflow:hidden}
.hiw-section::before{
  content:'';position:absolute;left:-300px;bottom:-300px;
  width:600px;height:600px;
  border:80px solid rgba(255,255,255,.015);border-radius:50%;
  pointer-events:none;
}
.intro-content .ss{margin:0 auto}
.hiw-header{text-align:center;margin-bottom:56px}
.hiw-header .ss{margin:0 auto}

.steps-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-bottom:56px;
}
.step{
  position:relative;
  background:var(--glass-bg);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border:1px solid var(--border-glass);
  border-radius:16px;padding:36px 28px 28px;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  overflow:hidden;
}
.step:hover{
  background:var(--glass-bg-hover);
  border-color:rgba(255,255,255,.22);
  transform:translateY(-3px);
  box-shadow:0 12px 40px rgba(0,0,0,.15);
}
.step-bg-num{
  position:absolute;top:-12px;right:12px;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:120px;font-weight:400;line-height:1;
  color:rgba(255,255,255,.18);pointer-events:none;
  user-select:none;
}
[dir=rtl] .step-bg-num{right:auto;left:12px}
.step-time{
  display:inline-block;font-size:11px;font-weight:600;
  color:var(--terracotta);letter-spacing:.04em;
  background:rgba(215,111,75,.12);padding:4px 12px;
  border-radius:20px;margin-bottom:14px;
}
.step-title{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:20px;color:var(--ivory);font-weight:400;
  margin-bottom:10px;line-height:1.3;
}
.step-desc{
  font-size:14.5px;color:rgba(255,255,255,.6);
  line-height:1.65;font-weight:300;
}
[dir=rtl] .step{text-align:right}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════ */
.problem-section{background:var(--ivory)}
.problem-header{text-align:center;margin-bottom:56px}
.problem-header .ss{margin:0 auto}

.pain-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-bottom:64px;
}
.pain-card{
  background:var(--white);border-radius:14px;padding:28px 24px;
  border-left:3px solid var(--terracotta);
  box-shadow:0 2px 12px rgba(42,60,66,.06);
  transition:all .3s cubic-bezier(.4,0,.2,1);
}
[dir=rtl] .pain-card{border-left:none;border-right:3px solid var(--terracotta)}
.pain-card:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 30px rgba(42,60,66,.1);
}
.pain-icon{font-size:28px;margin-bottom:14px;display:block}
.pain-title{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:18px;color:var(--text-primary);
  margin-bottom:10px;line-height:1.3;
}
.pain-desc{
  font-size:14px;color:var(--text-secondary);
  line-height:1.65;font-weight:400;
}
[dir=rtl] .pain-card{text-align:right}

/* Before / After */
.compare-wrap{max-width:880px;margin:0 auto}
.compare-grid{
  display:grid;grid-template-columns:1fr 78px 1fr;gap:0;
  align-items:stretch;
}
.compare-col{}
.compare-header{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:18px;margin-bottom:20px;padding-bottom:12px;
  border-bottom:2px solid;
  display:flex;align-items:center;gap:8px;
}
.compare-header.bef{color:#BF2937;border-color:#BF2937}
.compare-header.aft{color:var(--bg-main);border-color:var(--bg-main)}
.compare-header-icon{font-size:22px;font-variation-settings:'FILL' 0,'wght' 600}
.compare-item{
  display:flex;align-items:flex-start;gap:10px;
  padding:10px 0;font-size:14px;line-height:1.55;
  color:var(--text-secondary);
}
.compare-icon{
  width:22px;height:22px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;line-height:1;margin-top:1px;
  font-variation-settings:'FILL' 0,'wght' 700;
}
.compare-icon.bad{background:rgba(191,41,55,.1);color:#BF2937}
.compare-icon.good{background:rgba(10,138,142,.1);color:var(--bg-main)}
.compare-mid{
  display:flex;align-items:center;justify-content:center;
}
.compare-arrow{
  color:var(--tan);font-size:70px!important;line-height:1;margin:0 15px;
  font-variation-settings:'FILL' 0,'wght' 800;
}
[dir=rtl] .compare-item{flex-direction:row-reverse;text-align:right}

/* ═══════════════════════════════════════════
   FEATURES — BENTO GRID
   ═══════════════════════════════════════════ */
.features-section{background:var(--bg-main);position:relative;overflow:hidden}
.features-section::before{
  content:'';position:absolute;
  right:-200px;top:50%;transform:translateY(-50%);
  width:500px;height:500px;
  border:60px solid rgba(255,255,255,.02);border-radius:50%;
  pointer-events:none;
}
.features-header{text-align:center;margin-bottom:56px}
.features-header .ss{margin:0 auto}

.bento{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:auto auto;
  gap:20px;
}
.bento-card{
  background:var(--glass-bg);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border:1px solid var(--border-glass);
  border-radius:16px;padding:32px 28px;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  position:relative;overflow:hidden;
}
.bento-card:hover{
  background:var(--glass-bg-hover);
  border-color:rgba(255,255,255,.22);
  transform:translateY(-3px);
  box-shadow:0 12px 40px rgba(0,0,0,.15);
}
.bento-hero{
  grid-column:span 2;
  background:linear-gradient(135deg,rgba(154,44,108,.12),var(--glass-bg));
  border-color:rgba(154,44,108,.2);
}
.bento-hero:hover{border-color:rgba(154,44,108,.35)}
.bento-icon{
  font-size:32px;margin-bottom:16px;display:block;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,.15));
}
.bento-title{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:20px;color:var(--ivory);font-weight:400;
  margin-bottom:10px;line-height:1.3;
}
.bento-hero .bento-title{font-size:24px}
.bento-desc{
  font-size:14px;color:rgba(255,255,255,.6);
  line-height:1.65;font-weight:300;
}
.bento-hero .bento-desc{font-size:15px;max-width:500px}
[dir=rtl] .bento-card{text-align:right}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing-section{background:var(--ivory)}
.pricing-header{text-align:center;margin-bottom:56px}
.pricing-header .ss{margin:0 auto}

.pricing-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:24px;max-width:780px;margin:0 auto 48px;
}
.price-card{
  background:var(--white);border-radius:16px;
  padding:36px 32px;
  border:1px solid var(--border-light);
  box-shadow:0 2px 12px rgba(42,60,66,.05);
  transition:all .35s;
  position:relative;overflow:hidden;
}
.price-card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(42,60,66,.1);
}
.price-card.featured{
  border-color:transparent;
  box-shadow:0 4px 24px rgba(154,44,108,.12);
}
.price-card.featured::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--heading-color),var(--bg-main));
}
.price-badge{
  display:inline-block;font-size:11px;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;
  padding:5px 14px;border-radius:20px;margin-bottom:16px;
}
.price-badge-free{background:rgba(10,138,142,.1);color:var(--bg-main)}
.price-badge-paid{background:rgba(154,44,108,.1);color:var(--heading-color)}
.price-amount{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:42px;color:var(--text-primary);
  margin-bottom:6px;line-height:1;
}
.price-amount span{font-size:16px;color:var(--text-secondary);font-family:'DM Sans',sans-serif}
.price-desc{
  font-size:14px;color:var(--text-secondary);
  line-height:1.6;margin-bottom:24px;
}
.price-features{list-style:none;display:flex;flex-direction:column;gap:10px}
.price-features li{
  display:flex;align-items:center;gap:10px;
  font-size:14px;color:var(--text-primary);font-weight:400;
}
.price-features li::before{
  content:'';display:block;width:18px;height:18px;flex-shrink:0;
  border-radius:50%;background:rgba(10,138,142,.1);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 11.5l-3-3 1-1 2 2 5-5 1 1z' fill='%230a8a8e'/%3E%3C/svg%3E");
  background-size:14px;background-position:center;background-repeat:no-repeat;
}
[dir=rtl] .price-features li{flex-direction:row-reverse;text-align:right}
[dir=rtl] .price-card{text-align:right}

/* Competitor comparison */
.cmp-table{
  max-width:680px;margin:0 auto;
  background:var(--white);border-radius:14px;
  overflow:hidden;border:1px solid var(--border-light);
  box-shadow:0 2px 12px rgba(42,60,66,.05);
}
.cmp-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:16px 28px;font-size:14px;
  border-bottom:1px solid rgba(212,207,195,.5);
}
.cmp-row:last-child{border-bottom:none}
.cmp-row.highlight{
  background:rgba(10,138,142,.04);
}
.cmp-name{color:var(--text-primary);flex:1}
.cmp-price{font-weight:600;text-align:right;white-space:nowrap}
.cmp-price.old{color:#BF2937}
.cmp-price.best{color:var(--bg-main);font-size:15px}
[dir=rtl] .cmp-row{flex-direction:row-reverse}
[dir=rtl] .cmp-price{text-align:left}

/* 4-plan pricing grid variant */
.pricing-grid-4{
  grid-template-columns:repeat(4,1fr);
  max-width:1100px;
  gap:16px;
}
@media(max-width:1024px){
  .pricing-grid-4{grid-template-columns:repeat(2,1fr)}
}

/* Additional plan badge variants */
.price-badge-pro{background:rgba(215,111,75,.12);color:var(--terracotta)}
.price-badge-ent{background:rgba(68,22,57,.1);color:var(--crimson)}

/* "Custom" price text in Enterprise card */
.price-amount-custom{font-size:28px;padding-top:8px;line-height:1.2}

/* Inline Coming Soon tag in plan feature lists */
.cs-tag{
  display:inline-block;font-size:10px;font-weight:700;
  letter-spacing:.04em;text-transform:uppercase;
  padding:2px 8px;border-radius:10px;
  background:rgba(10,138,142,.08);color:var(--bg-main);
  margin-left:6px;vertical-align:middle;
}
[dir=rtl] .cs-tag{margin-left:0;margin-right:6px}

/* Overage block */
.overage-block{
  max-width:680px;margin:0 auto 48px;
  background:var(--white);border-radius:14px;
  border:1px solid var(--border-light);
  padding:28px 32px;
  box-shadow:0 2px 12px rgba(42,60,66,.05);
}
.overage-title{
  font-size:18px;font-weight:700;color:var(--text-primary);
  margin:0 0 8px;font-family:'DM Sans',sans-serif;
}
.overage-copy{
  font-size:14px;color:var(--text-secondary);
  line-height:1.6;margin-bottom:20px;
}
.overage-table{
  border-radius:8px;overflow:hidden;
  border:1px solid var(--border-light);margin-bottom:16px;
}
.overage-row{
  display:grid;grid-template-columns:1fr 1fr 1fr;
  padding:10px 16px;font-size:13px;
  border-bottom:1px solid rgba(212,207,195,.5);
}
.overage-row:last-child{border-bottom:none}
.overage-head{
  background:rgba(10,138,142,.05);
  font-weight:700;font-size:11px;
  text-transform:uppercase;letter-spacing:.05em;
  color:var(--text-secondary);
}
.overage-note{
  font-size:12px;color:var(--text-secondary);
  margin:0;line-height:1.5;
}

/* Feature matrix */
.feat-matrix{
  max-width:1100px;margin:0 auto 48px;
}
.feat-matrix-title{
  font-size:18px;font-weight:700;color:var(--text-primary);
  margin:0 0 20px;text-align:center;
}
.feat-matrix-scroll{
  overflow-x:auto;-webkit-overflow-scrolling:touch;
  border-radius:14px;border:1px solid var(--border-light);
  box-shadow:0 2px 12px rgba(42,60,66,.05);
}
.feat-matrix-table{
  width:100%;border-collapse:collapse;
  background:var(--white);font-size:13px;
  min-width:600px;
}
.feat-matrix-table th{
  padding:12px 16px;text-align:center;
  font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:.06em;
  color:var(--text-secondary);
  background:rgba(10,138,142,.04);
  border-bottom:1px solid var(--border-light);
}
.feat-matrix-table th:first-child{text-align:left;min-width:220px}
.feat-matrix-table td{
  padding:11px 16px;
  border-bottom:1px solid rgba(212,207,195,.4);
  color:var(--text-primary);
}
.feat-matrix-table tr:last-child td{border-bottom:none}
.feat-matrix-table td:not(:first-child){text-align:center}
.feat-yes{color:var(--bg-main);font-weight:700;font-size:15px}
.feat-no{color:#BF2937;font-weight:700;font-size:15px}
.feat-soon{
  font-size:10px;font-weight:700;
  letter-spacing:.04em;text-transform:uppercase;
  color:var(--text-secondary);white-space:nowrap;
}
.feat-matrix-note{
  font-size:12px;color:var(--text-secondary);
  margin-top:12px;padding:0 4px;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-section{background:var(--ivory);border-top:1px solid var(--border-light)}
.faq-header{text-align:center;margin-bottom:48px}
.faq-list{max-width:720px;margin:0 auto}
.faq-item{
  border-bottom:1px solid var(--border-light);
}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;
  padding:22px 0;cursor:pointer;gap:16px;
  transition:color .2s;
}
.faq-q:hover{color:var(--heading-color)}
.faq-q-text{
  font-size:16px;font-weight:500;color:var(--text-primary);
  line-height:1.5;flex:1;
}
.faq-chevron{
  width:28px;height:28px;border-radius:50%;
  background:rgba(154,44,108,.06);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  transition:all .35s cubic-bezier(.4,0,.2,1);
}
.faq-chevron svg{
  width:14px;height:14px;stroke:var(--heading-color);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-chevron{background:rgba(154,44,108,.12)}
.faq-item.open .faq-chevron svg{transform:rotate(180deg)}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .45s cubic-bezier(.4,0,.2,1),
             padding .45s cubic-bezier(.4,0,.2,1);
}
.faq-a-inner{
  padding:0 0 22px;
  font-size:15px;color:var(--text-secondary);
  line-height:1.7;font-weight:400;
}
[dir=rtl] .faq-q{flex-direction:row-reverse}
[dir=rtl] .faq-q-text{text-align:right}
[dir=rtl] .faq-a-inner{text-align:right}

/* ═══════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════ */
.cta-section{
  background:var(--bg-deep);position:relative;overflow:hidden;
  text-align:center;
}
.cta-section::before{
  content:'';position:absolute;
  left:50%;top:50%;transform:translate(-50%,-50%);
  width:500px;height:500px;
  border:70px solid rgba(255,255,255,.02);border-radius:50%;
  pointer-events:none;
}
.cta-section::after{
  content:'';position:absolute;
  left:50%;top:50%;transform:translate(-50%,-50%);
  width:340px;height:340px;
  border:1px solid rgba(255,255,255,.05);border-radius:50%;
  pointer-events:none;
}
.cta-inner{position:relative;z-index:1}
.cta-headline{
  font-family:'Bricolage Grotesque',sans-serif;
  font-size:clamp(30px,4vw,44px);color:var(--ivory);
  font-weight:400;margin-bottom:16px;line-height:1.15;
  letter-spacing:-.02em;
}
.cta-sub{
  font-size:17px;color:rgba(255,255,255,.6);
  margin-bottom:36px;max-width:480px;margin-left:auto;margin-right:auto;
  line-height:1.7;font-weight:300;
}
.cta-buttons{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer{
  background:var(--bg-darkest);
  padding:48px 40px 32px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-inner{
  max-width:1140px;margin:0 auto;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:24px;
}
.footer-logo img{height:24px;filter:brightness(0) invert(1);opacity:.7}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{
  font-size:13px;color:rgba(255,255,255,.45);
  transition:color .2s;font-weight:400;
}
.footer-links a:hover{color:rgba(255,255,255,.8)}
.footer-copy{
  width:100%;text-align:center;margin-top:24px;padding-top:24px;
  border-top:1px solid rgba(255,255,255,.06);
  font-size:12.5px;color:rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media(max-width:1024px){
  .hero{grid-template-columns:1fr 220px;gap:36px}
  .phone{width:210px}
  .bento{grid-template-columns:repeat(2,1fr)}
  .bento-hero{grid-column:span 2}
  .steps-grid{gap:18px}
}

@media(max-width:768px){
  .si{padding:0 22px}
  .section-pad{padding:64px 0}
  .section-pad-sm{padding:48px 0}
  nav{padding:12px 18px;gap:12px}
  .nav-links{display:none}
  .nav-logo img{height:44px}
  .nav-login,
  .nav-cta{padding:8px 16px;font-size:14px}
  .nav-cta span{display:none}

  .hero-wrap{min-height:auto}
  .hero{
    grid-template-columns:1fr;gap:36px;
    padding:40px 22px 36px;text-align:center;
  }
  .hero-content{text-align:center}
  [dir=rtl] .hero-content{text-align:center}
  .hero h1{font-size:36px}
  .hero-sub{margin:0 auto 28px;font-size:16px}
  .hero-ctas{justify-content:center}
  .trust-row{justify-content:center}
  .hero-visual{order:2}
  .phone{width:200px}

  .stats-grid{grid-template-columns:repeat(2,1fr);padding:48px 0}
  .stat-item:nth-child(2)::after{display:none}
  .stat-item{padding:16px 12px}
  .stat-num{font-size:48px}

  .steps-grid{grid-template-columns:1fr}
  .pain-grid{grid-template-columns:1fr}
  .bento{grid-template-columns:1fr}
  .bento-hero{grid-column:span 1}
  .pricing-grid{grid-template-columns:1fr}
  .pricing-grid-4{grid-template-columns:1fr}
  .overage-block{padding:24px 20px}

  .compare-grid{grid-template-columns:1fr;gap:32px}
  .compare-mid{display:none}

  .footer-inner{justify-content:center;text-align:center}
  .footer-links{justify-content:center}

  .btn{padding:14px 24px;font-size:14px;width:100%;justify-content:center}
  .cta-buttons .btn{width:auto}

  .st-lg{font-size:28px}
}

@media(max-width:480px){
  .hero h1{font-size:30px}
  .stats-grid{gap:0}
  .stat-item::after{display:none}
  .cta-buttons{flex-direction:column;align-items:center}
  .cta-buttons .btn{width:100%}
}