*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{
  --blue:#2C6BED;--blue-dark:#1f5bdb;--blue-light:#EEF2FF;--blue-mid:#C5D0FA;
  --white:#fff;--off:#F8F9FC;--ink:#111827;--soft:#374151;--muted:#6B7280;
  --border:#E5E7EB;--border-b:#C7D2FE;--green:#16A34A;--max:1100px;
}
html{scroll-behavior:smooth;}
body{
  font-size: 17px;
  line-height: 1.75;font-family:'Inter',sans-serif;background:var(--white);color:var(--ink);overflow-x:hidden;-webkit-font-smoothing:antialiased;}

/* ═══════════════════════════════════════
   EDITOR TOOLBAR
═══════════════════════════════════════ */


.eb-logo span{color:#7C93F5;}

/* ═══════════════════════════════════════
   FLOATING TOOLTIP
═══════════════════════════════════════ */
#edit-tooltip{
  position:fixed;z-index:8888;
  background:#1e2740;color:#fff;
  font-size:11px;font-weight:500;
  padding:5px 10px;border-radius:6px;
  pointer-events:none;opacity:0;
  transition:opacity 0.15s;
  white-space:nowrap;
}

/* ═══════════════════════════════════════
   EDITABLE ELEMENTS
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   IMAGE ZONES
═══════════════════════════════════════ */
.img-zone{position:relative;cursor:pointer;}


.img-overlay-label{font-size:11px;color:rgba(255,255,255,0.7);}

/* ═══════════════════════════════════════
   FORMAT POPUP
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   SECTION ADD BUTTON
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   DELETABLE SECTIONS
═══════════════════════════════════════ */
.section-wrap{position:relative;}

