:root{
  color-scheme: light;
  --bg:#0b0f1a;
  --panel:#0f1629;
  --text:#0b1220;
  --muted:#5a6475;
  --muted2:#97a3b6;
  --line:rgba(13, 20, 33, .10);
  --shadow: 0 18px 60px rgba(0,0,0,.18);
  --r:16px;
  --accent:#3563ff;
  --accent2:#22c55e;
  --warn:#f59e0b;
  --danger:#ef4444;
  --max:1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:#fff;
  line-height:1.55;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.wrap{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  background:rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.2px; }
.brand-mark{
  width:12px; height:12px; border-radius:999px;
  background:linear-gradient(135deg, var(--accent), #8b5cf6);
  box-shadow:0 10px 24px rgba(53,99,255,.25);
}
.nav{ display:flex; gap:16px; align-items:center; color:rgba(11,18,32,.8); font-weight:700; }
.nav a{ padding:10px 10px; border-radius:999px; }
.nav a:hover{ background:rgba(53,99,255,.08); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow:0 10px 22px rgba(0,0,0,.10); }
.btn:active{ transform: translateY(0px); box-shadow:none; }
.btn-primary{
  border-color: rgba(53,99,255,.18);
  background: linear-gradient(135deg, var(--accent), #5b8cff);
  color:#fff;
  box-shadow:0 18px 40px rgba(53,99,255,.28);
}
.btn-whatsapp{
  border-color: rgba(34,197,94,.18);
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color:#fff;
  box-shadow:0 18px 40px rgba(34,197,94,.22);
}
.btn-whatsapp:hover{ transform: translateY(-1px); box-shadow:0 12px 26px rgba(34,197,94,.18); }
.btn-ghost{
  background: rgba(53,99,255,.06);
  border-color: rgba(53,99,255,.18);
  color: rgba(11,18,32,.9);
}
.btn-sm{ padding:10px 14px; }
.hero .btn-ghost,
.section-dark .btn-ghost{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  color:#fff;
}

.hero{
  position:relative;
  padding: 56px 0 40px 0;
  background: radial-gradient(1200px 420px at 20% 0%, rgba(53,99,255,.18), rgba(0,0,0,0)),
              radial-gradient(900px 420px at 85% 15%, rgba(139,92,246,.16), rgba(0,0,0,0)),
              linear-gradient(180deg, #0b0f1a 0%, #0b0f1a 72%, #fff 72%, #fff 100%);
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  opacity:.18;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0) 55%),
    url("/assets/login/restaurant.jpg");
  background-size:cover;
  background-position:center;
  filter:saturate(1.1);
}
.hero-inner{
  position:relative;
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.hero-copy{ color:#fff; }
.eyebrow{
  display:inline-flex;
  padding:6px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-weight:900;
  font-size:12px;
  letter-spacing:.3px;
}
.hero h1{
  margin:14px 0 10px 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.lead{
  margin:0;
  color: rgba(255,255,255,.84);
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 58ch;
}
.cta{ margin-top:18px; display:flex; gap:12px; flex-wrap:wrap; }
.trust{ margin-top:16px; display:flex; gap:8px; flex-wrap:wrap; }
.trust-pill{
  font-weight:900;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(11,15,26,.28);
  color: rgba(255,255,255,.9);
}

.hero-card{
  border-radius: calc(var(--r) + 6px);
  background: rgba(11,15,26,.55);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.shot{ aspect-ratio: 16/10; background: rgba(255,255,255,.06); }
.shot img{ width:100%; height:100%; object-fit:cover; filter:saturate(1.05) contrast(1.02); }
.shot-meta{ padding:14px 14px 16px 14px; color:#fff; }
.shot-title{ font-weight:1000; letter-spacing:.2px; }
.shot-sub{ margin-top:4px; color: rgba(255,255,255,.78); font-weight:700; font-size:13px; }

.section{ padding: 56px 0; }
.section{ scroll-margin-top: 86px; }
.section .sub{ color: var(--muted); margin-top:8px; max-width:72ch; }
.section h2{ margin:0; font-size: clamp(24px, 2.5vw, 34px); letter-spacing:-.3px; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(11,18,32,.04);
  color: rgba(11,18,32,.84);
}
.pill-warn{
  border-color: rgba(245,158,11,.25);
  background: rgba(245,158,11,.12);
  color: rgba(124,45,18,.95);
}

.pricing-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
  align-items:stretch;
}
.pricing-card{
  border:1px solid var(--line);
  border-radius: calc(var(--r) + 8px);
  padding:18px;
  background:
    radial-gradient(700px 220px at 25% 0%, rgba(53,99,255,.10), rgba(0,0,0,0)),
    radial-gradient(700px 220px at 80% 20%, rgba(139,92,246,.10), rgba(0,0,0,0)),
    linear-gradient(180deg, #fff, #fbfcff);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  min-height: 220px;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.pricing-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0,0,0,.10);
  border-color: rgba(53,99,255,.18);
}
.pricing-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.pricing-name{ font-weight:1100; letter-spacing:-.2px; font-size:14px; color: rgba(11,18,32,.92); }
.pricing-badge{
  font-weight:1000;
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(53,99,255,.10);
  border:1px solid rgba(53,99,255,.18);
  color: rgba(11,18,32,.85);
}
.pricing-price{
  margin-top:12px;
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight:1100;
  letter-spacing:-.6px;
  color: rgba(11,18,32,.96);
}
.pricing-note{
  margin-top:6px;
  color: var(--muted);
  font-weight:750;
  font-size:13px;
  max-width: 52ch;
}
.pricing-cta{ margin-top:14px; }
.pricing-cta .btn{ width:100%; }
.pricing-featured{
  border-color: rgba(53,99,255,.20);
  box-shadow: 0 26px 90px rgba(53,99,255,.18);
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(53,99,255,.22), rgba(0,0,0,0)),
    radial-gradient(900px 260px at 80% 20%, rgba(139,92,246,.18), rgba(0,0,0,0)),
    linear-gradient(180deg, #ffffff, #f6f8ff);
}
.pricing-foot{
  margin-top:12px;
  color: var(--muted);
  font-weight:750;
  font-size:13px;
}
.grid3{ margin-top:22px; display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
.card{
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:18px;
  background:#fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.card h3{ margin:12px 0 6px 0; font-size:18px; letter-spacing:-.2px; }
.card p{ margin:0; color: var(--muted); font-weight:650; }
.icon{
  width:44px; height:44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(53,99,255,.10);
  color: var(--accent);
}
.icon svg{ width:24px; height:24px; }

.section-dark{
  background: linear-gradient(180deg, #0b0f1a, #0b0f1a);
  color:#fff;
}
.section-dark .sub{ color: rgba(255,255,255,.75); }
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:stretch;
}
.list{ margin:16px 0 0 0; padding:0; list-style:none; display:grid; gap:10px; }
.list li{ display:flex; align-items:flex-start; gap:10px; font-weight:800; color: rgba(255,255,255,.9); }
.dot{ width:10px; height:10px; border-radius:999px; background: linear-gradient(135deg, var(--accent2), #60a5fa); margin-top:6px; flex: 0 0 auto; }

.panel{
  border-radius: calc(var(--r) + 10px);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  overflow:hidden;
}
.panel-top{ display:flex; gap:8px; padding:14px; flex-wrap:wrap; }
.panel-pill{
  font-weight:900; font-size:12px;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}
.panel-img{ aspect-ratio: 4/3; }
.panel-img img{ width:100%; height:100%; object-fit:cover; opacity:.95; }

.thanks-box{
  border-radius: calc(var(--r) + 10px);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow);
  padding: 22px 18px;
}

.video-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.video-card{
  border:1px solid var(--line);
  border-radius: var(--r);
  overflow:hidden;
  background:#fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}
.video{
  aspect-ratio: 16 / 9;
  background:#000;
}
.video-thumb{
  aspect-ratio: 16 / 9;
  display:block;
  position:relative;
  background:#000;
}
.video-thumb img{ width:100%; height:100%; object-fit:cover; opacity:.95; }
.video-thumb:hover img{ opacity:1; }
.video-thumb .play{
  position:absolute;
  inset:auto;
  left:50%;
  top:50%;
  width:62px;
  height:44px;
  transform:translate(-50%,-50%);
  border-radius:14px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 14px 30px rgba(0,0,0,.35);
}
.video-thumb .play::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-38%,-50%);
  width:0;
  height:0;
  border-left:16px solid #fff;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
}
.video-meta{ padding:14px 14px 16px 14px; }
.video-title{ font-weight:1000; letter-spacing:-.2px; }
.video-sub{ margin-top:4px; color: var(--muted); font-weight:750; font-size:13px; }
.video-note{ margin-top:10px; color: var(--muted); font-weight:700; font-size:12px; }

.gallery-grid{
  margin-top:18px;
  display:grid;
  gap:14px;
}
.gallery-grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid-4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-card{
  border:1px solid var(--line);
  border-radius: var(--r);
  overflow:hidden;
  background:#fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  display:block;
}
.gallery-card img{ width:100%; height:100%; display:block; object-fit:cover; }
.gallery-phone{ aspect-ratio: 9 / 16; background:#0b0f1a; }
.gallery-wide{
  aspect-ratio: 16 / 9;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.section-dark .gallery-card{ border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.06); }

.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.80);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding: 18px;
}
.lightbox.is-open{ display:flex; }
.lightbox-img{
  max-width: min(1100px, calc(100vw - 36px));
  max-height: calc(100vh - 96px);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.lightbox-close{
  position:fixed;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  cursor:pointer;
}
.lightbox-close:hover{ background: rgba(255,255,255,.10); }

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.contact-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }
.fine{ margin-top:14px; color: var(--muted); font-weight:700; font-size:14px; display:grid; gap:4px; }
.contact-form{
  border:1px solid var(--line);
  border-radius: calc(var(--r) + 8px);
  padding:18px;
  background:#fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}
label{ display:grid; gap:8px; font-weight:900; font-size:13px; color: rgba(11,18,32,.9); }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border:1px solid rgba(13, 20, 33, .14);
  outline:none;
  font: inherit;
  font-weight:700;
  color: var(--text);
  background:#fff;
}
input:focus, textarea:focus{ border-color: rgba(53,99,255,.45); box-shadow:0 0 0 4px rgba(53,99,255,.12); }
textarea{ min-height:120px; resize: vertical; }
.row2{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.form-note{ margin-top:10px; font-size:12px; color: var(--muted); font-weight:700; }
.hp{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }

.footer{
  padding: 30px 0 46px 0;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color: rgba(11,18,32,.8);
  font-weight:800;
}
.brand-foot{ display:flex; align-items:center; gap:10px; }
.footer-links{ display:flex; gap:12px; flex-wrap:wrap; }
.footer-links a{ padding:8px 10px; border-radius:999px; }
.footer-links a:hover{ background:rgba(53,99,255,.08); }
.copy{ color: rgba(11,18,32,.55); font-weight:800; }
.devlink{
  color: rgba(11,18,32,.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.devlink:hover{ color: var(--accent); }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .video-grid{ grid-template-columns: 1fr; }
  .gallery-grid-3{ grid-template-columns: 1fr; }
  .gallery-grid-4{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .nav{ gap:6px; }
  .nav a{ padding:10px 8px; font-weight:800; font-size:13px; }
  .row2{ grid-template-columns: 1fr; }
  .topbar{ padding:12px 14px; }
}
