:root{
  --blue:#062b52;
  --blue-soft:#0d3d71;
  --gold:#c7a247;
  --gold-soft:#f3ead0;
  --light:#f6f8fb;
  --paper:#ffffff;
  --text:#101828;
  --muted:#475467;
  --line:#e5e7eb;
  --shadow:0 22px 60px rgba(6,43,82,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
section[id],
div[id]{
  scroll-margin-top:110px;
}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(199,162,71,.14), transparent 28%),
    linear-gradient(180deg, #fff, #fbfcfe 32%, #fff 100%);
}

.top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 7%;
  border-bottom:1px solid rgba(229,231,235,.8);
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  position:sticky;
  top:0;
  z-index:20;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand img{
  width:178px;
  height:48px;
  object-fit:contain;
  filter:drop-shadow(0 10px 24px rgba(6,43,82,.12));
}

nav{
  display:flex;
  gap:22px;
  align-items:center;
  flex-wrap:wrap;
}

.lang-switcher{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:8px;
}

.lang-btn{
  appearance:none;
  border:1px solid rgba(6,43,82,.12);
  background:#fff;
  color:var(--blue);
  padding:9px 12px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}

.lang-btn.is-active{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue);
}

nav a{
  color:#111827;
  text-decoration:none;
  font-weight:700;
}

.nav-active{
  color:var(--blue);
  position:relative;
}

.nav-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:3px;
  border-radius:999px;
  background:var(--gold);
}

.btn,.primary{
  background:linear-gradient(135deg,var(--blue),var(--blue-soft));
  color:#fff!important;
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(6,43,82,.2);
}

.btn.nav-active{color:#fff!important}
.btn.nav-active::after{display:none}

.secondary{
  border:1px solid rgba(6,43,82,.16);
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  color:var(--blue);
  font-weight:700;
  background:#fff;
}

.tag{
  color:#8a6a1f;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.2px;
  font-size:13px;
}

.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  padding:78px 7% 56px;
  align-items:center;
}

.hero h1{
  font-size:30px;
  line-height:1.02;
  margin:12px 0 16px;
  color:var(--blue);
}

.hero p{
  font-size:18px;
  line-height:1.72;
  color:var(--muted);
}

.hero-note{
  margin-top:24px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background:#fff8e8;
  border:1px solid #ebd59c;
  color:#8a6a1f;
  font-weight:800;
}

.hero-visual{
  position:relative;
  align-self:start;
  position:sticky;
  top:112px;
}

.hero-visual img,
.showcase-media img{
  width:100%;
  display:block;
  border-radius:24px;
  box-shadow:var(--shadow);
}

.lightbox-trigger{
  display:block;
  cursor:zoom-in;
}

.lightbox-trigger img{
  transition:transform .18s ease, box-shadow .18s ease;
}

.lightbox-trigger:hover img{
  transform:translateY(-2px);
  box-shadow:0 28px 70px rgba(6,43,82,.18);
}

.hero-float{
  position:absolute;
  right:-16px;
  bottom:18px;
  width:min(270px,42%);
  background:rgba(255,255,255,.96);
  border:1px solid rgba(229,231,235,.95);
  border-radius:20px;
  padding:18px;
  box-shadow:0 18px 45px rgba(16,24,40,.14);
}

.hero-float strong{
  display:block;
  color:var(--blue);
  margin-bottom:8px;
}

.hero-float p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
}

.actions{
  display:flex;
  gap:14px;
  margin-top:28px;
  flex-wrap:wrap;
}

.hero-stats,
.kpis{
  display:grid;
  gap:18px;
}

.hero-stats{
  grid-template-columns:repeat(3,1fr);
  margin-top:34px;
}