nav.scrolled{border-color:var(--border);}
.nav-inner{max-width:var(--max);margin:0 auto;padding:0 40px;height:64px;display:flex;align-items:center;justify-content:space-between;}
.nav-logo{display:flex;align-items:center;text-decoration:none;}
.nav-logo img{height:52px;max-width:180px;width:auto;object-fit:contain;display:block;}
.nav-links{display:flex;gap:28px;list-style:none;}
.nav-links a{text-decoration:none;font-size: 15px;font-weight:500;color:var(--muted);transition:color 0.2s;}
.nav-links a:hover{color:var(--blue);}
.nav-right{display:flex;align-items:center;gap:8px;}
.btn-ghost{font-size: 15px;font-weight:500;color:var(--soft);text-decoration:none;padding:8px 16px;border-radius:8px;transition:background 0.2s,color 0.2s;}
.btn-ghost:hover{background:var(--blue-light);color:var(--blue);}
.btn-nav{background:var(--blue);color:#fff;padding:9px 20px;font-size: 15px;font-weight:600;border-radius:8px;text-decoration:none;transition:background 0.2s;}
.btn-nav:hover{background:var(--blue-dark);}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero{padding-top:80px;background:var(--white);}
.hero-inner{max-width:var(--max);margin:0 auto;padding:72px 40px 0;display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.hero-badge{display:inline-flex;align-items:center;gap:7px;background:var(--blue-light);color:var(--blue);font-size: 12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:5px 13px;border-radius:100px;border:1px solid var(--border-b);margin-bottom:20px;}
.badge-dot{width:6px;height:6px;border-radius:50%;background:var(--blue);animation:pulse 2s ease infinite;}
.hero-h1{font-size:clamp(36px,3.8vw,54px);font-weight:800;line-height:1.1;letter-spacing:-1.5px;color:var(--ink);margin-bottom:8px;}
.hero-h1 .blue{color:var(--blue);}
.hero-slogan{font-size: 20px;font-weight:500;color:var(--muted);margin-bottom:20px;letter-spacing:-.2px;}
.hero-desc{font-size: 17px;color:var(--soft);line-height:1.75;
  text-align: justify !important;
  text-justify: inter-word !important;max-width:420px;margin-bottom:36px;}
.hero-btns{display:flex;gap:10px;align-items:center;}
.btn-primary{background:var(--blue);color:#fff;padding:13px 26px;font-size:14px;font-weight:700;border:none;border-radius:9px;cursor:pointer;text-decoration:none;font-family:'Inter',sans-serif;transition:background 0.2s,transform 0.15s,box-shadow 0.2s;}
.btn-primary:hover{background:var(--blue-dark);transform:translateY(-1px);box-shadow:0 6px 22px rgba(59,91,219,.35);}
.btn-outline{background:transparent;color:var(--soft);padding:12px 22px;font-size:14px;font-weight:500;border:1.5px solid var(--border);border-radius:9px;cursor:pointer;text-decoration:none;font-family:'Inter',sans-serif;transition:border-color 0.2s,color 0.2s,background 0.2s;}
.btn-outline:hover{border-color:var(--blue);color:var(--blue);background:var(--blue-light);}
.hero-visual{position:relative;}
.hero-img-zone{width:100%;aspect-ratio:16/11;border-radius:16px;background:var(--blue-light);border:2px dashed var(--border-b);overflow:hidden;position:relative;}
#hero-img{width:100%;height:100%;object-fit:cover;display:none;}
#hero-img.loaded{display:block;}
.hero-ph{width:100%;height:100%;min-height:280px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;padding:32px;text-align:center;}
.ph-icon{width:56px;height:56px;background:#fff;border-radius:14px;border:1px solid var(--border-b);display:flex;align-items:center;justify-content:center;font-size:24px;}
.ph-title{font-size:16px;font-weight:700;color:var(--blue);}
.ph-sub{font-size:13px;color:var(--muted);line-height:1.5;}
.ph-btn{background:var(--blue);color:#fff;border:none;border-radius:7px;padding:9px 18px;font-size:13px;font-weight:600;cursor:pointer;font-family:'Inter',sans-serif;}
.ph-btn:hover{background:var(--blue-dark);}
.fl-badge{position:absolute;background:#fff;border:1px solid var(--border);border-radius:12px;padding:11px 15px;box-shadow:0 6px 24px rgba(17,24,39,.09);display:flex;align-items:center;gap:9px;white-space:nowrap;}
.fl-b1{bottom:-16px;left:-12px;animation:floatB 4s ease-in-out infinite;}
.fl-b2{top:-14px;right:-12px;animation:floatB 4s 2s ease-in-out infinite;}
.fl-icon{width:32px;height:32px;background:var(--blue-light);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:14px;}
.fl-lbl{font-size:10px;color:var(--muted);}
.fl-val{font-size:14px;font-weight:800;color:var(--ink);letter-spacing:-.3px;}

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats-wrap{max-width:var(--max);margin:56px auto 0;padding:0 40px;}
.stats-box{background:var(--blue);border-radius:16px;padding:36px 48px;display:grid;grid-template-columns:repeat(4,1fr);gap:0;}
.stat-col{padding-right:28px;border-right:1px solid rgba(255,255,255,.14);}
.stat-col:last-child{border-right:none;padding-right:0;padding-left:28px;}
.stat-col:not(:first-child):not(:last-child){padding-left:28px;}
.stat-num{font-size:36px;font-weight:900;color:#fff;line-height:1;letter-spacing:-1.5px;}
.stat-num .su{font-size:20px;}
.stat-lbl{font-size: 13px;color:rgba(255,255,255,.5);margin-top:7px;line-height:1.45;}

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.sec{max-width:var(--max);margin:0 auto;padding:88px 40px;}
.chip{display:inline-flex;align-items:center;gap:5px;background:var(--blue-light);color:var(--blue);font-size: 12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:4px 12px;border-radius:100px;border:1px solid var(--border-b);margin-bottom:16px;}
.sec-h2{font-size:clamp(28px,3vw,42px);font-weight:800;line-height:1.15;letter-spacing:-1px;color:var(--ink);margin-bottom:12px;}
.sec-h2 .blue{color:var(--blue);}
.sec-sub{font-size: 18px;color:var(--muted);max-width:480px;line-height:1.7;}

/* HOW */
.how-bg{background:var(--off);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;margin-top:56px;align-items:center;}
.steps{display:flex;flex-direction:column;}
.step{display:grid;grid-template-columns:40px 1fr;gap:16px;align-items:start;padding: 28px 0;border-bottom:1px solid var(--border);transition:padding-left .25s;}
.step:first-child{border-top:1px solid var(--border);}
.step:hover{padding-left:4px;}
.step-n{width:32px;height:32px;background:var(--blue);color:#fff;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;flex-shrink:0;margin-top:2px;}
.step-title{font-size: 17px;font-weight:700;color:var(--ink);margin-bottom:4px;}
.step-desc{font-size: 15px;color:var(--muted);line-height: 1.75;}

/* phone */
.phone-wrap{display:flex;justify-content:center;position:relative;}
.phone{width:220px;background:#0F1523;border-radius:38px;padding:9px;box-shadow:0 32px 64px rgba(15,21,35,.22),0 0 0 1px rgba(255,255,255,.06);animation:phoneFloat 5s ease-in-out infinite;}
.phone-screen{background:var(--off);border-radius:30px;overflow:hidden;min-height:440px;}
.p-head{background:var(--blue);padding:18px 14px 14px;text-align:center;}
.p-rest{font-size:10px;color:rgba(255,255,255,.65);margin-bottom:1px;}
.p-table{font-size:26px;font-weight:800;color:#fff;line-height:1.1;letter-spacing:-.5px;}
.p-zone{font-size:10px;color:rgba(255,255,255,.55);}
.p-guest{font-size:11px;color:rgba(255,255,255,.8);margin-top:6px;}
.p-body{padding:13px 12px;display:flex;flex-direction:column;gap:7px;}
.p-btn-blue{background:var(--blue);color:#fff;border-radius:9px;padding:12px 14px;font-size:12px;font-weight:600;display:flex;align-items:center;gap:7px;}
.p-btn-white{background:#fff;color:var(--ink);border-radius:9px;padding:11px 14px;font-size:12px;font-weight:500;display:flex;align-items:center;gap:7px;border:1px solid var(--border);}
.p-div{height:1px;background:var(--border);margin:2px 0;}
.p-reqs{padding:2px 12px 14px;}
.p-reqs-title{font-size:10px;font-weight:700;color:var(--muted);letter-spacing:.06em;text-transform:uppercase;margin-bottom:8px;}
.p-req{display:flex;justify-content:space-between;align-items:center;padding:6px 0;border-bottom:1px solid var(--border);}
.p-req:last-child{border:none;}
.p-req-name{font-size:11px;font-weight:600;color:var(--ink);}
.p-req-done{font-size:10px;font-weight:700;color:var(--green);}
.phone-badge{position:absolute;right:-36px;top:56px;background:#fff;border:1px solid var(--border);border-radius:12px;padding:12px 16px;box-shadow:0 6px 24px rgba(17,24,39,.09);}
.pb-dot{display:inline-block;width:6px;height:6px;background:var(--green);border-radius:50%;margin-right:4px;animation:pulse 1.5s ease infinite;}
.pb-lbl{font-size:10px;color:var(--muted);margin-bottom:2px;}
.pb-val{font-size:13px;font-weight:800;color:var(--ink);letter-spacing:-.3px;}

/* PLANS */
.plans-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:0;}
.plan{border:1.5px solid var(--border);border-radius:18px;padding: 48px;transition:border-color .25s,transform .25s,box-shadow .25s;}
.plan:hover{border-color:var(--blue);transform:translateY(-3px);box-shadow:0 16px 48px rgba(59,91,219,.1);}
.plan.featured{background:var(--blue);border-color:var(--blue);}
.plan.featured:hover{box-shadow:0 20px 56px rgba(59,91,219,.3);}
.plan-ico{width:44px;height:44px;border-radius:11px;background:var(--blue-light);display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:20px;}
.plan.featured .plan-ico{background:rgba(255,255,255,.15);}
.plan-name{font-size:22px;font-weight:800;color:var(--ink);margin-bottom:8px;letter-spacing:-.3px;}
.plan.featured .plan-name{color:#fff;}
.plan-tagline{font-size: 16px;color:var(--muted);margin-bottom:24px;line-height:1.6;}
.plan.featured .plan-tagline{color:rgba(255,255,255,.6);}
.plan-for{font-size: 12px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--blue);margin-bottom:10px;}
.plan.featured .plan-for{color:rgba(255,255,255,.65);}
.plan-chips{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:28px;}
.pchip{background:var(--blue-light);color:var(--blue);padding:3px 11px;border-radius:100px;font-size: 13px;font-weight:500;}
.plan.featured .pchip{background:rgba(255,255,255,.14);color:rgba(255,255,255,.85);}
.plan-feats{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:36px;}
.plan-feats li{font-size: 16px;color:var(--soft);display:flex;align-items:flex-start;gap:10px;line-height: 1.7;}
.plan.featured .plan-feats li{color:rgba(255,255,255,.78);}
.pcheck{width:18px;height:18px;background:var(--blue-light);border-radius:5px;display:flex;align-items:center;justify-content:center;font-size:10px;color:var(--blue);flex-shrink:0;margin-top:2px;}
.plan.featured .pcheck{background:rgba(255,255,255,.18);color:#fff;}
.plan-btn{width:100%;padding:14px;border-radius:9px;font-family:'Inter',sans-serif;font-size:14px;font-weight:700;cursor:pointer;border:1.5px solid var(--blue);background:transparent;color:var(--blue);transition:all .2s;letter-spacing:-.1px;}
.plan-btn:hover{background:var(--blue);color:#fff;}
.plan.featured .plan-btn{background:#fff;color:var(--blue);border-color:#fff;}
.plan.featured .plan-btn:hover{background:var(--blue-light);}

/* FEATURES */
.feat-bg{background:var(--off);border-top:1px solid var(--border);}
.feats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:0;}
.feat-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding: 40px;transition:border-color .25s,transform .25s,box-shadow .25s;}
.feat-card:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:0 10px 32px rgba(59,91,219,.09);}
.feat-ico{width:44px;height:44px;background:var(--blue-light);border-radius:11px;display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:16px;}
.feat-title{font-size: 17px;font-weight:700;color:var(--ink);margin-bottom:8px;letter-spacing:-.2px;}
.feat-desc{font-size: 15px;color:var(--muted);line-height: 1.75;}

/* CTA */
.cta-wrap{max-width:var(--max);margin:0 auto;padding:48px 40px 72px;}
.cta-box{background:var(--blue);border-radius:20px;padding:72px 60px;text-align:center;position:relative;overflow:hidden;}
.cta-glow{position:absolute;inset:0;background:radial-gradient(ellipse 60% 70% at 50% 50%,rgba(255,255,255,.07),transparent);pointer-events:none;}
.cta-chip{display:inline-flex;align-items:center;gap:5px;background:rgba(255,255,255,.12);color:rgba(255,255,255,.9);font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:4px 14px;border-radius:100px;margin-bottom:20px;}
.cta-h2{font-size:clamp(28px,3.2vw,46px);font-weight:800;line-height:1.12;color:#fff;letter-spacing:-1px;margin-bottom:12px;}
.cta-sub{font-size: 17px;color:rgba(255,255,255,.6);max-width:400px;margin:0 auto 36px;line-height:1.7;}
.cta-row{display:flex;gap:10px;justify-content:center;max-width:440px;margin:0 auto;}
.cta-input{flex:1;padding:13px 18px;background:rgba(255,255,255,.1);border:1.5px solid rgba(255,255,255,.2);border-radius:9px;color:#fff;font-size:14px;font-family:'Inter',sans-serif;outline:none;transition:border-color .2s;}
.cta-input::placeholder{color:rgba(255,255,255,.38);}
.cta-input:focus{border-color:rgba(255,255,255,.5);}
.cta-btn{padding:13px 26px;background:#fff;color:var(--blue);border:none;border-radius:9px;font-family:'Inter',sans-serif;font-size:14px;font-weight:700;cursor:pointer;white-space:nowrap;transition:background .2s;}
.cta-btn:hover{background:var(--blue-light);}
.cta-note{font-size:12px;color:rgba(255,255,255,.38);margin-top:13px;}

/* FOOTER */
footer{background:var(--ink);}
.footer-inner{max-width:var(--max);margin:0 auto;padding:36px 40px;display:flex;justify-content:space-between;align-items:center;}
.footer-logo img{height:48px;max-width:160px;width:auto;object-fit:contain;filter:brightness(0) invert(1);}
.footer-links{display:flex;gap:24px;list-style:none;}
.footer-links a{font-size: 14px;color:rgba(255,255,255,.32);text-decoration:none;transition:color .2s;}
.footer-links a:hover{color:rgba(255,255,255,.65);}
.footer-copy{font-size: 13px;color:rgba(255,255,255,.18);}

/* CUSTOM BLOCKS */
.custom-block{padding:72px 0;border-top:1px solid var(--border);}
.custom-block .sec{padding:0 40px;}
.img-block-wrap{max-width:var(--max);margin:0 auto;padding:72px 40px;}
.img-block-inner{width:100%;border-radius:16px;overflow:hidden;background:var(--blue-light);border:2px dashed var(--border-b);aspect-ratio:16/7;position:relative;}
.img-block-inner img{width:100%;height:100%;object-fit:cover;display:none;}
.img-block-inner img.loaded{display:block;}
.testimonials-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:40px;}
.tcard{background:#fff;border:1px solid var(--border);border-radius:14px;padding:32px;}
.tcard:hover{border-color:var(--blue);}
.tquote{font-size:16px;font-style:italic;color:var(--soft);line-height:1.6;margin-bottom:20px;}
.tauthor{display:flex;align-items:center;gap:12px;}
.tavatar{width:38px;height:38px;border-radius:50%;background:var(--blue-light);color:var(--blue);font-size:14px;font-weight:800;display:flex;align-items:center;justify-content:center;}
.tname{font-size:14px;font-weight:700;color:var(--ink);}
.trole{font-size:12px;color:var(--muted);}

/* ANIMATIONS */
@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(.75);}}
@keyframes phoneFloat{0%,100%{transform:translateY(0);}50%{transform:translateY(-9px);}}
@keyframes floatB{0%,100%{transform:translateY(0);}50%{transform:translateY(-5px);}}
.reveal{opacity:0;transform:translateY(20px);transition:opacity .65s ease,transform .65s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}
.d1{transition-delay:.1s;}.d2{transition-delay:.2s;}.d3{transition-delay:.3s;}.d4{transition-delay:.4s;}

/* RESPONSIVE */


/* ══ FLOW STEPS (How it works) ══ */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  align-items: start;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.flow-visual {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.step-photo-base { display: block; }
/* Scan animation overlay */
.scan-anim-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.scan-corners { position: absolute; inset: 10px; }
.sc {
  position: absolute;
  width: 18px; height: 18px;
  border-color: #F5A623;
  border-style: solid;
}
.sc-tl { top: 0; left: 0; border-width: 2.5px 0 0 2.5px; border-radius: 3px 0 0 0; animation: cBlink 2.9s ease-in-out infinite 0s; }
.sc-tr { top: 0; right: 0; border-width: 2.5px 2.5px 0 0; border-radius: 0 3px 0 0; animation: cBlink 2.9s ease-in-out infinite 0.2s; }
.sc-bl { bottom: 0; left: 0; border-width: 0 0 2.5px 2.5px; border-radius: 0 0 0 3px; animation: cBlink 2.9s ease-in-out infinite 0.1s; }
.sc-br { bottom: 0; right: 0; border-width: 0 2.5px 2.5px 0; border-radius: 0 0 3px 0; animation: cBlink 2.9s ease-in-out infinite 0.3s; }
.scan-line-wrap {
  position: absolute;
  inset: 10px;
  overflow: hidden;
}
.scan-line-bar {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: #2C6BED;
  border-radius: 1px;
  opacity: 0.9;
  animation: scanMv 2.9s cubic-bezier(0.45,0,0.55,1) infinite;
}
.scan-line-bar::before {
  content: '';
  position: absolute;
  inset: -8px 0;
  background: linear-gradient(to bottom, transparent, rgba(59,91,219,0.35), transparent);
  border-radius: 2px;
}

/* Step placeholder */
.step-placeholder {
  background: var(--off);
  border: 1.5px dashed var(--border-b);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.step-ph-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.06em;
}
.step-ph-icon {
  font-size: 28px;
}
.step-ph-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

/* Flow text block */
.flow-text {
  width: 100%;
  padding: 18px 0 0;
  text-align: center;
}
.flow-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  opacity: 0.7;
}
.flow-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.flow-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* Connector dots between steps */
.flow-step:not(:last-child) .flow-visual::after {
  content: '';
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-b);
  z-index: 10;
}

/* Step image zone upload hover */
.step-img-zone:hover .step-ph-inner { opacity: 0.8; }

@keyframes scanMv {
  0%   { top: 0; opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes cBlink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}


/* ══ STEP IMAGE REFINEMENT ══ */
.flow-visual {
  /* Remove harsh dark frame from uploaded phone screenshots */
  background: linear-gradient(145deg, #F0F2FF 0%, #E8ECF8 100%);
}

/* Object position for step photos — show top of phone */
.flow-visual .step-photo {
  object-position: center 8%;
  border-radius: 18px;
}

/* Step 01 — QR scan photo crops to show QR area nicely */
.flow-step:nth-child(1) .step-photo { object-position: center 20%; }
/* Step 02 — app interface, show from top */
.flow-step:nth-child(2) .step-photo { object-position: center 5%; }

/* Subtle vignette on bottom of step images */
.flow-visual::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(248,249,252,0.18), transparent);
  border-radius: 0 0 18px 18px;
  pointer-events: none;
  z-index: 2;
}

/* ══ TAP ANIMATION (step 02) ══ */
.tap-anim-wrap {
  position: absolute;
  /* Position over the "Call Waiter" button area — approx 55% down */
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  pointer-events: none;
  z-index: 5;
}
.tap-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #2C6BED;
  opacity: 0;
  animation: tapRipple 2.4s ease-out infinite;
}
.tap-r2 { animation-delay: 0.6s; }
.tap-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #2C6BED;
  opacity: 0.85;
  animation: tapDot 2.4s ease-in-out infinite;
}

@keyframes tapRipple {
  0%   { transform: scale(0.3); opacity: 0.7; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes tapDot {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.85; }
  15%      { transform: translate(-50%,-50%) scale(0.75); opacity: 1; }
  30%      { transform: translate(-50%,-50%) scale(1); opacity: 0.85; }
}

/* ══ CONNECTOR LINE between steps ══ */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  align-items: start;
}
.flow-grid::before {
  content: '';
  position: absolute;
  top: 35%;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-b) 15%, var(--border-b) 85%, transparent);
  z-index: 0;
}
.flow-step { position: relative; z-index: 1; }

/* ══ NOTIF PULSE ANIMATION (step 03) ══ */
.notif-anim-wrap {
  position: absolute;
  top: 12%;
  right: 14%;
  width: 44px; height: 44px;
  pointer-events: none;
  z-index: 5;
}
.notif-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #F5A623;
  opacity: 0;
  animation: notifPing 2.2s ease-out infinite;
}
.notif-p2 { animation-delay: 0.55s; }
.notif-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #F5A623;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: white;
  font-family: 'Inter', sans-serif;
  animation: notifDot 2.2s ease-in-out infinite;
}
.notif-dot::after { content: '1'; }

@keyframes notifPing {
  0%   { transform: scale(0.4); opacity: 0.8; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes notifDot {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  12%      { transform: translate(-50%,-50%) scale(0.82); }
  24%      { transform: translate(-50%,-50%) scale(1); }
}

/* ══ STEP 03 image — crop to show waiter panel top ══ */
.flow-step:nth-child(3) .step-photo {
  object-position: center 0%;
}

/* Remove iphone-frame-wrap overrides that broke step 03 */
.iphone-frame-wrap { all: unset; }
.iphone-svg { display: none; }


/* Step 03 — iPhone frame as SVG image, use contain */

/* ══ FLOW VISUAL — taller to show full phone ══ */
.flow-visual {
  aspect-ratio: 9 / 18 !important;   /* taller ratio for full phone */
  max-height: 380px !important;
  border-radius: 24px !important;
  background: #F0F2FF;
  border: 1.5px solid var(--border-b);
}

/* All step photos — contain so full phone always visible */
.step-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
  background: #F0F2FF;
}

/* Step 01 — it's a real camera screenshot, use cover to fill */
.flow-step:nth-child(1) .step-photo {
  object-fit: cover !important;
  object-position: center 15% !important;
  background: #000;
}
/* Step 02 — black phone photo, cover */
.flow-step:nth-child(2) .step-photo {
  object-fit: cover !important;
  object-position: center 5% !important;
  background: #1C1C1E;
}
/* Steps 03 & 04 — SVG with frame baked in, contain */
.flow-step:nth-child(3) .step-photo,
.flow-step:nth-child(4) .step-photo {
  object-fit: contain !important;
  object-position: center !important;
  padding: 8px;
  background: linear-gradient(145deg, #F0F2FF, #EAEDF8);
}

/* Fix notif pulse position on step 03 */
.flow-step:nth-child(3) .notif-anim-wrap {
  top: 13% !important;
  right: 18% !important;
}

/* ══ DONE ANIMATION (step 04) ══ */
.done-anim-wrap {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  pointer-events: none;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.done-circle {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2.5px solid #16A34A;
  animation: doneRing 2.5s ease-in-out infinite;
}
.done-check {
  font-size: 22px;
  color: #16A34A;
  font-weight: 800;
  animation: doneCheck 2.5s ease-in-out infinite;
  line-height: 1;
}
@keyframes doneRing {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.6; }
}
@keyframes doneCheck {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ══ REMOVE leftover bad overrides from previous attempts ══ */
.iphone-frame-wrap { all: unset !important; display: contents !important; }
.iphone-svg { display: none !important; }


/* ══ HERO IMAGE — dashboard screenshot ══ */
#hero-zone {
  background: linear-gradient(145deg, #EEF2FF 0%, #E0E6F8 100%) !important;
  border-color: #C7D2FE !important;
  border-style: solid !important;
  border-radius: 20px !important;
  overflow: hidden;
  aspect-ratio: 880 / 592 !important;
}
#hero-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: fill !important;
  ;
  display: block !important;
  border-radius: 18px;
}

/* ══ HOW IT WORKS HEADER DIVIDER ══ */
.how-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  padding: 8px 0;
}
.how-header-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-b));
}
.how-header-line:last-child {
  background: linear-gradient(to left, transparent, var(--border-b));
}
.how-header-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.how-header-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ══ FLOW TEXT — tighter to phone (no number above) ══ */
.flow-text {
  width: 100%;
  padding: 18px 0 0;
  text-align: center;
}
.flow-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.flow-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ══ HOW CLOSING STATEMENT ══ */
.how-closing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
  padding: 0 20px;
}
.how-closing-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-b));
}
.how-closing-rule:last-child {
  background: linear-gradient(to left, transparent, var(--border-b));
}
.how-closing-content {
  text-align: center;
  max-width: 520px;
}
.how-closing-title {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.how-closing-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}


