/* ════════════════════════════════════════════════════════════════════
   StoreApp Landing — Modern Design System
   ════════════════════════════════════════════════════════════════════ */

:root {
  --o:        #f97316;
  --o-dark:   #ea580c;
  --o-darker: #c2410c;
  --o-bright: #fb923c;
  --o-light:  #fff7ed;
  --o-med:    #ffedd5;
  --o-soft:   #fed7aa;

  --dark:     #0f172a;
  --dark-2:   #1e293b;
  --navy:     #1a2332;

  --g1: #fafbfc;
  --g2: #f3f4f6;
  --g3: #e5e7eb;
  --g4: #9ca3af;
  --g5: #6b7280;
  --g6: #4b5563;
  --g7: #374151;

  --white: #ffffff;
  --green: #10b981;
  --red:   #ef4444;

  --shadow-sm: 0 2px 8px rgba(15,23,42,.04);
  --shadow:    0 10px 30px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,.12);
  --shadow-o:  0 10px 30px rgba(249,115,22,.25);
  --shadow-o-lg: 0 20px 50px rgba(249,115,22,.35);

  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.ct { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--o); }

/* ════════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  height: 68px;
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}
.nav-in {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; color: var(--white);
  letter-spacing: -0.01em;
}
.logo-ic {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-ic img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,.18)); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.95);
  transition: color .2s;
  position: relative;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2.5px; background: var(--white);
  transform: scaleX(0); transition: transform .2s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

/* Hamburger button */
.menu-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
  width: 42px; height: 42px;
  position: relative;
}
.menu-btn span {
  display: block; width: 26px; height: 2.5px;
  background: var(--white);
  margin: 5px auto; border-radius: 3px;
  transition: transform .3s, opacity .3s;
}
.nav.is-open .menu-btn span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav.is-open .menu-btn span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .menu-btn span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: linear-gradient(180deg, var(--o-dark) 0%, var(--o-darker) 100%);
  padding: 24px 24px 36px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
.mobile-menu a {
  display: block;
  padding: 13px 16px;
  font-size: 12.5px; font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 12px;
  transition: background .2s, transform .2s;
}
.mobile-menu a:hover,
.mobile-menu a:focus,
.mobile-menu a.active {
  background: rgba(255,255,255,.12);
}
.mobile-menu a:active {
  transform: scale(0.98);
}

.nav.is-open .mobile-menu {
  display: flex;
  animation: mmSlide .3s cubic-bezier(.4,0,.2,1);
}
@keyframes mmSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
}

/* ════════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white) !important;
  padding: 12px 26px; border-radius: 12px;
  font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-o);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--o-bright), var(--o));
  opacity: 0; transition: opacity .25s;
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-o-lg);
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  color: var(--o-dark) !important;
  padding: 12px 26px; border-radius: 12px;
  font-weight: 700; font-size: 14px;
  border: 2px solid var(--o);
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .2s;
}
.btn-ghost:hover {
  background: var(--o);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-o);
}

.btn-white {
  background: var(--white); color: var(--o-dark) !important;
  padding: 12px 26px; border-radius: 12px;
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s; box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }

.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: 14px; }
.btn-block { display: flex; width: 100%; }

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(251,146,60,.08), transparent 60%),
    linear-gradient(180deg, var(--o-light) 0%, #fffbf5 100%);
  padding: 80px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { justify-self: center; max-width: 400px; }
}
.hero::before {
  content: ''; position: absolute;
  top: 20%; right: -100px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,.08), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -50px; left: -50px; width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(251,146,60,.08), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero .ct { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--o-dark);
  padding: 9px 18px 9px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(249,115,22,.15), 0 2px 4px rgba(0,0,0,.04);
  border: 1px solid rgba(249,115,22,.15);
  position: relative;
  overflow: hidden;
}
.hero-tag::before {
  /* Shine effect on hover */
  content: ''; position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,.15), transparent);
  transform: translateX(-100%);
  animation: tagShine 3s ease-in-out infinite;
}
@keyframes tagShine {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(200%); }
}
.hero-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.25);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,.1); }
}
.hero-title {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 22px;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--o), var(--o-darker));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 15.5px;
  color: var(--g6);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--dark); font-weight: 700; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* Trust bar */
.hero-trust {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 20px 12px 16px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(249,115,22,.12);
  border-radius: 999px;
  margin-bottom: 48px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.hero-avatars { display: flex; }
.hero-av {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 12px;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
.hero-av:first-child { margin-left: 0; }
.hero-trust-text { line-height: 1.3; }
.hero-stars {
  font-size: 12px;
  color: #fbbf24;
  letter-spacing: 1px;
}
.hero-trust-count {
  font-size: 12px; color: var(--g6);
  margin-top: 2px;
}
.hero-trust-count strong { color: var(--dark); font-weight: 700; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 680px;
  padding: 22px 10px;
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(249,115,22,.15);
  box-shadow: 0 12px 36px rgba(249,115,22,.08);
}
.stat {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.stat + .stat::before {
  content: ''; position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(249,115,22,.25), transparent);
}
.stat-ic {
  font-size: 18px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 4px rgba(249,115,22,.2));
}
.stat-num {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--o), var(--o-darker));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; letter-spacing: -0.015em;
}
.stat-lb { font-size: 12px; color: var(--g5); margin-top: 6px; font-weight: 600; }
@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); padding: 22px 10px; row-gap: 20px; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(3)::before,
  .stat:nth-child(3) { border-top: 1px solid rgba(249,115,22,.15); padding-top: 20px; }
}

/* ════════════════════════════════════════════════════════════════════
   iPhone MOCKUP — titanium frame, Dynamic Island, side buttons
   ════════════════════════════════════════════════════════════════════ */
.phone {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  padding: 14px 12px;
  background:
    linear-gradient(135deg, #4a4a52 0%, #2c2c32 50%, #3a3a42 100%);
  border-radius: 55px;
  box-shadow:
    0 50px 100px rgba(249,115,22,.22),
    0 20px 50px rgba(0,0,0,.25),
    0 0 0 1.5px rgba(255,255,255,.1) inset,
    0 -2px 3px rgba(0,0,0,.4) inset;
}
.phone::before {
  /* Titanium edge highlight */
  content: ''; position: absolute;
  inset: 2px; border-radius: 53px;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.04) 50%, transparent 70%);
  pointer-events: none;
}

/* Side buttons — iPhone 15 Pro style */
.phone-btn-silent, .phone-btn-vol-up, .phone-btn-vol-dn, .phone-btn-power {
  position: absolute;
  background: linear-gradient(90deg, #2a2a30, #3a3a42, #2a2a30);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.1), inset 0 -1px 1px rgba(0,0,0,.3);
}
/* Left side — action/silent button (iPhone 15 Pro: Action button) */
.phone-btn-silent { left: -3px; top: 100px; width: 3px; height: 34px; border-radius: 2px 0 0 2px; }
.phone-btn-vol-up { left: -3px; top: 150px; width: 3px; height: 52px; border-radius: 2px 0 0 2px; }
.phone-btn-vol-dn { left: -3px; top: 212px; width: 3px; height: 52px; border-radius: 2px 0 0 2px; }
/* Right side — power button */
.phone-btn-power  { right: -3px; top: 160px; width: 3px; height: 80px; border-radius: 0 2px 2px 0; }

/* Inner screen */
.phone-screen {
  position: relative;
  background: var(--white);
  border-radius: 42px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.5);
}

/* Dynamic Island — pill shape at top center */
.phone-island {
  position: absolute;
  top: 11px; left: 50%; transform: translateX(-50%);
  width: 112px; height: 34px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 1px 2px rgba(0,0,0,.3);
}
.phone-island::before {
  /* Camera dot */
  content: '';
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a1a24, #000);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.phone-island::after {
  /* Small sensor dot */
  content: '';
  position: absolute;
  top: 50%; left: 18px;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0a0a10;
}

/* Status bar */
.phone-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px 10px;
  font-size: 13px; font-weight: 600;
  color: var(--dark);
  background: var(--white);
  min-height: 50px;
  position: relative;
  z-index: 5;
}
.phone-time {
  font-family: -apple-system, 'SF Pro Display', system-ui, sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em;
  margin-left: 4px;
}
.phone-status-r {
  display: flex; gap: 6px; align-items: center;
  margin-right: 4px;
}

/* Signal bars */
.phone-signal { display: inline-flex; align-items: flex-end; gap: 1.5px; height: 10px; }
.phone-signal i {
  display: block;
  width: 2.5px;
  background: var(--dark);
  border-radius: 1px;
}
.phone-signal i:nth-child(1) { height: 3px; }
.phone-signal i:nth-child(2) { height: 5px; }
.phone-signal i:nth-child(3) { height: 7px; }
.phone-signal i:nth-child(4) { height: 9px; }

/* WiFi */
.phone-wifi { display: inline-flex; color: var(--dark); }

/* Battery */
.phone-battery {
  position: relative;
  width: 25px; height: 11px;
  border: 1.3px solid var(--dark);
  border-radius: 3px;
  opacity: .9;
}
.phone-battery::after {
  content: ''; position: absolute;
  right: -3px; top: 50%; transform: translateY(-50%);
  width: 1.5px; height: 5px;
  background: var(--dark);
  border-radius: 0 1px 1px 0;
}
.phone-battery i {
  position: absolute; inset: 1px;
  background: var(--dark);
  border-radius: 1.5px;
}

/* Home indicator */
.phone-home {
  padding: 8px 0 10px;
  display: flex; justify-content: center;
  background: var(--white);
}
.phone-home::after {
  content: ''; display: block;
  width: 134px; height: 5px;
  border-radius: 3px;
  background: var(--dark);
  opacity: .9;
}