.hero-stats article,
.cards article,
.grid section,
.pricing article,
aside,
form,
.panel,
.steps article,
.faq details,
.use-cases article,
.strength-band article{
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  background:var(--paper);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.hero-stats strong,
.kpis .panel strong{
  display:block;
  font-size:28px;
  color:var(--blue);
  margin-bottom:8px;
}

.hero-stats p,
.cards article p,
.grid section p,
.panel p,
.faq p,
.intro p,
.contact aside p,
.contact li,
.use-cases p,
.strength-band p{
  color:var(--muted);
  line-height:1.72;
  margin:0;
}

.cards,.grid,.pricing,.mini-grid,.steps,.strength-band,.use-cases{
  display:grid;
  gap:22px;
}

.cards{
  grid-template-columns:repeat(3,1fr);
  padding:8px 7% 40px;
}

.page{
  padding:50px 7%;
}

.page h1{
  font-size:42px;
  color:var(--blue);
  margin-top:0;
}

.page h2,.section-title{
  color:var(--blue);
}

.intro{
  max-width:860px;
  margin-bottom:18px;
}

.grid{
  padding:20px 0;
  grid-template-columns:repeat(2,1fr);
}

.grid section h2,
.mini-grid .panel h3,
.steps h3,
.cards h3{
  margin-top:0;
}

.mini-grid{
  padding:10px 0 0;
  grid-template-columns:repeat(3,1fr);
}

.section-block{margin-top:38px}

.section-lead{
  max-width:760px;
  color:var(--muted);
  line-height:1.72;
}

.editorial-intro{
  margin-top:24px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
}

.editorial-card{
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  padding:28px;
  box-shadow:0 12px 36px rgba(15,23,42,.06);
}

.editorial-card h3{
  margin:0 0 12px;
  color:var(--blue);
  font-size:28px;
}

.editorial-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.promise-list{
  display:grid;
  gap:14px;
}

.promise-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.promise-mark{
  width:14px;
  height:14px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),#e0c57d);
  box-shadow:0 0 0 6px rgba(199,162,71,.12);
  margin-top:8px;
  flex:0 0 auto;
}

.promo-band{
  margin-top:32px;
  padding:26px 28px;
  border-radius:28px;
  background:linear-gradient(135deg,#fff8e8,#fff);
  border:1px solid #e8d6a4;
  display:grid;
  grid-template-columns:1fr auto;
  gap:22px;
  align-items:center;
}

.promo-band strong{
  display:block;
  color:var(--blue);
  font-size:32px;
  margin-bottom:8px;
}

.promo-band p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.promo-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:18px;
  background:var(--blue);
  color:#fff;
  font-weight:800;
  min-width:220px;
}

.showcase{
  margin-top:36px;
  padding:30px;
  border-radius:28px;
  background:linear-gradient(135deg,#f7fafc,#fff7e8);
  border:1px solid #e7edf5;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}

.display-showcase{
  margin-top:38px;
  padding:38px;
  border-radius:34px;
  border:1px solid rgba(13,61,113,.1);
  background:
    radial-gradient(circle at top right, rgba(199,162,71,.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(6,43,82,.08), transparent 28%),
    linear-gradient(180deg,#ffffff,#f7faff);
  box-shadow:0 24px 60px rgba(6,43,82,.08);
  position:relative;
  overflow:hidden;
}

.display-showcase::before{
  content:"";
  position:absolute;
  inset:auto -120px -120px auto;
  width:320px;
  height:320px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(199,162,71,.14), transparent 68%);
  pointer-events:none;
}

.display-showcase-head{
  max-width:880px;
  margin:0 auto 30px;
  text-align:center;
  position:relative;
  z-index:1;
}

.display-showcase-head h2{
  margin:0 0 12px;
  color:var(--blue);
  font-size:38px;
  line-height:1.14;
}

.display-showcase-head p{
  margin:0 auto;
  color:var(--muted);
  line-height:1.8;
  max-width:760px;
}

.display-benefits{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.display-benefit{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(13,61,113,.12);
  color:var(--blue);
  font-weight:700;
  box-shadow:0 12px 28px rgba(6,43,82,.06);
}

.display-benefit::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),#e4ca85);
  box-shadow:0 0 0 5px rgba(199,162,71,.12);
}

.display-showcase-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  align-items:start;
  position:relative;
  z-index:1;
}

.display-card{
  border:1px solid rgba(13,61,113,.1);
  border-radius:28px;
  background:rgba(255,255,255,.92);
  padding:20px;
  box-shadow:0 18px 44px rgba(15,23,42,.07);
  backdrop-filter:blur(10px);
}

.display-card.is-secondary{
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,248,232,.9));
}

.display-card-copy{
  margin-bottom:16px;
}