/* ══ FLOOR CONTROL SECTION ══ */
.floor-section {
  background: transparent;
  border-top: none;
  padding: 0 40px;
}
.floor-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
  background: var(--ink);
  border-radius: 24px;
}


/* Header */
.floor-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.floor-title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.floor-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

/* Media grid: image left, video right */
.floor-media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: stretch;
}

/* Shared zone styles */
.floor-img-zone,
.floor-video-zone {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.floor-video-zone {
  min-height: 320px;
}
.floor-img-zone:hover,
.floor-video-zone:hover {
  border-color: rgba(59,91,219,0.4);
}

/* Uploaded image */
.floor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  inset: 0;
}
.floor-img.loaded { display: block; }

/* Uploaded video */
.floor-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 16px;
}

/* Placeholder shared */
.floor-img-ph,
.floor-video-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.floor-ph-icon {
  font-size: 36px;
  margin-bottom: 4px;
  opacity: 0.5;
}
.floor-ph-title {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.floor-ph-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  max-width: 220px;
}
.floor-ph-btn {
  margin-top: 6px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.floor-ph-btn:hover { background: var(--blue-dark); }

/* Video play indicator */
.floor-video-zone::after {
  content: '▶  Autoplay';
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 3;
  font-family: 'Inter', sans-serif;
}

/* Accent line */
.floor-accent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
}
.floor-accent-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.floor-accent-line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