/* Chat header */
.chat-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--g2);
}
.chat-hdr-l { display: flex; align-items: center; gap: 10px; }
.chat-hdr-back {
  font-size: 24px; color: var(--o);
  font-weight: 700; cursor: pointer;
}
.chat-hdr-av {
  position: relative; width: 38px; height: 38px;
}
.chat-hdr-av img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
}
.chat-hdr-online {
  position: absolute; bottom: 0; right: 0;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--white);
}
.chat-hdr-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.chat-hdr-sub { font-size: 11px; color: var(--green); font-weight: 500; margin-top: 1px; }
.chat-hdr-r { display: flex; gap: 14px; color: var(--o); font-size: 16px; }
.chat-hdr-r span { cursor: pointer; }

/* Chat body */
.chat-body {
  background: linear-gradient(180deg, #fafbfc 0%, var(--white) 100%);
  padding: 16px 14px 12px;
  max-height: 460px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 6px;
}
.chat-body::-webkit-scrollbar { width: 4px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--g3); border-radius: 2px; }

.chat-date {
  text-align: center; font-size: 11px;
  color: var(--g4); margin: 4px 0 10px;
  font-weight: 500;
}

.msg {
  display: flex; align-items: flex-end; gap: 6px;
  animation: msgIn .4s ease-out backwards;
}
.msg:nth-child(2) { animation-delay: .1s; }
.msg:nth-child(3) { animation-delay: .25s; }
.msg:nth-child(4) { animation-delay: .4s; }
.msg:nth-child(5) { animation-delay: .55s; }
.msg:nth-child(6) { animation-delay: .7s; }
.msg:nth-child(7) { animation-delay: .85s; }
.msg:nth-child(8) { animation-delay: 1s; }
.msg:nth-child(9) { animation-delay: 1.15s; }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.msg-u { justify-content: flex-end; }
.msg-u .msg-bubble {
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  border-radius: 20px 20px 6px 20px;
  box-shadow: 0 4px 12px rgba(249,115,22,.25);
  max-width: 78%;
}

.msg-b .msg-bubble {
  background: #eef0f5;
  color: var(--dark);
  border-radius: 20px 20px 20px 6px;
  max-width: 78%;
}

.msg-av {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--white);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.msg-bubble {
  padding: 9px 14px; font-size: 13px;
  line-height: 1.45;
}
.msg-bubble strong { font-weight: 700; }

/* Product card inside message */
.msg-card {
  background: var(--white);
  border: 1px solid var(--g2);
  border-radius: 16px;
  padding: 12px;
  font-size: 12.5px;
  max-width: 78%;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.msg-card-title { font-weight: 700; color: var(--dark); margin-bottom: 4px; font-size: 13px; }
.msg-card-price {
  font-size: 18px; font-weight: 800;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.msg-card-price span { font-size: 12px; font-weight: 600; margin-left: 2px; }
.msg-card-stock { font-size: 12px; color: var(--green); margin-bottom: 8px; }
.msg-card-btn {
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  padding: 8px; border-radius: 10px;
  text-align: center; font-weight: 700; font-size: 12px;
  box-shadow: 0 3px 10px rgba(249,115,22,.3);
}

.msg-success { background: linear-gradient(135deg, #ecfdf5, var(--white)) !important; border: 1px solid rgba(16,185,129,.2); }
.msg-success-t { font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.msg-pay {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white); padding: 7px 14px;
  border-radius: 8px; font-size: 12px; font-weight: 700;
  margin-top: 2px; box-shadow: 0 3px 10px rgba(249,115,22,.3);
}

.msg-time {
  text-align: center; font-size: 10px;
  color: var(--g4); margin-top: 8px;
  font-style: italic;
}

/* Input bar */
.chat-input {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px 14px;
  background: var(--white);
  border-top: 1px solid var(--g2);
}
.chat-input-ic {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--o-light); color: var(--o-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}
.chat-input-field {
  flex: 1; background: var(--g1);
  padding: 8px 14px; border-radius: 18px;
  font-size: 13px; color: var(--g4);
  border: 1px solid var(--g2);
}
.chat-input-send {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(249,115,22,.3);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   SECTIONS common
   ════════════════════════════════════════════════════════════════════ */
section { padding: 100px 0; }
.sec-tag {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  margin-bottom: 18px;
}
.tag-orange {
  background: var(--o-med); color: var(--o-darker);
  border: 1px solid rgba(249,115,22,.15);
}
.tag-yellow {
  background: #fef3c7; color: #92400e;
  border: 1px solid rgba(245,158,11,.2);
}
.tag-dark {
  background: rgba(249,115,22,.15); color: var(--o-bright);
  border: 1px solid rgba(249,115,22,.25);
}
.sec-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.sec-title .accent {
  background: linear-gradient(135deg, var(--o), var(--o-darker));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-desc {
  color: var(--g5); font-size: 15px;
  max-width: 600px; margin-bottom: 44px;
  line-height: 1.65;
}
.tc { text-align: center; }
.tc .sec-desc { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════════════════════════════
   FEATURES — Bento Grid
   ════════════════════════════════════════════════════════════════════ */
.features {
  background:
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(249,115,22,.05), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(251,146,60,.05), transparent 60%),
    var(--g1);
}

.feat-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}

.feat {
  position: relative;
  background: var(--white);
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--g3);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
  overflow: hidden;
  --feat-c:      #f97316;
  --feat-c-soft: rgba(249,115,22,.10);
  --feat-c-ink:  rgba(249,115,22,.22);
}
.feat::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--feat-c), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.feat::after {
  content: ''; position: absolute;
  bottom: -45%; right: -25%;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, var(--feat-c-soft), transparent 65%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.feat:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -18px rgba(15,23,42,.16);
  border-color: transparent;
}
.feat:hover::before { transform: scaleX(1); }
.feat:hover::after  { opacity: 1; }

/* Number badge */
.feat-num {
  position: absolute; top: 22px; right: 24px;
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  color: var(--g4);
  font-variant-numeric: tabular-nums;
  z-index: 1;
}

.feat h3 {
  font-size: 16px; font-weight: 800; margin-bottom: 6px;
  letter-spacing: -0.01em; color: var(--dark);
  position: relative; z-index: 1;
}
.feat p {
  font-size: 13.5px; color: var(--g5); line-height: 1.65;
  position: relative; z-index: 1;
}

/* Icons — colored gradient per card */
.feat-ic {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--feat-c-soft), rgba(255,255,255,.7));
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.9),
    0 8px 20px -10px var(--feat-c);
  border: 1px solid var(--feat-c-soft);
  transition: transform .35s;
  position: relative; z-index: 1;
}
.feat:hover .feat-ic {
  transform: scale(1.08) rotate(-4deg);
}
.feat-ic--xl {
  width: 72px; height: 72px; border-radius: 18px;
  font-size: 36px; margin-bottom: 22px;
}

/* Per-card accent colors */
.feat--ai   { --feat-c: #f97316; --feat-c-soft: rgba(249,115,22,.12); --feat-c-ink: rgba(249,115,22,.25); }
.feat--ch   { --feat-c: #3b82f6; --feat-c-soft: rgba(59,130,246,.10);  --feat-c-ink: rgba(59,130,246,.22); }
.feat--ord  { --feat-c: #a855f7; --feat-c-soft: rgba(168,85,247,.10); --feat-c-ink: rgba(168,85,247,.22); }
.feat--pay  { --feat-c: #10b981; --feat-c-soft: rgba(16,185,129,.10); --feat-c-ink: rgba(16,185,129,.22); }
.feat--inv  { --feat-c: #f59e0b; --feat-c-soft: rgba(245,158,11,.10); --feat-c-ink: rgba(245,158,11,.22); }
.feat--rep  { --feat-c: #6366f1; --feat-c-soft: rgba(99,102,241,.10); --feat-c-ink: rgba(99,102,241,.22); }
.feat--book { --feat-c: #ec4899; --feat-c-soft: rgba(236,72,153,.10); --feat-c-ink: rgba(236,72,153,.22); }
.feat--ocr  { --feat-c: #14b8a6; --feat-c-soft: rgba(20,184,166,.10); --feat-c-ink: rgba(20,184,166,.22); }
.feat--team { --feat-c: #f43f5e; --feat-c-soft: rgba(244,63,94,.10);  --feat-c-ink: rgba(244,63,94,.22); }

/* Grid spans */
.feat--hero { grid-column: span 2; grid-row: span 2; padding: 34px 30px; display: flex; flex-direction: column; }
.feat--wide { grid-column: span 2; }

/* Hero extras */
.feat-badge {
  position: absolute; top: 22px; right: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white); font-size: 10px; font-weight: 800;
  letter-spacing: .12em;
  box-shadow: 0 6px 16px rgba(249,115,22,.35);
  z-index: 2;
}
.feat--hero h3 { font-size: 22px; }
.feat--hero p  { font-size: 14px; }

.feat-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 18px;
  position: relative; z-index: 1;
}
.chip {
  padding: 5px 11px; border-radius: 999px;
  background: var(--o-light); color: var(--o-darker);
  border: 1px solid rgba(249,115,22,.18);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: -0.005em;
}

.feat-pulse {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 16px; padding: 9px 14px;
  border-radius: 999px; background: var(--g1);
  border: 1px solid var(--g3);
  font-size: 12px; color: var(--g6); font-weight: 700;
  align-self: flex-start;
  position: relative; z-index: 1;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16,185,129,.55);
  animation: featPulse 1.8s ease-out infinite;
}
@keyframes featPulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.55); }
  100% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}

/* Wide-card row layout */
.feat-row {
  display: flex; gap: 18px; align-items: flex-start;
}
.feat--wide .feat-ic { flex-shrink: 0; margin-bottom: 0; }
.feat-body { flex: 1; min-width: 0; }

/* Channel icon strip */
.chan-icons {
  display: flex; gap: 8px; margin-top: 12px;
}
.chan-icons span {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--g1); border: 1px solid var(--g3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: transform .25s, border-color .25s, background .25s;
  cursor: default;
}
.feat:hover .chan-icons span {
  border-color: var(--feat-c-ink);
}
.chan-icons span:hover {
  transform: translateY(-2px) scale(1.1);
  background: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  .feat-bento { grid-template-columns: repeat(2, 1fr); }
  .feat--hero { grid-column: span 2; grid-row: span 2; }
  .feat--wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .feat-bento { grid-template-columns: 1fr; gap: 14px; }
  .feat--hero, .feat--wide { grid-column: span 1; grid-row: auto; }
  .feat--hero { padding: 28px 22px; }
  .feat-row { flex-direction: row; }
  .feat--hero .feat-ic--xl { width: 60px; height: 60px; font-size: 30px; margin-bottom: 16px; }
  .feat-badge { top: 18px; right: 18px; padding: 5px 10px; }
}

/* ════════════════════════════════════════════════════════════════════
   INDUSTRIES — Colorful Cards
   ════════════════════════════════════════════════════════════════════ */
.industries {
  background:
    radial-gradient(ellipse 50% 40% at 85% 5%, rgba(59,130,246,.05), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 95%, rgba(236,72,153,.05), transparent 60%),
    var(--white);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ind {
  --ind-c:    #f97316;
  --ind-soft: rgba(249,115,22,.10);
  --ind-ink:  rgba(249,115,22,.22);
  position: relative;
  background: var(--white);
  padding: 24px 22px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--g3);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
  overflow: hidden;
  text-align: left;
}
.ind::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ind-c), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.ind-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% -10%, var(--ind-soft), transparent 55%);
  opacity: .7;
  pointer-events: none;
  transition: opacity .35s;
}
.ind:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px var(--ind-ink);
  border-color: transparent;
}
.ind:hover::before { transform: scaleX(1); }
.ind:hover .ind-glow { opacity: 1.3; }
.ind > *:not(.ind-glow) { position: relative; z-index: 1; }

