:root {
  --bg: #2f3439;
  --panel: #252a2f;
  --panel-2: #1f2429;
  --ink: #f8fafc;
  --muted: #d1d5db;
  --line: rgba(255,255,255,.14);
  --brand: #38bdf8;
  --brand-dark: #0284c7;
  --brand-rgb: 56,189,248;
}

* { box-sizing: border-box; scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; overflow-x: hidden; }
body { font-family: "Poppins", sans-serif; background: var(--bg); color: var(--ink); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.hidden { display: none !important; }

.loader { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; background: var(--bg); transition: opacity .42s ease, visibility .42s ease; }
.loader.hide { opacity: 0; visibility: hidden; }
.loader::before { content: ""; width: 54px; height: 54px; border-radius: 50%; border: 4px solid rgba(255,255,255,.18); border-top-color: var(--brand); animation: spin .85s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.top-email { position: fixed; inset: 0 0 auto 0; z-index: 70; min-height: 36px; padding: 7px 14px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; background: #20252a; border-bottom: 1px solid var(--line); color: #eef2f7; font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; }
.site-header { position: fixed; inset: 36px 0 auto 0; z-index: 65; background: rgba(47,52,57,.88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); transition: .25s ease; }
.site-header.nav-solid { background: rgba(31,36,41,.96); box-shadow: 0 18px 35px rgba(0,0,0,.16); }
.site-header nav { width: min(100%, 720px); margin: 0 auto; min-height: 58px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: clamp(168px, 34vw, 220px); min-height: 58px; overflow: visible; flex: 0 0 auto; }
.brand-mark img { width: 100%; height: auto; max-height: 66px; object-fit: contain; object-position: center; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: #f8fafc; font-size: .88rem; font-weight: 800; opacity: .88; }
.nav-links .book-mini { padding: 10px 14px; border-radius: 12px; background: #fff; color: #0f172a; opacity: 1; }
.menu-btn { display: none; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 12px; background: rgba(255,255,255,.12); color: #fff; }
.mobile-menu { width: min(100%, 720px); margin: 0 auto; padding: 10px 16px 16px; background: #252a2f; border-top: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 12px 4px; color: #fff; font-weight: 800; }

.page-shell { width: min(100%, 720px); margin: 0 auto; }
.hero { position: relative; padding: 112px 16px 44px; overflow: hidden; background: radial-gradient(circle at 50% 120px, rgba(var(--brand-rgb), .16), transparent 42%), linear-gradient(180deg, #30363c, #2f3439); }
.hero::before { content: ""; position: absolute; inset: 86px -20% auto; height: 260px; opacity: .22; background: radial-gradient(ellipse at center, transparent 38%, rgba(255,255,255,.45) 39%, transparent 40%), radial-gradient(ellipse at center, transparent 53%, rgba(255,255,255,.32) 54%, transparent 55%); animation: waterPulse 5s ease-in-out infinite; }
@keyframes waterPulse { 0%,100% { transform: scale(.96); opacity: .18; } 50% { transform: scale(1.04); opacity: .28; } }
.hero-card { position: relative; z-index: 1; text-align: center; }
.logo-row { display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.hero-call-box { min-width: 132px; min-height: 52px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 14px; background: #fff; color: #0b0f13; font-weight: 900; box-shadow: inset 0 0 0 2px rgba(0,0,0,.72), 0 16px 35px rgba(0,0,0,.22); }
.product-stage { min-height: 270px; display: grid; place-items: center; border-radius: 18px; background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.14), rgba(0,0,0,.08) 58%, rgba(0,0,0,.16)); overflow: hidden; }
.product-stage img { width: min(78%, 360px); max-height: 245px; object-fit: contain; filter: drop-shadow(0 26px 32px rgba(0,0,0,.42)); animation: floaty 4s ease-in-out infinite; }
.poster-stage { min-height: auto; aspect-ratio: 1 / 1; background: #eaf7ff; }
.poster-stage img { width: 100%; height: 100%; max-height: none; object-fit: cover; filter: none; animation: none; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero h1 { margin: 18px auto 10px; max-width: 560px; font-family: "Montserrat", sans-serif; font-size: clamp(1.62rem, 7vw, 2.7rem); line-height: 1.16; font-weight: 900; letter-spacing: 0; }
.hero p { margin: 0 auto; max-width: 560px; color: #e5e7eb; font-size: .98rem; line-height: 1.72; }
.check-list { display: grid; gap: 10px; max-width: 510px; margin: 18px auto; padding: 0; list-style: none; text-align: left; }
.check-list li { position: relative; padding-left: 34px; color: #f8fafc; font-weight: 800; font-size: .94rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--panel); font-weight: 900; }
.action-stack { display: grid; gap: 14px; margin: 24px auto 18px; max-width: 560px; }
.btn-white, .btn-dark { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 13px; font-weight: 900; transition: .25s ease; }
.btn-white { background: #fff; color: #0b0f13; box-shadow: inset 0 0 0 2px rgba(0,0,0,.72), 0 14px 30px rgba(0,0,0,.18); }
.btn-dark { background: #050505; color: #fff; box-shadow: 0 18px 36px rgba(0,0,0,.22); }
.btn-white:hover, .btn-dark:hover { transform: translateY(-2px); }
.fast-strip { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; max-width: 560px; margin: 18px auto 0; padding: 12px; border: 2px solid rgba(255,255,255,.85); font-weight: 900; }
.fast-strip i { width: 2px; height: 22px; background: #fff; }
.hero-form-wrap { margin-top: 22px; margin-bottom: 18px; }

.lead-card { margin: 0 auto; max-width: 560px; padding: 0; color: #fff; background: transparent; }
.lead-card h2 { margin: 0 0 20px; text-align: center; font-family: "Montserrat", sans-serif; font-size: clamp(1.28rem, 5vw, 1.8rem); font-weight: 900; }
.lead-card .form-sub { margin: -12px auto 20px; text-align: center; color: #e5e7eb; font-size: .88rem; }
.lead-card label { display: grid; gap: 8px; margin-bottom: 16px; color: #f8fafc; text-align: left; font-size: .82rem; font-weight: 900; }
.lead-card label::before,
.lead-card label::after { content: none !important; display: none !important; }
.lead-card input, .lead-card select { width: 100%; min-height: 52px; border: 1px solid #cbd5e1; border-radius: 15px; background: #fff; color: #0f172a; padding: 0 14px; outline: none; font: inherit; box-shadow: 0 4px 0 rgba(15,23,42,.12); }
.lead-card input:focus, .lead-card select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .18), 0 4px 0 rgba(15,23,42,.12); }
.lead-card button { width: 100%; border: 0; cursor: pointer; }
.form-alert { margin-top: 12px; padding: 11px 12px; border-radius: 12px; font-weight: 800; text-align: left; }
.bg-emerald-50 { background: #ecfdf5; } .text-emerald-700 { color: #047857; }
.bg-red-50 { background: #fef2f2; } .text-red-700 { color: #b91c1c; }

.section { padding: 50px 16px; border-top: 1px solid rgba(255,255,255,.08); background: var(--bg); }
.section h2 { margin: 0 0 14px; font-family: "Montserrat", sans-serif; font-size: clamp(1.45rem, 6vw, 2.2rem); line-height: 1.18; font-weight: 900; }
.section p { color: #e5e7eb; line-height: 1.82; font-size: .95rem; }
.kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; color: #e0f2fe; font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.visual-banner { margin: 26px 0 0; border-radius: 18px; overflow: hidden; background: #1f2429; border: 1px solid rgba(255,255,255,.08); }
.visual-banner img { width: 100%; height: 390px; object-fit: contain; padding: 24px; background: radial-gradient(circle at center, rgba(255,255,255,.1), rgba(0,0,0,.08)); }
.service-stack { display: grid; gap: 18px; }
.service-card { padding: 24px 18px; border-radius: 18px; background: #050505; color: #fff; text-align: center; box-shadow: 0 16px 34px rgba(0,0,0,.24); transition: .24s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px rgba(0,0,0,.3); }
.service-card .icon { width: 66px; height: 66px; margin: 0 auto 12px; display: grid; place-items: center; color: #fff; }
.service-card h3 { margin: 0 0 8px; font-family: "Montserrat", sans-serif; font-size: 1.35rem; font-weight: 900; }
.service-card p { margin: 0 auto; max-width: 470px; color: #dbe4ee; font-size: .9rem; line-height: 1.65; }
.process-grid { display: grid; gap: 14px; margin-top: 24px; }
.process-card { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; padding: 18px; border-radius: 18px; background: #252a2f; border: 1px solid rgba(255,255,255,.09); }
.process-card b { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #fff; color: #0f172a; font-family: "Montserrat", sans-serif; font-size: 1.1rem; }
.process-card h3 { margin: 0 0 5px; font-family: "Montserrat", sans-serif; }
.process-card p { margin: 0; font-size: .88rem; }
.faq-list { display: grid; gap: 12px; margin-top: 22px; }
.faq-item { overflow: hidden; border-radius: 16px; background: #252a2f; border: 1px solid rgba(255,255,255,.1); }
.faq-trigger { width: 100%; min-height: 58px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 0; background: transparent; color: #fff; text-align: left; font: inherit; font-weight: 900; cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 16px 16px; }
.faq-item.open .faq-answer { max-height: 150px; }
.faq-item.open .faq-trigger i { transform: rotate(45deg); }
.contact-panel { text-align: center; }
.contact-icon { width: 64px; height: 64px; margin: 0 auto 12px; color: #fff; }
.contact-image { margin: 20px auto 22px; max-width: 560px; overflow: hidden; border-radius: 18px; border: 1px solid rgba(255,255,255,.1); background: #1f2429; box-shadow: 0 18px 38px rgba(0,0,0,.2); }
.contact-image img { width: 100%; height: 280px; object-fit: cover; }
.contact-list { display: grid; gap: 12px; margin-top: 24px; text-align: left; }
.contact-list span { display: flex; gap: 10px; align-items: center; color: #f8fafc; font-weight: 800; }
.footer { padding: 24px 16px 96px; display: grid; gap: 16px; place-items: center; border-top: 1px solid rgba(255,255,255,.08); }
.footer img { width: min(360px, 86vw); height: auto; object-fit: contain; }
.footer-disclaimer { width: min(720px, 100%); margin: 0; color: #d1d5db; font-size: .72rem; line-height: 1.7; text-align: center; }
.floating-cta { position: fixed; bottom: 16px; z-index: 90; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #fff; box-shadow: 0 18px 36px rgba(0,0,0,.3); animation: pulse 1.8s ease-in-out infinite; }
.floating-call { background: radial-gradient(circle at 32% 25%, #fff 0 7%, transparent 8%), linear-gradient(135deg, #ff3737, #b91c1c 72%); animation: callBeat 1.45s cubic-bezier(.2,.8,.2,1) infinite; }
.floating-call-left { left: 16px; }
.floating-call-right { right: 16px; }
.floating-call::before { content: ""; position: absolute; inset: -9px; z-index: -1; border-radius: 50%; border: 2px solid rgba(239,68,68,.75); animation: callRing 1.45s ease-out infinite; }
.floating-call svg { animation: phoneSwing 1.45s ease-in-out infinite; transform-origin: 50% 50%; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes callBeat { 0%,100% { transform: scale(1); box-shadow: 0 18px 36px rgba(0,0,0,.3), 0 0 0 0 rgba(239,68,68,.42); } 18% { transform: scale(1.12); box-shadow: 0 22px 42px rgba(0,0,0,.34), 0 0 0 12px rgba(239,68,68,.12); } 34% { transform: scale(1.02); } 50% { transform: scale(1.1); } }
@keyframes callRing { 0% { transform: scale(.82); opacity: .9; } 72%,100% { transform: scale(1.55); opacity: 0; } }
@keyframes phoneSwing { 0%,100% { transform: rotate(0deg); } 12% { transform: rotate(-18deg); } 24% { transform: rotate(18deg); } 36% { transform: rotate(-12deg); } 48% { transform: rotate(12deg); } 60% { transform: rotate(0deg); } }
.scroll-top { position: fixed; right: 16px; bottom: 86px; z-index: 80; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: #1683e5; color: #fff; opacity: 0; pointer-events: none; transition: .2s ease; }
.opacity-100 { opacity: 1; } .pointer-events-auto { pointer-events: auto; }

@media (min-width: 860px) {
  .page-shell, .site-header nav, .mobile-menu { width: min(100%, 760px); }
  .hero { padding-top: 132px; }
  .service-stack { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-btn { display: grid; }
  .site-header nav { min-height: 56px; }
  .site-header nav { min-height: 68px; padding: 0 12px; }
  .brand-mark { width: min(196px, calc(100vw - 90px)); min-height: 58px; }
  .brand-mark img { max-height: 62px; }
  .top-email { font-size: .68rem; gap: 8px; }
  .hero { padding-left: 14px; padding-right: 14px; }
  .product-stage { min-height: 240px; }
  .product-stage img { max-height: 220px; }
  .poster-stage { min-height: auto; }
  .poster-stage img { max-height: none; }
  .visual-banner img { height: 330px; }
}

.top-email a { color: #7dd3fc; text-decoration: underline; text-underline-offset: 3px; }
.top-email span { color: #fff; }