/* Override img-overlay for dark bg */
.floor-section 

/* ══ FLOOR FEATURE CARDS ══ */
.floor-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.floor-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.floor-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(59,91,219,0.45);
  transform: translateY(-3px);
}
.floor-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59,91,219,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C93F5;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.floor-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.floor-card-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.floor-card-link {
  font-size: 13px;
  font-weight: 700;
  color: #7C93F5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.floor-card-link:hover {
  color: #fff;
  gap: 8px;
}

/* ══ FEATURE CARDS (floor section, light bg) ══ */
.fcards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fcard {
  background: #F5F6FA;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.fcard:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(59,91,219,0.10);
}
.fcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.fcard-icon svg { width: 28px; height: 28px; }
.fcard-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.fcard-desc {
  font-size: 15px !important;
  color: var(--muted);
  line-height: 1.72 !important;
  flex: 1;
  margin-bottom: 18px;
}
.fcard-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
  margin-top: auto;
}
.fcard-link span { transition: transform 0.2s; display: inline-block; }
.fcard-link:hover { gap: 8px; }
.fcard-link:hover span { transform: translateX(3px); }

/* ══ GLOBAL READABILITY OVERRIDES ══ */
.flow-desc, .feat-desc, .fcard-desc, .step-desc,
.floor-card-desc, .floor-desc, .plan-tagline,
.how-closing-desc, .hero-desc, .sec-sub, .cta-sub {
  font-size: 16px !important;
  line-height: 1.78 !important;
}
.flow-title, .feat-title, .fcard-title,
.step-title, .floor-card-title, .plan-name {
  font-size: 18px !important;
  font-weight: 700 !important;
}
.plan-feats li, .plan-tagline { font-size: 16px !important; }
.chip, .hero-badge span { font-size: 13px !important; }
.stat-num { font-size: 40px !important; }
.stat-lbl { font-size: 14px !important; }
.nav-links a { font-size: 15px !important; }
.footer-links a { font-size: 14px !important; }
.hero-slogan { font-size: 22px !important; }