.ind-ic {
  width: 58px; height: 58px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--ind-soft), rgba(255,255,255,.7));
  border: 1px solid var(--ind-soft);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.9),
    0 10px 24px -10px var(--ind-c);
  transition: transform .35s;
}
.ind:hover .ind-ic {
  transform: scale(1.08) rotate(-4deg);
}

.ind h4 {
  font-size: 16px; font-weight: 800;
  color: var(--dark); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ind p {
  font-size: 12.5px; color: var(--g5);
  line-height: 1.55; margin-bottom: 14px;
  min-height: 36px;
}
.ind-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.ind-tags span {
  padding: 3px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700;
  background: var(--ind-soft); color: var(--ind-c);
  border: 1px solid var(--ind-soft);
  letter-spacing: -0.005em;
}

/* "Coming soon" badge */
.ind-soon {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, var(--o));
  color: var(--white);
  font-size: 9.5px; font-weight: 800;
  letter-spacing: .1em;
  box-shadow: 0 6px 14px -4px rgba(249,115,22,.5);
  white-space: nowrap;
}
.ind--soon .ind-ic,
.ind--soon h4,
.ind--soon p,
.ind--soon .ind-tags {
  opacity: .75;
}
.ind--soon:hover .ind-ic,
.ind--soon:hover h4,
.ind--soon:hover p,
.ind--soon:hover .ind-tags {
  opacity: 1;
}