.display-kicker{
  display:inline-block;
  margin-bottom:10px;
  color:#8a6a1f;
  background:#fff4d3;
  border:1px solid #ecd79a;
  border-radius:999px;
  padding:7px 12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.display-card h3{
  margin:0 0 10px;
  color:var(--blue);
  font-size:24px;
  line-height:1.22;
}

.display-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.display-shot{
  position:relative;
  display:block;
  padding:12px;
  border-radius:24px;
  background:linear-gradient(180deg,#fdfefe,#eef4fa);
  border:1px solid rgba(13,61,113,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}

.display-shot-badge{
  position:absolute;
  top:24px;
  left:24px;
  z-index:1;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(6,43,82,.92);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  box-shadow:0 12px 30px rgba(6,43,82,.2);
}

.display-card img{
  width:100%;
  display:block;
  border-radius:22px;
  box-shadow:var(--shadow);
}

html[dir="rtl"] .display-shot-badge{
  left:auto;
  right:24px;
}

.mobile-highlight{
  margin-top:38px;
  padding:32px;
  border-radius:30px;
  border:1px solid #dbe4ee;
  background:linear-gradient(135deg,#062b52 0%, #0d3d71 52%, #154f8f 100%);
  color:#fff;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
  overflow:hidden;
}

.mobile-highlight h2{
  margin:0 0 12px;
  color:#fff;
  font-size:34px;
}

.mobile-highlight p{
  color:rgba(255,255,255,.84);
  line-height:1.75;
}

.mobile-points{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.mobile-point{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:rgba(255,255,255,.9);
}

.mobile-point-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background:linear-gradient(135deg,#f2d388,#c7a247);
  box-shadow:0 0 0 6px rgba(255,255,255,.08);
  margin-top:7px;
  flex:0 0 auto;
}

.store-badges{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.store-badges.is-light .store-badge{
  background:#fff;
  border:1px solid rgba(6,43,82,.12);
  box-shadow:0 14px 34px rgba(6,43,82,.08);
}

.store-badges.is-light .store-badge svg{
  fill:var(--blue);
}

.store-badges.is-light .store-badge small{
  color:var(--muted);
}

.store-badges.is-light .store-badge strong{
  color:var(--blue);
}

.store-badge{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:228px;
  padding:14px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  box-shadow:0 16px 36px rgba(0,0,0,.14);
}

.store-badge svg{
  width:34px;
  height:34px;
  fill:#fff;
  flex:0 0 auto;
}

.store-badge small{
  display:block;
  color:rgba(255,255,255,.7);
  font-size:12px;
  margin-bottom:2px;
}

.store-badge strong{
  display:block;
  color:#fff;
  font-size:20px;
  line-height:1.1;
}

.mobile-device-stack{
  position:relative;
  min-height:360px;
}

.mobile-card{
  position:absolute;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 22px 55px rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.18);
}

.mobile-card.is-main{
  right:30px;
  top:12px;
  width:280px;
  transform:rotate(3deg);
}

.mobile-card.is-secondary{
  left:10px;
  bottom:10px;
  width:220px;
  transform:rotate(-7deg);
}

.mobile-caption{
  position:absolute;
  left:28px;
  top:18px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.role-showcase{
  margin-top:38px;
  padding:30px;
  border-radius:28px;
  border:1px solid #dbe4ee;
  background:linear-gradient(180deg,#ffffff,#f9fbfd);
}

.role-showcase + .role-showcase{
  margin-top:26px;
}

.role-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-end;
  margin-bottom:22px;
}

.role-head h2{
  margin:0 0 10px;
  color:var(--blue);
}

.role-head p{
  margin:0;
  max-width:760px;
  color:var(--muted);
  line-height:1.75;
}

.role-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:22px;
  align-items:start;
}

.role-main-shot img,
.role-thumb img{
  width:100%;
  display:block;
  border-radius:24px;
  box-shadow:var(--shadow);
}

.role-thumb-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.role-thumb{
  border:1px solid var(--line);
  border-radius:22px;
  padding:12px;
  background:#fff;
}

.role-thumb strong{
  display:block;
  margin:12px 4px 6px;
  color:var(--blue);
  font-size:16px;
}

.role-thumb p{
  margin:0 4px 4px;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
  background:rgba(4,20,39,.78);
  backdrop-filter:blur(10px);
  z-index:120;
}

.lightbox.is-open{
  display:flex;
}

.lightbox-panel{
  position:relative;
  width:min(1180px,100%);
  max-height:min(88vh,920px);
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:24px;
  padding:24px;
  border-radius:30px;
  background:#fff;
  box-shadow:0 28px 90px rgba(0,0,0,.28);
}

.lightbox-media{
  min-width:0;
}

.lightbox-media img{
  width:100%;
  max-height:calc(88vh - 48px);
  object-fit:contain;
  display:block;
  border-radius:22px;
  background:#f7fafc;
}

.lightbox-copy{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:14px;
  min-width:0;
  padding:10px 6px 10px 0;
}

.lightbox-copy h3{
  margin:0;
  color:var(--blue);
  font-size:28px;
  line-height:1.2;
}

.lightbox-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.lightbox-close{
  position:absolute;
  right:16px;
  top:16px;
  width:44px;
  height:44px;
  border:0;
  border-radius:999px;
  background:#eef3f8;
  color:var(--blue);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.comparison{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.comparison article{
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.comparison .is-legacy{
  background:linear-gradient(180deg,#fff,#f8fafc);
}

.comparison .is-modern{
  background:linear-gradient(180deg,#fffdf8,#fff7e8);
  border-color:#ead8a7;
}

.comparison h3{
  margin-top:0;
  color:var(--blue);
}

.regulatory-note{
  margin-top:18px;
  padding:18px 20px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid #dbe4ee;
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
}

.showcase-copy h2{
  margin:0 0 12px;
}

.showcase-copy p{
  color:var(--muted);
  line-height:1.75;
}

.feature-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:12px;
}

.feature-list li{
  position:relative;
  padding-left:26px;
  color:var(--muted);
  line-height:1.65;
}

.feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),#e4ca85);
  box-shadow:0 0 0 6px rgba(199,162,71,.14);
}

.badge{
  display:inline-block;
  background:var(--gold-soft);
  color:#8a6a1f;
  font-weight:700;
  padding:7px 12px;
  border-radius:999px;
  margin-bottom:12px;
}

.steps{
  padding:20px 0;
  grid-template-columns:repeat(3,1fr);
}

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),var(--blue-soft));
  color:#fff;
  font-weight:800;
  margin-bottom:14px;
}

.kpis{
  grid-template-columns:repeat(4,1fr);
  padding:10px 0 0;
}

.faq{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.faq details summary{
  cursor:pointer;
  font-weight:700;
  color:var(--blue);
}

.faq details p{margin-top:12px}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.checklist li{
  position:relative;
  padding-left:24px;
  color:var(--muted);
  line-height:1.7;
}

.checklist li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
  font-weight:900;
}

.strength-band{
  grid-template-columns:repeat(4,1fr);
  margin-top:22px;
}

.quote-panel{
  margin-top:36px;
  padding:34px 36px;
  border-radius:30px;
  background:linear-gradient(135deg,#062b52 0%, #0f3f72 100%);
  color:#fff;
  box-shadow:0 20px 50px rgba(6,43,82,.18);
}

.quote-panel blockquote{
  margin:0;
  font-size:34px;
  line-height:1.28;
  font-weight:800;
}

.quote-panel p{
  margin:16px 0 0;
  max-width:880px;
  color:rgba(255,255,255,.82);
  line-height:1.8;
}

.differentiators{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  margin-top:22px;
}

.differentiators article{
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  padding:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.differentiators strong{
  display:block;
  color:var(--blue);
  font-size:18px;
  margin-bottom:8px;
}

.differentiators p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

.use-cases{
  grid-template-columns:repeat(3,1fr);
  margin-top:18px;
}

.pill-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.pill{
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--blue);
  font-weight:700;
}

table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  border:1px solid var(--line);
}

th,td{
  padding:18px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}

th{
  background:var(--blue);
  color:#fff;
}

.pricing{padding:20px 0}

.featured{
  border:2px solid var(--gold)!important;
  transform:scale(1.03);
}

.price-list{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:grid;
  gap:10px;
  color:var(--muted);
}

.contact{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:28px;
}

input,textarea{
  width:100%;
  padding:14px;
  margin:8px 0;
  border:1px solid #d0d5dd;
  border-radius:12px;
}

textarea{height:130px}

label{
  display:block;
  font-weight:700;
  color:var(--blue);
  margin-top:8px;
}

button{
  background:var(--gold);
  border:0;
  color:white;
  font-weight:800;
  padding:14px 22px;
  border-radius:12px;
  cursor:pointer;
}

.form-status{
  margin:18px 0 0;
  padding:14px 16px;
  border-radius:14px;
  font-weight:700;
}

.form-status.success{
  background:#ecf8f0;
  border:1px solid #2f855a;
  color:#22543d;
}

.form-status.error{
  background:#fff5f5;
  border:1px solid #f56565;
  color:#9b2c2c;
}

.form-note{
  font-size:14px;
  color:var(--muted);
  margin-top:12px;
}

.notice{
  background:linear-gradient(135deg,#fff,var(--light));
  border:1px solid #d9e1ea;
  border-radius:24px;
  padding:28px;
  margin-top:34px;
  display:flex;
  justify-content:space-between;
  gap:22px;
  align-items:center;
}

.onepage-extra + .onepage-extra{
  padding-top:0;
}

.notice h2{margin:0 0 8px}

.notice p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

footer{
  text-align:center;
  padding:34px 7%;
  background:var(--blue);
  color:white;
  margin-top:44px;
}

.coming-soon-page{
  padding:0 7%;
}

.coming-soon-page-top{
  padding-top:42px;
}

.coming-soon-page-bottom{
  padding-bottom:48px;
}

.coming-soon-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:12px;
}

.coming-soon-topbar img{
  width:178px;
  height:48px;
  object-fit:contain;
}

.coming-soon-note{
  color:var(--muted);
  font-weight:700;
}

.coming-soon-copy,
.coming-soon-form-card{
  border:1px solid var(--line);
  border-radius:30px;
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 48px rgba(6,43,82,.08);
}

.coming-soon-copy{
  padding:34px;
}

.coming-soon-copy h1{
  margin:16px 0 14px;
  color:var(--blue);
  font-size:52px;
  line-height:1.02;
}

.coming-soon-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:18px;
}

.coming-soon-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
  margin-bottom:24px;
}

.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg,#128c7e,#25d366);
  box-shadow:0 10px 28px rgba(18,140,126,.24);
}

.coming-soon-points{
  display:grid;
  gap:12px;
  margin-top:28px;
}

.coming-soon-points span{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:var(--muted);
  line-height:1.65;
}

.coming-soon-points span::before{
  content:"";
  width:10px;
  height:10px;
  margin-top:8px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),#e4ca85);
  box-shadow:0 0 0 6px rgba(199,162,71,.14);
  flex:0 0 auto;
}

