@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root{
  --bg:#0b0c0f;
  --card:#11131a;
  --card2:#0f1117;
  --ink:#e9e9ee;
  --muted:#a7a8b2;
  --border:rgba(255,255,255,.10);
  --border2:rgba(255,255,255,.16);
  --red:#d00000;
  --red2:#ff2b2b;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:24px;
  --max:1140px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 500px at 10% -20%, rgba(208,0,0,.18), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(255,43,43,.10), transparent 50%),
    var(--bg);
  color:var(--ink);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:100%; max-width:var(--max); margin:0 auto; padding:0 18px}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,12,15,.72);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width:220px;
}
.brand img{width:44px; height:44px; object-fit:contain; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));}
.brand .title{font-weight:900; letter-spacing:.6px}
.brand .tag{font-size:12px; color:var(--muted); margin-top:-2px}

.menu{display:flex; gap:8px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
.menu a{
  font-size:13px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid transparent;
  color:var(--muted);
}
.menu a:hover{color:var(--ink); border-color:var(--border)}
.menu a.active{
  color:var(--ink);
  border-color:rgba(208,0,0,.55);
  background:rgba(208,0,0,.12);
}

.hamb{display:none}
@media(max-width:860px){
  .hamb{display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:14px; border:1px solid var(--border); background:rgba(255,255,255,.03)}
  .menu{display:none}
  .menu.open{display:flex; width:100%; justify-content:flex-start; padding-bottom:10px}
  .nav{flex-wrap:wrap}
}

.hero{
  padding:56px 0 18px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
@media(max-width:920px){ .heroGrid{grid-template-columns:1fr} }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
}

.heroLeft{padding:26px}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-size:12px; color:var(--muted);
  border:1px solid var(--border);
  padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.03);
}
.dot{width:8px; height:8px; border-radius:999px; background:var(--red2); box-shadow:0 0 0 6px rgba(255,43,43,.14)}
h1{margin:14px 0 10px; font-size:40px; line-height:1.05; letter-spacing:.2px}
@media(max-width:520px){h1{font-size:32px}}
.lead{color:var(--muted); font-size:15px; line-height:1.6; margin:0 0 18px}
.ctaRow{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border2);
  background:rgba(255,255,255,.03);
  font-weight:700; font-size:13px;
}
.btn.primary{
  border-color:rgba(208,0,0,.65);
  background: linear-gradient(180deg, rgba(255,43,43,.25), rgba(208,0,0,.18));
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.smallNote{font-size:12px; color:var(--muted); margin-top:12px}

.heroRight{
  padding: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 420px;        /* 🔥 THIS is the key */
}

.heroRight img{
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}



.section{padding:22px 0}
.sectionTitle{
  display:flex; align-items:end; justify-content:space-between; gap:14px; flex-wrap:wrap;
  margin:10px 0 12px;
}
.sectionTitle h2{margin:0; font-size:22px}
.sectionTitle p{margin:0; color:var(--muted); font-size:13px}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media(max-width:920px){.grid3{grid-template-columns:1fr}}
.feature{
  padding:16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.02);
  border:1px solid var(--border);
}
.feature h3{margin:0 0 8px; font-size:16px}
.feature p{margin:0; color:var(--muted); font-size:13px; line-height:1.6}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  font-size:12px; font-weight:800;
  color:rgba(255,255,255,.92);
  padding:8px 10px; border-radius:12px;
  background:rgba(208,0,0,.14);
  border:1px solid rgba(208,0,0,.25);
  margin-bottom:10px;
}

.pricing{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
@media(max-width:980px){.pricing{grid-template-columns:1fr}}
.priceCard{padding:18px}
.priceCard h3{margin:0 0 6px; font-size:18px}
.priceCard .sub{color:var(--muted); font-size:13px; line-height:1.6; margin:0 0 12px}
.ul{margin:0; padding-left:18px; color:var(--muted); font-size:13px; line-height:1.7}
.priceLine{
  margin-top:14px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  font-weight:800;
}
.mini{color:var(--muted); font-weight:600; font-size:12px}
hr.sep{
  border:0; height:1px; background:var(--border);
  margin:18px 0;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media(max-width:980px){.gallery{grid-template-columns:1fr}}
.shot{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#0b0c0f;
}
.shot img{width:100%; height:100%; object-fit:cover}
.noteBox{padding:16px}

.policy ol{color:var(--muted); font-size:13px; line-height:1.7; padding-left:18px; margin:0}
.policy h2{margin:0 0 10px}

footer{
  margin-top:26px;
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.18);
}
.footerGrid{
  display:flex; gap:12px; justify-content:space-between; align-items:center; flex-wrap:wrap;
  padding:18px 0;
}
.social{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px; border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px; font-weight:700;
}
.pill:hover{color:var(--ink); border-color:var(--border2)}
.copy{color:var(--muted); font-size:12px}
.ttbHidden{display:none !important;}

.ttbIframeWrap{
  width:100%;
  height:80vh;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#0b0c0f;
}
.ttbIframeWrap iframe{
  width:100%;
  height:100%;
  border:0;
}

/* Tabs visibility (clean) */
.ttbPanel{ display:block; }
.ttbHidden{ display:none !important; }


/* When JS toggles .ttbHidden, it will override */
.ttbPanel.ttbHidden{ display:none !important; }

.ttbShow{ display:block !important; }

/* Loader */
.ttbLoader{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:rgba(11,12,15,.82);
  z-index:5;
}

.ttbLoaderInline{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.02);
  margin-bottom:12px;
}

.ttbSpinner{
  width:18px; height:18px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.18);
  border-top-color: rgba(255,43,43,.85);
  animation: ttbSpin .8s linear infinite;
}

.ttbLoaderTxt{
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}

@keyframes ttbSpin{
  to{ transform: rotate(360deg); }
}

/* Keep wrap relative so loader can overlay */
.ttbIframeWrap{ position:relative; }

/* Policy embed styling */
.policyEmbed{
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}
.policyEmbed h1, .policyEmbed h2, .policyEmbed h3{
  color:var(--ink);
}
.policyEmbed a{
  color:var(--ink);
  text-decoration:underline;
}

/* ===== Lightbox (final) ===== */
#ttbLightbox{
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  background: rgba(0,0,0,.88) !important;

  display: none !important;        /* hidden by default */
  align-items: center;
  justify-content: center;
}

#ttbLightbox.is-open{
  display: flex !important;        /* shown only when opened */
}

#ttbLightbox img{
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

#ttbLightbox .ttbLightboxClose{
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  opacity: .85;
}
#ttbLightbox .ttbLightboxClose:hover{opacity:1;}