/* ══ TRANSFORM CTA SECTION ══ */
.transform-section {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.transform-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
}
.transform-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.transform-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}
.transform-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.transform-btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(59,91,219,0.25);
}
.transform-btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,91,219,0.35);
}
.transform-btn-ghost {
  background: #E8EAEF;
  color: var(--ink-soft);
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s;
}
.transform-btn-ghost:hover {
  background: #DDE0E8;
  transform: translateY(-2px);
}


/* ══ REVENUE CARD SECTION ══ */
.revenue-section { background: var(--white); }
.revenue-outer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 40px;
}
.revenue-card {
  background: linear-gradient(135deg, #1A2035 0%, #1E2847 60%, #1A2035 100%);
  border-radius: 28px;
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.revenue-orb {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,91,219,0.2) 0%, rgba(59,91,219,0.07) 50%, transparent 70%);
  pointer-events: none;
}
.revenue-content { position: relative; z-index: 1; max-width: 680px; }
.revenue-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 40px;
}
.revenue-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}
.revenue-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.revenue-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.revenue-icon-green { background: #22C55E; }
.revenue-icon-teal  { background: #14B8A6; }
.revenue-icon-blue  { background: #2C6BED; }
.revenue-text {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}
.revenue-text strong { color: #fff; font-weight: 700; }
.revenue-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(59,91,219,0.35);
}
.revenue-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,91,219,0.45);
}


/* ══ PLANS — CONVERSION REDESIGN ══ */
.plans-new-section { background: var(--off); border-top: 1px solid var(--border); }
.plans-new-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 40px;
}