.coming-soon-form-shell{
  padding:0;
}

.coming-soon-form-card{
  padding:32px;
  min-height:100%;
}

.coming-soon-form-card h2{
  margin:14px 0 10px;
  color:var(--blue);
  font-size:36px;
}

.coming-soon-form-card > p{
  margin:0 0 22px;
  color:var(--muted);
  line-height:1.75;
}

.coming-soon-form{
  display:grid;
  gap:12px;
}

.coming-soon-form label{
  font-weight:700;
  color:var(--blue);
}

.coming-soon-form input{
  width:100%;
  border:1px solid #d6dee7;
  border-radius:16px;
  padding:15px 16px;
  font-size:16px;
  background:#fff;
}

.coming-soon-form input:focus{
  outline:none;
  border-color:#7c9cc1;
  box-shadow:0 0 0 4px rgba(6,43,82,.08);
}

.coming-soon-form button{
  margin-top:8px;
  border:0;
  border-radius:16px;
  padding:15px 18px;
  font-size:16px;
  font-weight:800;
  color:#fff;
  cursor:pointer;
  background:linear-gradient(135deg,var(--blue),var(--blue-soft));
  box-shadow:0 14px 34px rgba(6,43,82,.18);
}

.coming-soon-bottom-note{
  margin-top:26px;
  text-align:center;
  color:var(--muted);
  font-size:15px;
}