/* Per-industry accent colors */
.ind--retail  { --ind-c: #f97316; --ind-soft: rgba(249,115,22,.10); --ind-ink: rgba(249,115,22,.22); }
.ind--beauty  { --ind-c: #ec4899; --ind-soft: rgba(236,72,153,.10); --ind-ink: rgba(236,72,153,.22); }
.ind--health  { --ind-c: #14b8a6; --ind-soft: rgba(20,184,166,.10); --ind-ink: rgba(20,184,166,.22); }
.ind--food    { --ind-c: #f59e0b; --ind-soft: rgba(245,158,11,.12); --ind-ink: rgba(245,158,11,.22); }
.ind--auto    { --ind-c: #3b82f6; --ind-soft: rgba(59,130,246,.10); --ind-ink: rgba(59,130,246,.22); }
.ind--fitness { --ind-c: #ef4444; --ind-soft: rgba(239,68,68,.10);  --ind-ink: rgba(239,68,68,.22); }
.ind--edu     { --ind-c: #6366f1; --ind-soft: rgba(99,102,241,.10); --ind-ink: rgba(99,102,241,.22); }
.ind--travel  { --ind-c: #0ea5e9; --ind-soft: rgba(14,165,233,.10); --ind-ink: rgba(14,165,233,.22); }

/* CTA banner */
.ind-more {
  margin-top: 22px;
  display: flex; align-items: center; gap: 18px;
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(249,115,22,.06), rgba(236,72,153,.04)),
    var(--white);
  border: 1px dashed rgba(249,115,22,.28);
}
.ind-more-ic {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white); flex-shrink: 0;
  box-shadow: 0 10px 24px -8px rgba(249,115,22,.45);
}
.ind-more-txt {
  flex: 1; display: flex; flex-direction: column; gap: 3px;
}
.ind-more-txt strong {
  font-size: 15px; font-weight: 800; color: var(--dark);
  letter-spacing: -0.01em;
}
.ind-more-txt span {
  font-size: 13px; color: var(--g5); line-height: 1.55;
}
.ind-more-btn {
  padding: 11px 20px; border-radius: 999px;
  background: var(--dark); color: var(--white);
  font-size: 13px; font-weight: 800;
  letter-spacing: -0.005em;
  transition: transform .25s, box-shadow .25s;
  flex-shrink: 0;
}
.ind-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(15,23,42,.4);
}

@media (max-width: 1024px) {
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-more { flex-direction: column; text-align: center; gap: 14px; padding: 22px; }
}
@media (max-width: 480px) {
  .ind-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   DARK SECTION
   ════════════════════════════════════════════════════════════════════ */
.dark-sec {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(249,115,22,.15), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(251,146,60,.1), transparent 60%),
    linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.dark-sec::before {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,.2), transparent 70%);
  border-radius: 50%; filter: blur(40px);
}
.dark-sec::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,146,60,.15), transparent 70%);
  border-radius: 50%; filter: blur(40px);
}
.dark-sec .ct { position: relative; z-index: 1; }
.dark-sec h2 { color: var(--white); }
.dark-sec .sec-desc { color: #a0aec0; }
.dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* Viewer section — quote + chips */
.viewer-quote {
  margin: 4px 0 22px;
  padding: 14px 18px;
  border-left: 3px solid var(--o);
  color: #cbd5e1;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  background: rgba(255,255,255,.03);
  border-radius: 0 12px 12px 0;
}
.viewer-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 26px;
}
.vc {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #e5e7eb;
  font-size: 13px; font-weight: 700;
  backdrop-filter: blur(8px);
  transition: transform .25s, background .25s, border-color .25s;
}
.vc:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(249,115,22,.35);
  transform: translateY(-2px);
}
.vc-ic {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.vc-ic--money { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.vc-ic--box   { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }
.vc-ic--out   { background: radial-gradient(circle at 30% 30%, #fca5a5, #ef4444); box-shadow: 0 0 10px rgba(239,68,68,.5); }
.vc-ic--low   { background: radial-gradient(circle at 30% 30%, #fde68a, #f59e0b); box-shadow: 0 0 10px rgba(245,158,11,.5); }

.viewer-cta { margin-top: 4px; }

/* iPhone wrapper in dark section */
.dark-phone-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.dark-phone-wrap::before {
  content: ''; position: absolute;
  inset: 10% 15%;
  background:
    radial-gradient(circle, rgba(249,115,22,.35), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}
.dark-sec .phone {
  max-width: 340px;
  position: relative; z-index: 1;
  box-shadow:
    0 50px 100px rgba(249,115,22,.28),
    0 20px 50px rgba(0,0,0,.45),
    0 0 0 1.5px rgba(255,255,255,.12) inset,
    0 -2px 3px rgba(0,0,0,.4) inset;
}

/* Telegram header */
.chat-hdr--tg {
  background: linear-gradient(135deg, #1f3a5f 0%, #2a4a72 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.chat-hdr--tg .chat-hdr-back { color: #60a5fa; }
.chat-hdr--tg .chat-hdr-name { color: #fff; font-size: 14px; }
.chat-hdr--tg .chat-hdr-sub  { color: #86efac; }
.chat-hdr--tg .chat-hdr-r    { color: #93c5fd; }
.tg-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.2), 0 2px 6px rgba(30,58,138,.4);
}

/* Telegram-styled body */
.chat-body--tg {
  background:
    radial-gradient(circle at 20% 30%, rgba(59,130,246,.05), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168,85,247,.04), transparent 50%),
    linear-gradient(180deg, #f0f2f5, #fafbfc);
}

/* Inventory bubble */
.msg-bubble--inv {
  font-size: 12.5px;
  line-height: 1.55;
  max-width: 85%;
}
.msg-bubble--inv strong { font-weight: 800; }

.inv-chip {
  display: inline-flex; align-items: center;
  padding: 1px 7px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  margin: 2px 2px 0 0;
}
.inv-chip--ok  { background: rgba(16,185,129,.15); color: #065f46; }
.inv-chip--out { background: rgba(239,68,68,.15);  color: #991b1b; }

.inv-list {
  display: flex; flex-direction: column; gap: 5px;
  margin-top: 8px;
}
.inv-item {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 7px 10px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: 10px;
}
.inv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.inv-ok  { background: #10b981; box-shadow: 0 0 8px rgba(16,185,129,.5); }
.inv-out { background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,.5); }
.inv-low { background: #f59e0b; box-shadow: 0 0 8px rgba(245,158,11,.5); }
.inv-name {
  font-weight: 700; color: var(--dark);
  font-size: 12.5px;
  line-height: 1.3;
}
.inv-meta {
  font-size: 11.5px; color: var(--g6);
  margin-top: 2px;
}
.inv-meta b { color: var(--dark); font-weight: 700; }
.inv-meta--out { color: #b91c1c; }

@media (max-width: 900px) {
  .dark-grid { grid-template-columns: 1fr; gap: 40px; }
  .dark-sec .phone { max-width: 320px; }
}

/* ════════════════════════════════════════════════════════════════════
   BOOKING
   ════════════════════════════════════════════════════════════════════ */
.booking {
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(249,115,22,.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(251,146,60,.08), transparent 60%),
    linear-gradient(180deg, var(--o-light) 0%, #fffbf5 100%);
  position: relative;
}

.book-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.book-demo-wrap {
  position: relative;
  padding: 20px 0;
}
.book-demo {
  max-width: 500px; margin: 0 auto;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(249,115,22,.28),
    0 20px 40px -15px rgba(0,0,0,.10);
  background: var(--white);
  border: 1px solid rgba(249,115,22,.08);
  position: relative;
  z-index: 1;
}

/* Floating stat pills */
.book-stat {
  position: absolute;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 10px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 16px 36px -10px rgba(15,23,42,.18);
  border: 1px solid var(--g2);
  z-index: 5;
  animation: bookFloat 4.5s ease-in-out infinite;
}
.book-stat-ic {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--o-med), var(--o-light));
  font-size: 16px;
  flex-shrink: 0;
}
.book-stat > div { display: flex; flex-direction: column; line-height: 1; }
.book-stat strong {
  font-size: 14px; font-weight: 800; color: var(--dark);
  letter-spacing: -0.01em;
}
.book-stat span:not(.book-stat-ic) {
  font-size: 11px; color: var(--g5);
  font-weight: 600;
  margin-top: 3px;
}
.book-stat--tl { top: 8px; left: -14px; animation-delay: 0s; }
.book-stat--br { bottom: 22px; right: -14px; animation-delay: 2s; }
@keyframes bookFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.book-hd {
  background:
    linear-gradient(135deg, var(--o) 0%, var(--o-dark) 100%);
  padding: 24px 28px;
  color: var(--white);
  position: relative; overflow: hidden;
}
.book-hd::after {
  content: ''; position: absolute;
  top: -40px; right: -40px; width: 120px; height: 120px;
  background: rgba(255,255,255,.15); border-radius: 50%;
}
.book-hd .tg {
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; opacity: .85;
  margin-bottom: 8px; position: relative;
}
.book-hd h3 {
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.005em; position: relative;
}
.book-bd { padding: 28px; }

.cal-hd {
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; font-size: 15px;
  margin-bottom: 16px; color: var(--dark);
}
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--g1); border: 1px solid var(--g3);
  cursor: pointer; font-size: 14px;
  transition: all .15s; color: var(--g6);
}
.cal-nav button:hover {
  background: var(--o); color: var(--white); border-color: var(--o);
}
.cal { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.cal th {
  font-size: 11px; color: var(--g4);
  padding: 8px 0; font-weight: 600;
  letter-spacing: .05em;
}
.cal td {
  padding: 10px 0; text-align: center;
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all .15s;
  border-radius: 8px;
}
.cal td:hover:not(.dim):not(.sel) { background: var(--o-light); color: var(--o-dark); }
.cal td.dim { color: var(--g3); cursor: default; }
.cal td.sel {
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(249,115,22,.4);
}
.cal-hint {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; color: var(--g5);
  margin-bottom: 12px;
}
.slots {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-bottom: 20px;
}
.slot {
  padding: 11px 6px;
  border: 1.5px solid var(--g3); border-radius: 10px;
  text-align: center; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .15s;
}
.slot:hover:not(.taken):not(.picked) {
  border-color: var(--o); color: var(--o-dark);
  transform: translateY(-1px);
}
.slot.picked {
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white); border-color: var(--o);
  box-shadow: 0 6px 16px rgba(249,115,22,.4);
}
.slot.taken {
  color: var(--g3); text-decoration: line-through;
  cursor: not-allowed;
}
.book-conf {
  display: flex; gap: 14px; align-items: center;
  padding: 16px; background: var(--o-light);
  border-radius: 14px; border: 1px solid rgba(249,115,22,.15);
}
.book-conf .cc {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(249,115,22,.35);
}
.conf-t { font-weight: 700; color: var(--dark); font-size: 15px; }
.conf-m { font-size: 13px; color: var(--g6); margin-top: 2px; }

.book-ben {
  display: flex; flex-direction: column;
  gap: 6px;
}
.ben {
  padding: 16px 18px;
  border-radius: 16px;
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid transparent;
  transition: background .25s, border-color .25s, transform .25s;
}
.ben:hover {
  background: rgba(255,255,255,.7);
  border-color: rgba(249,115,22,.15);
  transform: translateX(4px);
}
.ben-ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--o-med), var(--o-light));
  color: var(--o-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.7), 0 6px 14px -6px rgba(249,115,22,.25);
}
.ben-ic--pink   { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #be185d; box-shadow: inset 0 1px 2px rgba(255,255,255,.8), 0 6px 14px -6px rgba(236,72,153,.35); }
.ben-ic--blue   { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; box-shadow: inset 0 1px 2px rgba(255,255,255,.8), 0 6px 14px -6px rgba(59,130,246,.35); }
.ben-ic--green  { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #047857; box-shadow: inset 0 1px 2px rgba(255,255,255,.8), 0 6px 14px -6px rgba(16,185,129,.35); }
.ben-ic--purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #6d28d9; box-shadow: inset 0 1px 2px rgba(255,255,255,.8), 0 6px 14px -6px rgba(139,92,246,.35); }

.ben h4 {
  font-size: 15px; font-weight: 800;
  margin-bottom: 4px; letter-spacing: -0.01em;
  color: var(--dark);
}
.ben p { font-size: 13px; color: var(--g5); line-height: 1.6; }

.book-cta {
  margin-top: 16px;
  align-self: flex-start;
  margin-left: 18px;
}

@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-stat--tl { top: 4px; left: 8px; }
  .book-stat--br { bottom: 12px; right: 8px; }
  .book-cta { margin-left: 0; align-self: stretch; text-align: center; }
}
@media (max-width: 500px) {
  .book-stat { padding: 8px 12px 8px 8px; }
  .book-stat-ic { width: 28px; height: 28px; font-size: 14px; }
  .book-stat strong { font-size: 12px; }
  .book-stat span:not(.book-stat-ic) { font-size: 10px; }
}

/* ════════════════════════════════════════════════════════════════════
   EXCEL QUOTE SECTION
   ════════════════════════════════════════════════════════════════════ */
.quote-sec {
  background:
    radial-gradient(ellipse 55% 45% at 85% 10%, rgba(99,102,241,.05), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(249,115,22,.05), transparent 60%),
    var(--white);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Step list */
.quote-body { display: flex; flex-direction: column; }
.q-steps {
  display: flex; flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
  position: relative;
}
.q-steps::before {
  content: ''; position: absolute;
  left: 19px; top: 46px; bottom: 46px;
  width: 2px;
  background: linear-gradient(180deg, rgba(249,115,22,.3), rgba(249,115,22,.05));
  z-index: 0;
}
.q-step {
  display: flex; gap: 16px; align-items: flex-start;
  position: relative; z-index: 1;
}
.q-step-num {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 22px -8px rgba(249,115,22,.5);
  font-variant-numeric: tabular-nums;
}
.q-step h4 {
  font-size: 16px; font-weight: 800;
  color: var(--dark); margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.q-step p {
  font-size: 13.5px; color: var(--g5); line-height: 1.6;
}

/* Stats row */
.q-stats {
  display: flex; gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249,115,22,.06), rgba(251,146,60,.03));
  border: 1px dashed rgba(249,115,22,.25);
}
.q-stat { flex: 1; }
.q-stat strong {
  display: block;
  font-size: 17px; font-weight: 800;
  color: var(--dark); letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.q-stat span {
  font-size: 12px; color: var(--g5); font-weight: 600;
}

/* iPhone wrapper */
.quote-phone-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.quote-phone-wrap::before {
  content: ''; position: absolute;
  inset: 15% 20%;
  background: radial-gradient(circle, rgba(249,115,22,.18), transparent 60%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}
.quote-sec .phone {
  max-width: 340px;
  position: relative; z-index: 1;
}

/* File upload bubble */
.msg-u .msg-file {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  border-radius: 18px 18px 6px 18px;
  padding: 10px 14px;
  min-width: 200px; max-width: 85%;
  box-shadow: 0 6px 16px rgba(249,115,22,.3);
}
.msg-file-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.2);
}
.msg-file-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.msg-file-name {
  font-size: 12.5px; font-weight: 800;
  letter-spacing: -0.005em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.msg-file-meta { font-size: 11px; opacity: .88; font-weight: 600; }

/* Quote card */
.q-card {
  padding: 14px;
  max-width: 92%;
  border: 1px solid rgba(249,115,22,.18);
  background: linear-gradient(180deg, #fffaf5, var(--white));
  box-shadow: 0 4px 12px rgba(249,115,22,.08);
}
.q-card-hd {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 800; color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--g3);
  margin-bottom: 10px;
}
.q-card-date {
  font-size: 10.5px; font-weight: 700; color: var(--g5);
  background: var(--g1);
  padding: 3px 9px; border-radius: 999px;
  border: 1px solid var(--g2);
}
.q-card-items {
  display: flex; flex-direction: column; gap: 5px;
  margin-bottom: 10px;
}
.q-item {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 10px; align-items: center;
  font-size: 12px;
  padding: 2px 0;
}
.q-item-n { color: var(--dark); font-weight: 700; }
.q-item-q { color: var(--g5); font-size: 11px; font-weight: 600; }
.q-item-p {
  color: var(--dark); font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}
.q-item--more {
  grid-column: 1 / -1;
  color: var(--g5); font-size: 11px; font-style: italic;
  text-align: center;
  padding: 5px 0;
  background: var(--g1);
  border-radius: 8px;
  border: 1px dashed var(--g3);
}
.q-card-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--o-med), var(--o-light));
  border-radius: 10px; margin-bottom: 10px;
  border: 1px solid rgba(249,115,22,.15);
}
.q-card-total > span {
  font-size: 12px; font-weight: 800;
  color: var(--o-darker);
  letter-spacing: -0.005em;
}
.q-card-total strong {
  font-size: 17px; font-weight: 800;
  background: linear-gradient(135deg, var(--o-dark), var(--o-darker));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}
.q-card-chips {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.q-chip {
  padding: 4px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700;
}
.q-chip-ok   { background: rgba(16,185,129,.12); color: #065f46; border: 1px solid rgba(16,185,129,.2); }
.q-chip-warn { background: rgba(245,158,11,.12); color: #92400e; border: 1px solid rgba(245,158,11,.22); }
.q-card-actions {
  display: flex; gap: 6px;
}
.q-btn {
  flex: 1; text-align: center;
  padding: 9px 10px; border-radius: 10px;
  font-size: 11.5px; font-weight: 800;
  background: var(--g1); color: var(--dark);
  border: 1px solid var(--g3);
  letter-spacing: -0.005em;
}
.q-btn-pri {
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white); border-color: transparent;
  box-shadow: 0 5px 12px rgba(249,115,22,.35);
}

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-sec .phone { max-width: 320px; }
}
@media (max-width: 500px) {
  .q-stats { flex-direction: column; gap: 8px; }
  .q-stat strong { font-size: 15px; }
}

/* ════════════════════════════════════════════════════════════════════
   RECEIPT OCR SECTION
   ════════════════════════════════════════════════════════════════════ */
.ocr-sec {
  background:
    radial-gradient(ellipse 55% 45% at 15% 10%, rgba(20,184,166,.05), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 85%, rgba(249,115,22,.05), transparent 60%),
    var(--g1);
}
.ocr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Step list (reuses q-step styling pattern) */
.ocr-body { display: flex; flex-direction: column; }
.ocr-steps {
  display: flex; flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
  position: relative;
}
.ocr-steps::before {
  content: ''; position: absolute;
  left: 19px; top: 46px; bottom: 46px;
  width: 2px;
  background: linear-gradient(180deg, rgba(20,184,166,.35), rgba(249,115,22,.05));
  z-index: 0;
}
.ocr-step {
  display: flex; gap: 16px; align-items: flex-start;
  position: relative; z-index: 1;
}
.ocr-step-num {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: var(--white);
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 22px -8px rgba(20,184,166,.5);
  font-variant-numeric: tabular-nums;
}
.ocr-step h4 {
  font-size: 16px; font-weight: 800;
  color: var(--dark); margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.ocr-step p {
  font-size: 13.5px; color: var(--g5); line-height: 1.6;
}

.ocr-stats {
  display: flex; gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20,184,166,.06), rgba(249,115,22,.03));
  border: 1px dashed rgba(20,184,166,.3);
}
.ocr-stat { flex: 1; }
.ocr-stat strong {
  display: block;
  font-size: 18px; font-weight: 800;
  color: var(--dark); letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.ocr-stat span {
  font-size: 12px; color: var(--g5); font-weight: 600;
}

/* iPhone wrapper */
.ocr-phone-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.ocr-phone-wrap::before {
  content: ''; position: absolute;
  inset: 15% 20%;
  background: radial-gradient(circle, rgba(20,184,166,.16), transparent 60%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}
.ocr-sec .phone {
  max-width: 340px;
  position: relative; z-index: 1;
}

/* Realistic receipt photo bubble */
.msg-u .msg-receipt {
  background: transparent;
  padding: 0;
  max-width: 210px;
}
.rcpt {
  background: linear-gradient(180deg, #fefcf5 0%, #faf4e4 100%);
  color: #2d2d2d;
  font-family: 'Courier New', 'Menlo', 'Consolas', monospace;
  font-size: 10px;
  line-height: 1.55;
  padding: 14px 12px 18px;
  position: relative;
  box-shadow:
    0 12px 28px rgba(0,0,0,.16),
    0 4px 10px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.7);
  border-radius: 3px 3px 0 0;
  -webkit-mask-image:
    radial-gradient(circle at 3px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 15px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 27px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 39px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 51px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 63px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 75px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 87px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 99px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 111px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 123px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 135px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 147px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 159px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 171px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 183px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 195px 100%, transparent 3px, black 3px),
    radial-gradient(circle at 207px 100%, transparent 3px, black 3px),
    linear-gradient(black, black);
  -webkit-mask-composite: source-over;
  mask-image: linear-gradient(black, black);
}

/* Scanning line effect */
.rcpt-scan {
  position: absolute;
  left: 0; right: 0;
  height: 28%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(20,184,166,.2) 40%,
    rgba(20,184,166,.55) 100%);
  pointer-events: none;
  animation: rcptScan 2.8s ease-in-out infinite;
  border-bottom: 1px solid rgba(20,184,166,.9);
  z-index: 2;
  box-shadow: 0 2px 14px rgba(20,184,166,.5);
}
@keyframes rcptScan {
  0%   { top: -28%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.rcpt-hd {
  font-weight: 800;
  font-size: 11.5px;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
  color: #1a1a1a;
}
.rcpt-sub {
  text-align: center;
  font-size: 9px;
  color: #5a5a5a;
  margin-bottom: 1px;
  letter-spacing: 0.02em;
}
.rcpt-div {
  border-top: 1px dashed #7a7a7a;
  margin: 6px 0;
  opacity: .6;
}
.rcpt-row, .rcpt-total {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 9.5px;
  padding: 1.5px 0;
}
.rcpt-row span:first-child {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rcpt-total {
  font-weight: 800;
  font-size: 11px;
  color: #1a1a1a;
}
.rcpt-code {
  text-align: center;
  font-family: 'Libre Barcode 39', 'Courier New', monospace;
  font-size: 14px;
  letter-spacing: -1px;
  color: #1a1a1a;
  font-weight: 900;
  margin: 4px 0 2px;
}

/* Processing dots animation */
.ocr-dots {
  display: inline-flex; gap: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.ocr-dots i {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--dark); opacity: .4;
  animation: ocrDot 1.2s ease-in-out infinite;
}
.ocr-dots i:nth-child(2) { animation-delay: .15s; }
.ocr-dots i:nth-child(3) { animation-delay: .3s; }
@keyframes ocrDot {
  0%, 80%, 100% { opacity: .3; transform: translateY(0); }
  40%           { opacity: 1;  transform: translateY(-3px); }
}

/* OCR result card */
.ocr-card {
  padding: 14px;
  max-width: 92%;
  border: 1px solid rgba(20,184,166,.22);
  background: linear-gradient(180deg, #f0fdfa, var(--white));
  box-shadow: 0 4px 12px rgba(20,184,166,.08);
}
.ocr-card-hd {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--g3);
  margin-bottom: 10px;
}
.ocr-card-ok {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(20,184,166,.5);
}
.ocr-card-hd > div {
  display: flex; flex-direction: column; gap: 1px; min-width: 0;
}
.ocr-card-hd strong {
  font-size: 12.5px; font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.005em;
}
.ocr-card-hd span:last-child {
  font-size: 10.5px; color: var(--g5);
  font-weight: 600;
}

.ocr-card-rows {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 10px;
}
.ocr-row {
  display: flex; justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  padding: 3px 0;
}
.ocr-row span {
  color: var(--g5); font-weight: 600;
  font-size: 11px;
}
.ocr-row b {
  color: var(--dark); font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.005em;
  text-align: right;
}

.ocr-card-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(20,184,166,.12), rgba(20,184,166,.04));
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(20,184,166,.2);
}
.ocr-card-total span {
  font-size: 12px; font-weight: 800;
  color: #0f766e;
  letter-spacing: -0.005em;
}
.ocr-card-total strong {
  font-size: 17px; font-weight: 800;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}

.ocr-card-actions {
  display: flex; gap: 6px;
}
.ocr-btn {
  flex: 1; text-align: center;
  padding: 9px 10px; border-radius: 10px;
  font-size: 11.5px; font-weight: 800;
  background: var(--g1); color: var(--dark);
  border: 1px solid var(--g3);
  letter-spacing: -0.005em;
}
.ocr-btn-pri {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: var(--white); border-color: transparent;
  box-shadow: 0 5px 12px rgba(20,184,166,.4);
}

@media (max-width: 900px) {
  .ocr-grid { grid-template-columns: 1fr; gap: 40px; }
  .ocr-sec .phone { max-width: 320px; }
}
@media (max-width: 500px) {
  .ocr-stats { flex-direction: column; gap: 8px; }
}

/* ════════════════════════════════════════════════════════════════════
   COMPARISON
   ════════════════════════════════════════════════════════════════════ */
.compare {
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(249,115,22,.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(99,102,241,.08), transparent 60%),
    linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.compare::before {
  content: ''; position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.18), transparent 70%);
  filter: blur(50px);
}
.compare .ct { position: relative; z-index: 1; }
.compare h2 { color: var(--white); }
.compare .sec-desc { color: #a0aec0; }

/* Top highlight stats */
.cmp-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 820px; margin: 0 auto 32px;
}
.cmp-stat {
  padding: 20px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.cmp-stat::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--o), transparent);
}
.cmp-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(249,115,22,.35);
}
.cmp-stat strong {
  display: block;
  font-size: 28px; font-weight: 800;
  background: linear-gradient(135deg, #fdba74, var(--o));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.cmp-stat span {
  font-size: 12.5px; color: #cbd5e1;
  font-weight: 600;
}

/* Comparison table */
.cmp-table {
  max-width: 820px; margin: 0 auto;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

/* Header row */
.cmp-head {
  display: grid; grid-template-columns: 2fr 1fr 1.1fr;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cmp-h-label {
  padding: 18px 24px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: #94a3b8;
  align-self: center;
}
.cmp-h-col {
  padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  font-size: 14px; font-weight: 700;
  position: relative;
}
.cmp-h-ic {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 4px;
}
.cmp-h-col--loss {
  color: #cbd5e1;
}
.cmp-h-col--loss .cmp-h-ic {
  background: rgba(100,116,139,.2);
  filter: grayscale(.3);
}
.cmp-h-col--win {
  background: linear-gradient(180deg, rgba(249,115,22,.18), rgba(249,115,22,.05));
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(249,115,22,.25);
}
.cmp-h-col--win .cmp-h-ic {
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  box-shadow: 0 8px 18px -6px rgba(249,115,22,.55);
}
.cmp-winner {
  margin-top: 6px;
  display: inline-block;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: .12em;
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, var(--o));
  color: var(--dark);
  box-shadow: 0 4px 10px rgba(251,146,60,.35);
}

/* Rows */
.cmp-row, .cmp-total {
  display: grid; grid-template-columns: 2fr 1fr 1.1fr;
  border-top: 1px solid rgba(255,255,255,.05);
  transition: background .2s;
}
.cmp-row:hover { background: rgba(255,255,255,.02); }

.cmp-metric {
  padding: 16px 24px;
  color: #e2e8f0;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.cmp-m-ic {
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.cmp-val {
  padding: 16px; text-align: center;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
}
.cmp-val--loss {
  color: #94a3b8;
}
.cmp-val--win {
  color: var(--white);
  background: linear-gradient(90deg, rgba(249,115,22,.08), rgba(249,115,22,.12));
  position: relative;
}
.cmp-val--win::before {
  content: ''; position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--o), transparent);
}
.cmp-val--win strong {
  font-weight: 800;
  background: linear-gradient(135deg, #fdba74, var(--o-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 15.5px;
  letter-spacing: -0.01em;
}
.cmp-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(239,68,68,.15);
  color: #ef4444;
  font-size: 13px; font-weight: 800;
  border: 1px solid rgba(239,68,68,.25);
}
.cmp-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
  font-size: 13px; font-weight: 800;
  box-shadow: 0 4px 10px rgba(16,185,129,.35);
}

/* Total row */
.cmp-total {
  background: linear-gradient(90deg, rgba(249,115,22,.06), rgba(249,115,22,.14));
  border-top: 1px solid rgba(249,115,22,.3);
}
.cmp-total .cmp-metric {
  color: var(--white);
  font-size: 15px;
  padding: 20px 24px;
}
.cmp-total .cmp-metric strong { font-weight: 800; }
.cmp-total .cmp-m-ic {
  background: linear-gradient(135deg, #fbbf24, var(--o));
  font-size: 18px;
  box-shadow: 0 6px 14px -4px rgba(251,146,60,.5);
}
.cmp-total .cmp-val {
  padding: 20px 16px;
  font-size: 16px;
}
.cmp-total .cmp-val--loss {
  color: #64748b; font-weight: 700;
}
.cmp-total .cmp-val--win strong {
  font-size: 22px;
  -webkit-text-fill-color: var(--white);
  background: none;
  color: var(--white);
}
.cmp-total .cmp-val--win {
  background: linear-gradient(90deg, rgba(249,115,22,.15), rgba(249,115,22,.28));
}

@media (max-width: 768px) {
  .cmp-stats { grid-template-columns: 1fr; max-width: 360px; }
  .cmp-head, .cmp-row, .cmp-total {
    grid-template-columns: 1.6fr 1fr 1.1fr;
  }
  .cmp-h-label { padding: 14px 14px; font-size: 10px; }
  .cmp-metric { padding: 14px; font-size: 13px; gap: 8px; }
  .cmp-m-ic { width: 28px; height: 28px; font-size: 14px; }
  .cmp-val { font-size: 13px; padding: 14px 8px; }
  .cmp-val--win strong { font-size: 14px; }
  .cmp-total .cmp-metric { font-size: 14px; }
  .cmp-total .cmp-val { font-size: 14px; padding: 16px 8px; }
  .cmp-total .cmp-val--win strong { font-size: 18px; }
}

/* ════════════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════════════ */
.pricing {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(249,115,22,.05), transparent 60%),
    var(--white);
}
.plans {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px; margin: 0 auto;
  align-items: start;
}
.plan {
  background: var(--white);
  padding: 32px 26px 28px;
  border-radius: 20px;
  border: 1px solid var(--g3);
  position: relative;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
  text-align: center;
  display: flex; flex-direction: column;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(15,23,42,.18);
  border-color: rgba(249,115,22,.25);
}

/* Featured variant */
.plan--featured {
  border: 2px solid var(--o);
  box-shadow: 0 24px 50px -18px rgba(249,115,22,.35);
  padding-top: 36px;
}
.plan--featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(249,115,22,.45);
  border-color: var(--o);
}

.plan-badge {
  position: absolute; top: -12px;
  left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  padding: 6px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(249,115,22,.4);
}

.plan-nm {
  font-size: 14px; font-weight: 700;
  color: var(--g6); margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.plan-pr {
  font-size: 32px; font-weight: 800;
  line-height: 1; margin-bottom: 4px;
  letter-spacing: -0.02em;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
}
.plan-pr span {
  font-size: 16px; font-weight: 700;
  color: var(--o); margin-left: 2px;
}
.plan-sv {
  font-size: 12.5px; color: var(--g5);
  font-weight: 600;
  margin-bottom: 22px;
}

.plan ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 20px 0 0;
  border-top: 1px solid var(--g2);
  text-align: left;
  display: flex; flex-direction: column;
  gap: 2px;
  flex: 1;
}
.plan ul li {
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--g7);
  display: flex; align-items: center; gap: 10px;
}
.plan ul li::before {
  content: "✓";
  font-weight: 800; color: var(--o);
  font-size: 13px;
  flex-shrink: 0;
}

/* Plan buttons */
.plan-btn {
  display: block; text-align: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px; font-weight: 800;
  letter-spacing: -0.005em;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.plan-btn--out {
  background: var(--white); color: var(--dark);
  border: 1.5px solid var(--g3);
}
.plan-btn--out:hover {
  background: var(--g1);
  border-color: var(--g4);
  transform: translateY(-1px);
}
.plan-btn--fill {
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(249,115,22,.35);
}
.plan-btn--fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(249,115,22,.45);
}

@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; max-width: 400px; }
}

/* ════════════════════════════════════════════════════════════════════
   FINAL CTA BANNER — rounded orange card
   ════════════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--white);
  padding: 20px 0 60px;
}
.cta-card {
  max-width: 1080px; margin: 0 auto;
  padding: 56px 32px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 50% 80% at 20% 0%, rgba(255,255,255,.2), transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(0,0,0,.1), transparent 60%),
    linear-gradient(135deg, var(--o) 0%, var(--o-dark) 100%);
  color: var(--white);
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(249,115,22,.4);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  filter: blur(30px);
  border-radius: 50%;
}
.cta-card::after {
  content: ''; position: absolute;
  bottom: -100px; left: -100px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,0,0,.15), transparent 70%);
  filter: blur(40px);
  border-radius: 50%;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800; margin-bottom: 8px;
  letter-spacing: -0.015em;
  color: var(--white);
}
.cta-card p {
  font-size: 14.5px; opacity: .95;
  margin-bottom: 26px;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════════════════════════════════ */
.contact-sec {
  background:
    radial-gradient(ellipse 55% 40% at 10% 15%, rgba(249,115,22,.07), transparent 60%),
    radial-gradient(ellipse 55% 40% at 90% 85%, rgba(99,102,241,.06), transparent 60%),
    var(--g1);
}
.contact-page {
  min-height: calc(100vh - 68px);
  padding: 80px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}

/* LEFT — contact info */
.contact-info {
  display: flex; flex-direction: column;
}
.contact-info-hd {
  margin-bottom: 22px;
}
.contact-info-hd h3 {
  font-size: 20px; font-weight: 800;
  color: var(--dark); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.contact-info-hd p {
  font-size: 14px; color: var(--g5);
  line-height: 1.6;
}

.contact-methods {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.cmi {
  --cmi-c: #f97316;
  --cmi-soft: rgba(249,115,22,.10);
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--g3);
  color: var(--dark);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.cmi::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--cmi-c);
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s;
}
a.cmi:hover {
  transform: translateX(4px);
  box-shadow: 0 16px 32px -14px rgba(15,23,42,.14);
  border-color: var(--cmi-c);
}
a.cmi:hover::before { transform: scaleY(1); }
a.cmi:hover .cmi-arrow { color: var(--cmi-c); transform: translateX(4px); }

.cmi-ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, var(--cmi-soft), rgba(255,255,255,.7));
  border: 1px solid var(--cmi-soft);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.8), 0 8px 16px -8px var(--cmi-c);
  flex-shrink: 0;
}
.cmi-txt {
  display: flex; flex-direction: column;
  gap: 2px; min-width: 0; flex: 1;
}
.cmi-label {
  font-size: 11px; font-weight: 800;
  color: var(--g5);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cmi strong {
  font-size: 14px; font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.005em;
  word-break: break-word;
}
.cmi-arrow {
  font-size: 18px; color: var(--g4); font-weight: 700;
  transition: transform .25s, color .25s;
  flex-shrink: 0;
}

.cmi--phone { --cmi-c: #10b981; --cmi-soft: rgba(16,185,129,.12); }
.cmi--mail  { --cmi-c: #3b82f6; --cmi-soft: rgba(59,130,246,.12); }
.cmi--addr  { --cmi-c: #f97316; --cmi-soft: rgba(249,115,22,.12); }
.cmi--hours { --cmi-c: #a855f7; --cmi-soft: rgba(168,85,247,.12); }

/* Social */
.contact-social {
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--g3);
  border-radius: 14px;
  margin-top: auto;
}
.cs-label {
  font-size: 11.5px; font-weight: 800;
  color: var(--g6);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cs-icons {
  display: flex; gap: 10px;
  flex-wrap: wrap;
}
.cs-ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform .25s, box-shadow .25s;
}
.cs-ic svg { display: block; }
.cs-ic:hover { transform: translateY(-3px) scale(1.05); }
.cs-ic--fb { background: #1877f2; box-shadow: 0 8px 18px -6px rgba(24,119,242,.55); }
.cs-ic--ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); box-shadow: 0 8px 18px -6px rgba(220,39,67,.5); }
.cs-ic--tg { background: linear-gradient(135deg, #37bbfe, #007dbb); box-shadow: 0 8px 18px -6px rgba(55,187,254,.55); }
.cs-ic--vb { background: #7360f2; box-shadow: 0 8px 18px -6px rgba(115,96,242,.55); }

/* RIGHT — form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--g3);
  border-radius: 20px;
  padding: 30px 30px 28px;
  box-shadow: 0 30px 60px -24px rgba(15,23,42,.12);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--o), var(--o-dark));
}

.cf-hd {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--g2);
}
.cf-hd-ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 12px 24px -8px rgba(249,115,22,.5);
}
.cf-hd h3 {
  font-size: 17px; font-weight: 800;
  color: var(--dark); margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.cf-hd p {
  font-size: 13px; color: var(--g5);
  line-height: 1.5;
}

.cf-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cf-field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.cf-field > span {
  font-size: 12.5px; font-weight: 800;
  color: var(--g7);
  letter-spacing: -0.005em;
}
.cf-field > span b {
  color: var(--o); font-weight: 800;
  margin-left: 2px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--g3);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--dark);
  font-family: inherit;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--g4); }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--o);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.cf-field textarea { resize: vertical; min-height: 90px; }
.cf-field select { cursor: pointer; }

.cf-submit {
  width: 100%;
  margin-top: 4px;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  font-size: 15px; font-weight: 800;
  font-family: inherit;
  letter-spacing: -0.005em;
  cursor: pointer;
  box-shadow: 0 14px 30px -10px rgba(249,115,22,.5);
  transition: transform .25s, box-shadow .25s, opacity .2s;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
}
.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(249,115,22,.58);
}
.cf-submit:active { transform: translateY(0); }
.cf-submit:disabled {
  opacity: .7;
  cursor: progress;
  transform: none;
  box-shadow: 0 8px 20px -8px rgba(249,115,22,.35);
}
.cf-note {
  font-size: 11.5px; color: var(--g5);
  text-align: center;
  margin-top: 14px;
  font-weight: 600;
}

/* Status (AJAX response) */
.cf-status {
  margin-top: 4px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.005em;
  animation: cfStatusIn .25s ease-out;
}
.cf-status--ok {
  background: rgba(16,185,129,.12);
  color: #065f46;
  border: 1px solid rgba(16,185,129,.3);
}
.cf-status--err {
  background: rgba(239,68,68,.10);
  color: #991b1b;
  border: 1px solid rgba(239,68,68,.28);
}
@keyframes cfStatusIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 26px 22px; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   REGISTER PAGE
   ════════════════════════════════════════════════════════════════════ */
.reg-sec {
  min-height: calc(100vh - 68px);
  padding: 60px 0 80px;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(249,115,22,.10), transparent 60%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(251,146,60,.08), transparent 60%),
    var(--g1);
}
.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT hero panel */
.reg-hero { padding: 10px 0; }
.reg-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: var(--o-light);
  color: var(--o-darker);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 999px;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.reg-badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--o);
  box-shadow: 0 0 0 0 rgba(249,115,22,.6);
  animation: regPulse 1.8s ease-out infinite;
}
@keyframes regPulse {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,.6); }
  100% { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
}
.reg-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 14px;
}
.reg-hero-desc {
  font-size: 15px; color: var(--g6);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 480px;
}

.reg-features {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 30px;
}
.reg-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600;
  color: var(--g7);
}
.reg-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(249,115,22,.25);
}