/* Header */
.plans-new-header { max-width: 640px; margin-bottom: 56px; }
.plans-new-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.plans-new-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* Grid 60/40 */
.plans-new-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}

/* ── VENUE CARD ── */
.plan-venue {
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 4px 24px rgba(17,24,39,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.plan-venue:hover {
  box-shadow: 0 8px 40px rgba(59,91,219,0.12);
  transform: translateY(-2px);
}
.plan-venue-badge {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.plan-venue-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.plan-venue-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.plan-venue-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.plan-venue-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}
.plan-venue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
}
.pv-check {
  width: 22px; height: 22px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}
.plan-venue-cta {
  display: block;
  width: 100%;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  min-height: 52px;
  line-height: 1.2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(59,91,219,0.3);
  margin-bottom: 14px;
}
.plan-venue-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(59,91,219,0.4);
}
.plan-venue-cta:active {
  background: #1a52d4 !important;
  transform: scale(0.98) !important;
  box-shadow: 0 2px 8px rgba(59,91,219,0.3) !important;
}
.plan-venue-cta:focus {
  outline: none !important;
  background: var(--blue) !important;
  color: #fff !important;
}
.plan-venue-cta:focus-visible {
  outline: 3px solid #fff !important;
  outline-offset: 3px !important;
}
.plan-venue-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ── ENTERPRISE CARD ── */
.plan-enterprise {
  background: linear-gradient(145deg, #161C2E 0%, #182040 100%);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.2s;
}
.plan-enterprise:hover { transform: translateY(-2px); }
.plan-ent-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
  opacity: 0.9;
}
.plan-ent-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.plan-ent-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 24px;
}
.plan-ent-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-ent-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.pe-check {
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.plan-ent-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-align: center;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.plan-ent-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ══ PLANS — CONVERSION MICRO-ELEMENTS ══ */
.plans-urgency {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.plans-urgency::before {
  content: '⚡ ';
}
.plan-venue-trust {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
}
.plan-venue-trust::before {
  content: '✓ ';
  color: #16A34A;
  font-weight: 700;
}
.plan-venue-benefit {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 6px;
  font-weight: 500;
}

/* ══ CONVERSION MICRO-COPY ══ */
.plans-urgency {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.plan-venue-setup {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}
.plan-venue-benefit {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 6px;
  font-weight: 500;
}
/* Enterprise scale down ~10% */
.plan-enterprise {
  transform-origin: top right;
  opacity: 0.92;
}
.plan-enterprise:hover { opacity: 1; }
.plan-ent-title { font-size: 20px !important; }
.plan-ent-sub { font-size: 13px !important; }
.plan-ent-item { font-size: 13px !important; }


/* ══ VENUE CTA BUTTON RESET ══ */
button.plan-venue-cta {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}
button.plan-venue-cta:focus,
button.plan-venue-cta:focus-visible,
button.plan-venue-cta:focus-within {
  outline: none !important;
  box-shadow: 0 8px 28px rgba(59,91,219,0.4) !important;
  background: var(--blue) !important;
  color: #fff !important;
}
button.plan-venue-cta:active {
  background: #1a52d4 !important;
  color: #fff !important;
  transform: scale(0.98) !important;
  box-shadow: 0 2px 8px rgba(59,91,219,0.3) !important;
  outline: none !important;
}


/* ══ GLOBAL BUTTON FOCUS FIX — never white on blue ══ */
.btn-primary:focus, .btn-primary:active,
.btn-nav:focus, .btn-nav:active,
.btn-nav-primary:focus, .btn-nav-primary:active,
.plan-venue-cta:focus, .plan-venue-cta:active,
.revenue-btn:focus, .revenue-btn:active,
.transform-btn-primary:focus, .transform-btn-primary:active,
.floor-ph-btn:focus, .floor-ph-btn:active,
.cta-btn:focus, .cta-btn:active,
button.plan-venue-cta:focus, button.plan-venue-cta:active {
  background: #1a52d4 !important;
  color: #ffffff !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(59,91,219,0.35) !important;
  transform: scale(0.98) !important;
  -webkit-tap-highlight-color: transparent !important;
}
/* Remove ALL default browser focus styles on blue buttons */
.btn-primary, .btn-nav, .btn-nav-primary,
.plan-venue-cta, .revenue-btn, .transform-btn-primary,
.floor-ph-btn, .cta-btn, button.plan-venue-cta {
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:focus-visible, .btn-nav:focus-visible,
.plan-venue-cta:focus-visible, .revenue-btn:focus-visible,
.transform-btn-primary:focus-visible, .cta-btn:focus-visible {
  outline: 3px solid rgba(255,255,255,0.6) !important;
  outline-offset: 2px !important;
  background: #1a52d4 !important;
  color: #fff !important;
}


/* ══ BUTTON TAG RESET — matches <a> style ══ */
button.btn-primary, button.btn-nav, button.btn-nav-primary,
button.revenue-btn, button.transform-btn-primary {
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none !important;
}
button.btn-primary:focus, button.btn-primary:active,
button.btn-nav:focus, button.btn-nav:active,
button.revenue-btn:focus, button.revenue-btn:active,
button.transform-btn-primary:focus, button.transform-btn-primary:active {
  outline: none !important;
  background: #1a52d4 !important;
  color: #fff !important;
}


/* ══ FOOTER REDESIGN ══ */
footer{background:var(--ink);}
.footer-top{max-width:var(--max);margin:0 auto;padding:64px 40px 48px;display:grid;grid-template-columns:1fr 2fr;gap:64px;border-bottom:1px solid rgba(255,255,255,0.08);}
.footer-brand{display:flex;flex-direction:column;gap:20px;}
.footer-logo{position:relative;display:inline-block;}
.footer-logo img{height:48px;max-width:160px;width:auto;object-fit:contain;filter:brightness(0) invert(1);display:block;}
.footer-tagline{font-size:14px;color:rgba(255,255,255,0.38);line-height:1.65;max-width:260px;}
.footer-nav-cols{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;}
.footer-col-title{font-size:11px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:rgba(255,255,255,0.5);margin-bottom:16px;}
.footer-col-links{list-style:none;display:flex;flex-direction:column;gap:10px;}
.footer-col-links a{font-size:14px;color:rgba(255,255,255,0.65);text-decoration:none;transition:color 0.2s;}
.footer-col-links a:hover{color:#fff;}
.footer-bottom{max-width:var(--max);margin:0 auto;padding:24px 40px;display:flex;justify-content:space-between;align-items:center;}
.footer-copy{font-size:13px;color:rgba(255,255,255,0.45);}
.footer-icons{display:flex;gap:12px;}
.footer-icon{width:36px;height:36px;border-radius:8px;border:1px solid rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.35);text-decoration:none;transition:border-color 0.2s,color 0.2s;}
.footer-icon:hover{border-color:rgba(255,255,255,0.35);color:rgba(255,255,255,0.75);}
@media(max-width:900px){.footer-top{grid-template-columns:1fr;gap:40px;padding:48px 20px 36px;}.footer-nav-cols{grid-template-columns:repeat(2,1fr);gap:24px;}.footer-bottom{flex-direction:column;gap:16px;padding:20px;text-align:center;}}
/* ══ LANGUAGE SELECTOR ══ */
.lang-selector{position:relative;}
.lang-btn{display:flex;align-items:center;gap:5px;background:transparent;border:1.5px solid var(--border);border-radius:8px;padding:7px 11px;font-size:13px;font-weight:600;color:var(--soft);cursor:pointer;font-family:'Inter',sans-serif;transition:border-color 0.2s,background 0.2s;white-space:nowrap;}
.lang-btn:hover{border-color:var(--blue);color:var(--blue);background:var(--blue-light);}
.lang-menu{position:absolute;top:calc(100% + 8px);right:0;background:#fff;border:1px solid var(--border);border-radius:12px;padding:6px;box-shadow:0 8px 32px rgba(17,24,39,0.12);display:none;flex-direction:column;gap:2px;min-width:150px;z-index:500;}
.lang-menu.open{display:flex;}
.lang-opt{display:flex;align-items:center;gap:9px;background:transparent;border:none;border-radius:8px;padding:9px 12px;font-size:13px;font-weight:500;color:var(--soft);cursor:pointer;font-family:'Inter',sans-serif;text-align:left;transition:background 0.15s;white-space:nowrap;}
.lang-opt:hover,.lang-opt.active{background:var(--blue-light);color:var(--blue);}

/* ════════════════════════════════════════════
   MOBILE RESPONSIVE — teibol.com
   Targets: 320px – 768px
   Desktop (>900px) is UNCHANGED
   ════════════════════════════════════════════ */

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {

  /* NAV */
  nav { top: 0; }
  .nav-inner { padding: 0 20px; height: 56px; }
  .nav-links { display: none; }
  .nav-right { gap: 6px; }
  .btn-ghost { padding: 6px 10px; font-size: 13px; }
  .btn-nav { padding: 8px 14px; font-size: 13px; }
  .lang-btn { padding: 5px 9px; font-size: 12px; }

  /* HERO */
  .hero { padding-top: 56px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px 0;
    gap: 32px;
  }
  .hero-visual { order: -1; }
  .hero-img-zone { aspect-ratio: 16/10; }
  .hero-h1 { font-size: clamp(28px, 7vw, 42px); }
  .hero-slogan { font-size: 17px; }
  .hero-desc { font-size: 15px; max-width: 100%; }
  .hero-btns { flex-wrap: wrap; gap: 10px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .fl-b1, .fl-b2 { display: none; }

  /* STATS */
  .stats-wrap { padding: 0 20px; margin-top: 32px; }
  .stats-box {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
    gap: 0;
    border-radius: 12px;
  }
  .stat-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 14px 12px !important;
  }
  .stat-col:last-child { border-bottom: none; }
  .stat-col:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12) !important; }
  .stat-num { font-size: 28px; }
  .stat-num .su { font-size: 15px; }
  .stat-lbl { font-size: 12px; }

  /* HOW IT WORKS */
  .sec { padding: 56px 20px; }
  .how-header { gap: 12px; }
  .how-header-label { font-size: 14px; }
  .sec-h2 { font-size: clamp(24px, 6vw, 36px); }
  .sec-sub { font-size: 15px; max-width: 100%; }

  /* FLOW GRID — 2 columns on tablet */
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
  }
  .flow-visual { max-height: 300px; }
  .flow-title { font-size: 15px; }
  .flow-desc { font-size: 13px; }
  .flow-text { padding: 12px 4px 0; }

  /* HOW CLOSING */
  .how-closing { grid-template-columns: 1fr; gap: 16px; }
  .how-closing-rule { display: none; }
  .how-closing-title { font-size: clamp(20px, 5vw, 30px); }

  /* FLOOR SECTION */
  .floor-section { padding: 0 20px; }
  .floor-inner { padding: 48px 24px; border-radius: 16px; }
  .floor-title { font-size: clamp(22px, 5vw, 36px); }
  .floor-desc { font-size: 14px; }
  .floor-video-full video { max-height: 300px; }

  /* FEATURE CARDS 4-col */
  .fcards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fcard { padding: 22px 18px 18px; }
  .fcard-title { font-size: 15px !important; }
  .fcard-desc { font-size: 13px !important; }

  /* FEATURES 3-col */
  .feats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
  .feat-card { padding: 28px 20px; }
  .feat-title { font-size: 15px; }
  .feat-desc { font-size: 13px; }

  /* REVENUE */
  .revenue-section { padding: 0; }
  .revenue-outer { padding: 48px 20px; }
  .revenue-card { padding: 40px 28px; border-radius: 20px; }
  .revenue-orb { display: none; }
  .revenue-title { font-size: clamp(22px, 5vw, 36px); margin-bottom: 28px; }
  .revenue-text { font-size: 14px; }

  /* TRANSFORM */
  .transform-inner { padding: 64px 20px; }
  .transform-title { font-size: clamp(28px, 7vw, 48px); letter-spacing: -1px; }
  .transform-sub { font-size: 15px; }
  .transform-btns { flex-direction: column; align-items: center; gap: 12px; }
  .transform-btn-primary, .transform-btn-ghost { width: 100%; max-width: 320px; text-align: center; }

  /* PLANS */
  .plans-new-inner { padding: 48px 20px; }
  .plans-new-header { max-width: 100%; margin-bottom: 36px; }
  .plans-new-title { font-size: clamp(22px, 6vw, 36px); }
  .plans-new-sub { font-size: 15px; }
  .plans-new-grid { grid-template-columns: 1fr; gap: 20px; }
  .plan-venue { padding: 28px 24px; }
  .plan-enterprise { padding: 28px 24px; }

  /* CTA */
  .cta-wrap { padding: 24px 20px 48px; }
  .cta-box { padding: 48px 20px; border-radius: 16px; }
  .cta-h2 { font-size: clamp(22px, 6vw, 36px); }
  .cta-sub { font-size: 15px; }
  .cta-row { flex-direction: column; gap: 10px; max-width: 100%; }
  .cta-input, .cta-btn { width: 100%; }

  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 36px;
  }
  .footer-nav-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; padding: 20px; text-align: center; }
  .footer-tagline { max-width: 100%; }
}