.coming-soon-popup{
  position:fixed;
  inset:0;
  z-index:160;
  display:none;
}

.coming-soon-popup.is-open{
  display:block;
}

.coming-soon-popup-backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,20,39,.72);
  backdrop-filter:blur(8px);
}

.coming-soon-popup-panel{
  position:relative;
  width:min(860px, calc(100% - 32px));
  margin:72px auto;
  padding:28px;
  border-radius:30px;
  background:#fff;
  box-shadow:0 28px 90px rgba(0,0,0,.28);
}

.coming-soon-popup-close{
  position:absolute;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:#eef3f8;
  color:var(--blue);
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.coming-soon-popup-panel h2{
  margin:14px 0 10px;
  color:var(--blue);
  font-size:34px;
}

.coming-soon-popup-panel p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.coming-soon-popup-video-frame{
  margin-top:22px;
  min-height:360px;
  border-radius:26px;
  border:1px dashed rgba(6,43,82,.22);
  background:
    radial-gradient(circle at top right, rgba(199,162,71,.18), transparent 26%),
    linear-gradient(135deg, rgba(6,43,82,.04), rgba(199,162,71,.08)),
    #fff;
  display:grid;
  place-items:center;
  text-align:center;
  padding:28px;
}

.video-kicker,
.video-title,
.video-help{
  display:block;
}

.video-kicker{
  color:#8a6a1f;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  margin-bottom:10px;
}

.video-title{
  color:var(--blue);
  font-size:28px;
  font-weight:800;
  margin-bottom:8px;
}

.video-help{
  color:var(--muted);
  max-width:420px;
  line-height:1.7;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:155;
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:linear-gradient(135deg,#128c7e,#25d366);
  box-shadow:0 18px 40px rgba(18,140,126,.34);
}

.whatsapp-float svg{
  width:30px;
  height:30px;
  fill:#fff;
}

html[dir="rtl"] body{
  text-align:right;
}

html[dir="rtl"] nav,
html[dir="rtl"] .actions,
html[dir="rtl"] .pill-row,
html[dir="rtl"] .lang-switcher{
  flex-direction:row-reverse;
}

html[dir="rtl"] .checklist li,
html[dir="rtl"] .feature-list li{
  padding-left:0;
  padding-right:24px;
}

html[dir="rtl"] .checklist li::before,
html[dir="rtl"] .feature-list li::before{
  left:auto;
  right:0;
}

html[dir="rtl"] .lightbox-copy{
  padding:10px 0 10px 6px;
}

html[dir="rtl"] th,
html[dir="rtl"] td{
  text-align:right;
}

@media (max-width:980px){
  .hero,
  .editorial-intro,
  .showcase,
  .display-showcase-grid,
  .mobile-highlight,
  .role-grid,
  .promo-band,
  .contact,
  .notice{
    grid-template-columns:1fr;
    display:grid;
  }

  .coming-soon-hero{
    grid-template-columns:1fr;
  }

  .coming-soon-copy h1{
    font-size:38px;
  }

  .coming-soon-popup-panel{
    width:min(92vw, 860px);
    margin:36px auto;
  }

  .hero h1{font-size:30px}

  .hero-stats,
  .cards,
  .grid,
  .pricing,
  .mini-grid,
  .steps,
  .kpis,
  .strength-band,
  .differentiators,
  .use-cases,
  .comparison{
    grid-template-columns:1fr;
  }

  .featured{transform:none}
  .hero-float{position:static;width:auto;margin-top:16px}
  .hero-visual{position:relative;top:auto}
  .mobile-device-stack{min-height:500px}
  .role-head{display:block}
  .role-thumb-grid{grid-template-columns:1fr}
  .lightbox-panel{grid-template-columns:1fr;max-height:90vh;overflow:auto}
  .lightbox-copy{padding-right:0}
  .display-showcase{padding:28px}
  .display-showcase-head h2{font-size:30px}
  .coming-soon-popup-video-frame{min-height:240px}
}

@media (max-width:720px){
  .top{display:block}
  nav{margin-top:15px}
  .hero{padding-top:48px}
  .page h1{font-size:34px}
  .showcase{padding:22px}
  .lang-switcher{margin-left:0}
  .display-showcase{padding:22px}
  .display-benefits{justify-content:flex-start}
  .display-shot-badge{
    top:18px;
    left:18px;
  }
  html[dir="rtl"] .display-shot-badge{
    left:auto;
    right:18px;
  }
}