/* Trust badge */
.reg-trust {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--g3);
  border-radius: 14px;
  box-shadow: 0 10px 24px -12px rgba(15,23,42,.12);
}
.reg-trust-avas {
  display: flex;
}
.reg-ava {
  width: 34px; height: 34px; border-radius: 50%;
  color: var(--white);
  font-size: 13px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.reg-ava:first-child { margin-left: 0; }
.reg-ava--1 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.reg-ava--2 { background: linear-gradient(135deg, #ec4899, #be185d); }
.reg-ava--3 { background: linear-gradient(135deg, #10b981, #047857); }
.reg-ava--4 {
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  font-size: 14px;
}
.reg-trust-txt {
  display: flex; flex-direction: column; line-height: 1.25;
}
.reg-trust-txt strong {
  font-size: 14px; font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.005em;
}
.reg-trust-txt span {
  font-size: 12.5px; color: var(--g5);
  font-weight: 600;
}

/* RIGHT — form */
.reg-form {
  background: var(--white);
  border: 1px solid var(--g3);
  border-radius: 20px;
  padding: 32px 30px 28px;
  box-shadow: 0 40px 80px -24px rgba(15,23,42,.15);
  position: relative;
  overflow: hidden;
}
.reg-form::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--o), var(--o-dark));
}

.reg-form-hd {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--g2);
}
.reg-form-hd h2 {
  font-size: 22px; font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.reg-form-hd p {
  font-size: 13.5px; color: var(--g5);
  font-weight: 600;
}

.reg-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.reg-field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.reg-field > span {
  font-size: 12.5px; font-weight: 800;
  color: var(--g7);
  letter-spacing: -0.005em;
}
.reg-field > span b {
  color: var(--o); font-weight: 800;
  margin-left: 2px;
}
.reg-field input {
  padding: 12px 14px;
  border: 1.5px solid var(--g3);
  border-radius: 10px;
  font-size: 14px;
  color: var(--dark);
  font-family: inherit;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.reg-field input:focus {
  outline: none;
  border-color: var(--o);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}

/* Password field */
.reg-pw-wrap {
  position: relative;
}
.reg-pw-wrap input {
  padding-right: 44px;
}
.reg-pw-toggle {
  position: absolute;
  right: 10px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 8px;
  border: none; background: transparent;
  color: var(--g5); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, background .2s;
}
.reg-pw-toggle:hover { background: var(--g1); color: var(--o-dark); }
.reg-pw-toggle.is-visible { color: var(--o); }

.reg-pw-meter {
  height: 4px; background: var(--g2);
  border-radius: 2px; overflow: hidden;
  margin-top: 4px;
}
.reg-pw-bar {
  height: 100%; width: 0;
  transition: width .25s, background .25s;
}
.reg-pw-bar--weak   { width: 25%; background: #ef4444; }
.reg-pw-bar--fair   { width: 50%; background: #f59e0b; }
.reg-pw-bar--good   { width: 75%; background: #10b981; }
.reg-pw-bar--strong { width: 100%; background: linear-gradient(90deg, #10b981, #059669); }

.reg-pw-hint {
  font-size: 11.5px; color: var(--g5);
  font-weight: 600;
  margin-top: 2px;
}

/* Notice box */
.reg-notice {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px;
  margin: 2px 0 14px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 1px solid rgba(245,158,11,.3);
  border-left: 3px solid #f59e0b;
  border-radius: 10px;
  font-size: 12.5px;
  color: #78350f;
  line-height: 1.55;
}
.reg-notice-ic {
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.3;
}
.reg-notice strong {
  display: block;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.reg-notice b {
  font-weight: 800;
  color: #92400e;
}

/* Checkbox */
.reg-tos {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0;
  cursor: pointer;
  user-select: none;
}
.reg-tos input {
  width: 18px; height: 18px;
  accent-color: var(--o);
  margin-top: 2px;
  flex-shrink: 0;
}
.reg-tos span {
  font-size: 13px; color: var(--g6);
  line-height: 1.5;
  font-weight: 600;
}

/* Status message */
.reg-status {
  margin: 4px 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px; font-weight: 700;
  line-height: 1.5;
  animation: cfStatusIn .25s ease-out;
}
.reg-status--ok {
  background: rgba(16,185,129,.12);
  color: #065f46;
  border: 1px solid rgba(16,185,129,.3);
}
.reg-status--err {
  background: rgba(239,68,68,.10);
  color: #991b1b;
  border: 1px solid rgba(239,68,68,.28);
}

/* Submit */
.reg-submit {
  width: 100%;
  margin-top: 4px;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--o), var(--o-dark));
  color: var(--white);
  font-size: 15.5px; font-weight: 800;
  font-family: inherit;
  letter-spacing: -0.005em;
  cursor: pointer;
  box-shadow: 0 16px 32px -10px rgba(249,115,22,.5);
  transition: transform .25s, box-shadow .25s, opacity .2s;
}
.reg-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -12px rgba(249,115,22,.6);
}
.reg-submit:disabled {
  opacity: .7;
  cursor: progress;
  transform: none;
  box-shadow: 0 8px 20px -8px rgba(249,115,22,.35);
}
.reg-login {
  text-align: center;
  font-size: 13px; color: var(--g6);
  margin-top: 16px;
  font-weight: 600;
}
.reg-login a {
  color: var(--o-dark);
  font-weight: 800;
}
.reg-login a:hover { color: var(--o-darker); text-decoration: underline; }

@media (max-width: 900px) {
  .reg-grid { grid-template-columns: 1fr; gap: 40px; }
  .reg-hero h1 { font-size: 28px; }
  .reg-form { padding: 26px 22px; }
  .reg-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER — simplified
   ════════════════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: var(--g4);
  padding: 40px 0;
  text-align: center;
}
.ft-brand {
  font-size: 15px; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.ft-brand span {
  color: var(--g4); font-weight: 600;
}
.ft-copy {
  font-size: 12.5px; color: var(--g4);
  font-weight: 500;
}

/* ─── Back to top button ──────────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 24px;
  /* Sits above the chat FAB (24px + 64px + 12px gap = 100px). */
  bottom: 100px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b1a, #ff8a3d);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  -webkit-tap-highlight-color: transparent;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 28px rgba(255, 107, 26, 0.55);
}
.back-to-top:active {
  transform: scale(0.95);
}
@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    /* Mobile chat FAB: 16px + 56px + 12px gap = 84px */
    bottom: 84px;
    width: 44px;
    height: 44px;
  }
}

/* ════════════════════════════════════════════════════ LANGUAGE SWITCHER */
.lang-dd {
  position: relative;
  margin-left: 12px;
  font-family: inherit;
}
.lang-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: inherit;
  font: 600 13px/1 inherit;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.lang-dd-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}
.lang-dd-btn:focus-visible {
  outline: 2px solid #fb923c;
  outline-offset: 2px;
}
.lang-dd-btn .lang-flag {
  font-size: 15px;
  line-height: 1;
}
.lang-dd-btn .lang-arrow {
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.18s;
}
.lang-dd.is-open .lang-dd-btn .lang-arrow {
  transform: rotate(180deg);
}
.lang-dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
  padding: 6px;
  display: none;
  z-index: 60;
}
.lang-dd.is-open .lang-dd-menu {
  display: block;
  animation: langDDFade 0.15s ease-out;
}
@keyframes langDDFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-dd-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #0f172a;
  font: 500 14px/1 inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.lang-dd-menu button:hover {
  background: rgba(251, 146, 60, 0.1);
  color: #c2410c;
}
.lang-dd-menu button.is-active {
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color: #fff;
  font-weight: 700;
}
.lang-dd-menu button.is-active:hover {
  color: #fff;
}
.lang-dd-menu .lang-flag {
  font-size: 18px;
  line-height: 1;
}

/* Mobile language switcher (inside .mobile-menu) */
.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.mobile-lang button {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 92px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: inherit;
  font: 600 13px/1 inherit;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.mobile-lang button:hover {
  background: rgba(255, 255, 255, 0.16);
}
.mobile-lang button.is-active {
  background: linear-gradient(135deg, #fb923c, #ea580c);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(251, 146, 60, 0.35);
}
.mobile-lang .lang-flag {
  font-size: 16px;
  line-height: 1;
}

/* Responsive — desktop dropdown hidden on mobile, mobile-lang visible only inside open menu */
@media (max-width: 900px) {
  .lang-dd {
    display: none;
  }
}
@media (min-width: 901px) {
  .mobile-lang {
    display: none;
  }
}

/* ============================================================
 * Web Chat Widget — floating button + expandable chat panel
 * Talks to https://ai.storeapp.us/api/landing/chat-init + /api/user/chat
 * ============================================================ */

.lcw-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #8b5cf6);
  color: #fff; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
  z-index: 9998;
  transition: transform .2s ease, box-shadow .2s ease;
  font-family: inherit;
}
.lcw-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 16px 38px rgba(249, 115, 22, 0.55); }
.lcw-fab::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(249, 115, 22, .35), rgba(139, 92, 246, .35));
  z-index: -1; filter: blur(12px);
  animation: lcw-pulse 2.4s ease-in-out infinite;
}
@keyframes lcw-pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%      { opacity: .8; transform: scale(1.15); }
}
.lcw-fab.is-open { background: linear-gradient(135deg, #475569, #1e293b); }

.lcw-panel {
  position: fixed; bottom: 100px; right: 24px;
  width: 380px; max-width: calc(100vw - 32px);
  height: 600px; max-height: calc(100vh - 140px);
  background: #fff; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
  display: none; flex-direction: column; overflow: hidden;
  z-index: 9997; font-family: inherit;
  animation: lcw-slide-up .25s cubic-bezier(.22, 1, .36, 1);
}
.lcw-panel.is-open { display: flex; }
@keyframes lcw-slide-up {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.lcw-head {
  background: linear-gradient(135deg, #f97316, #8b5cf6);
  color: #fff; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.lcw-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.lcw-head-text { flex: 1; min-width: 0; }
.lcw-name { font-size: 15px; font-weight: 700; line-height: 1.2; }
.lcw-status { font-size: 11px; opacity: .9; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.lcw-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .7);
  animation: lcw-online 2s ease-in-out infinite;
}
@keyframes lcw-online {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .7); }
  50%      { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
.lcw-close {
  background: rgba(255,255,255,.18); color: #fff; border: 0;
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.lcw-close:hover { background: rgba(255,255,255,.32); }

.lcw-body {
  flex: 1; overflow-y: auto; padding: 16px 14px;
  background: linear-gradient(180deg, #fafbff, #f1f5f9);
  display: flex; flex-direction: column; gap: 10px;
}
.lcw-body::-webkit-scrollbar { width: 6px; }
.lcw-body::-webkit-scrollbar-thumb { background: rgba(15,23,42,.15); border-radius: 3px; }

.lcw-msg {
  max-width: 82%; padding: 10px 14px; border-radius: 16px;
  font-size: 14px; line-height: 1.5;
  word-wrap: break-word; white-space: pre-wrap;
  animation: lcw-msg-in .18s ease-out;
}
@keyframes lcw-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lcw-msg.bot {
  align-self: flex-start; background: #fff; color: #0f172a;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 1px 3px rgba(15,23,42,.06);
}
.lcw-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #f97316, #8b5cf6);
  color: #fff; border-radius: 16px 16px 4px 16px;
}
.lcw-typing {
  align-self: flex-start; background: #fff;
  border-radius: 16px 16px 16px 4px; padding: 12px 16px;
  display: flex; gap: 4px;
  box-shadow: 0 1px 3px rgba(15,23,42,.06);
}
.lcw-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #cbd5e1;
  animation: lcw-typing 1s ease-in-out infinite;
}
.lcw-typing span:nth-child(2) { animation-delay: .15s; }
.lcw-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes lcw-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

.lcw-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px; padding: 0 4px;
}
.lcw-chip {
  background: #fff; border: 1px solid rgba(249, 115, 22, .3);
  color: #ea580c; padding: 7px 13px; border-radius: 99px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all .15s ease;
  font-family: inherit; white-space: nowrap;
}
.lcw-chip:hover {
  background: linear-gradient(135deg, #f97316, #8b5cf6);
  color: #fff; border-color: transparent;
  transform: translateY(-1px);
}

.lcw-foot {
  border-top: 1px solid rgba(15,23,42,.06);
  padding: 10px 12px; display: flex; gap: 8px;
  background: #fff; flex-shrink: 0;
}
.lcw-input {
  flex: 1; border: 1px solid rgba(15,23,42,.12);
  border-radius: 999px; padding: 10px 16px; font-size: 14px;
  outline: none; font-family: inherit;
  background: #f8fafc; transition: border-color .15s, background .15s;
}
.lcw-input:focus { border-color: #f97316; background: #fff; }
.lcw-send {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #8b5cf6);
  color: #fff; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}
.lcw-send:hover { transform: scale(1.08); box-shadow: 0 4px 12px rgba(249,115,22,.4); }
.lcw-send:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.lcw-welcome { text-align: center; padding: 18px 8px 6px; color: #475569; }
.lcw-welcome-emoji { font-size: 40px; margin-bottom: 8px; }
.lcw-welcome-title { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.lcw-welcome-sub { font-size: 13px; color: #64748b; line-height: 1.5; }

@media (max-width: 480px) {
  .lcw-fab { bottom: 16px; right: 16px; width: 56px; height: 56px; }
  .lcw-panel {
    bottom: 0; right: 0; width: 100%; max-width: 100%;
    height: 88vh; max-height: 88vh;
    border-radius: 20px 20px 0 0;
  }
}