/* ── Small phones (≤500px) ── */
@media (max-width: 500px) {

  /* NAV */
  .lang-btn { padding: 4px 7px; font-size: 11px; }
  .lang-label { display: none; }

  /* HERO */
  .hero { padding-top: 56px; }
  .hero-inner { padding: 24px 16px 0; }
  .hero-h1 { font-size: clamp(26px, 8vw, 36px); }
  .hero-badge { font-size: 10px; }
  .hero-desc { font-size: 14px; }

  /* STATS */
  .stats-wrap { margin-top: 24px; }
  .stats-box { grid-template-columns: repeat(2, 1fr); padding: 16px; }
  .stat-num { font-size: 24px; }

  /* FLOW — 1 column on small phones */
  .flow-grid { grid-template-columns: 1fr; gap: 32px; }
  .flow-visual { max-height: 340px; }
  .flow-step { max-width: 320px; margin: 0 auto; width: 100%; }
  .flow-title { font-size: 16px; font-weight: 700; }
  .flow-desc { font-size: 14px; }

  /* FEATURE CARDS — 1 col */
  .fcards-grid { grid-template-columns: 1fr; }
  .feats-grid { grid-template-columns: 1fr; }

  /* FLOOR */
  .floor-inner { padding: 36px 16px; }
  .floor-title { font-size: clamp(20px, 6vw, 28px); }

  /* REVENUE */
  .revenue-outer { padding: 32px 16px; }
  .revenue-card { padding: 32px 20px; }
  .revenue-title { font-size: clamp(20px, 6vw, 28px); }

  /* PLANS */
  .plans-new-inner { padding: 40px 16px; }
  .plan-venue, .plan-enterprise { padding: 24px 18px; }
  .plan-venue-cta { font-size: 15px; }

  /* CTA */
  .cta-box { padding: 40px 16px; }
  .cta-h2 { font-size: clamp(20px, 6vw, 30px); }

  /* FOOTER */
  .footer-top { padding: 40px 16px 28px; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { padding: 16px; }
  .footer-copy { font-size: 11px; }
  .footer-icons { gap: 8px; }
  .footer-icon { width: 32px; height: 32px; }
}

/* ── Prevent ALL horizontal overflow ── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
*, *::before, *::after {
  max-width: 100%;
}
img, video, svg {
  max-width: 100%;
  height: auto;
}
.section-wrap {
  overflow-x: hidden;
}