:root {
  --bg: #060606;
  --bg-soft: #0b0b0b;
  --panel: #101010;
  --panel-2: #151515;
  --text: #f6f6f4;
  --muted: #aaa9a3;
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,211,37,.4);
  --gold: #ffd229;
  --gold-2: #ffb300;
  --gold-soft: rgba(255,210,41,.12);
  --white: #ffffff;
  --green: #38d27a;
  --danger: #ff6b6b;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 18px 70px rgba(0,0,0,.45);
  --container: 1180px;
  --header-h: 74px;
  --font: "Prompt", "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 4%, rgba(255,199,0,.08), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #090909 46%, #050505 100%);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 92px;
}

body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #111; background: var(--gold); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #111;
  background: var(--gold);
  border-radius: 8px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 76px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand img { flex: 0 0 auto; filter: drop-shadow(0 0 20px rgba(255,210,41,.2)); }
.brand-copy { min-width: 0; line-height: 1.15; }
.brand-copy strong { display: block; color: var(--gold); font-size: 1rem; letter-spacing: .02em; }
.brand-copy small { display: block; max-width: 150px; margin-top: 4px; overflow: hidden; color: #8e8e89; font-size: .61rem; white-space: nowrap; text-overflow: ellipsis; }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--white);
  background: #111;
  cursor: pointer;
}
.menu-toggle span { width: 20px; height: 2px; border-radius: 999px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
  position: fixed;
  inset: var(--header-h) 0 auto;
  height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px 120px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  background: rgba(6,6,6,.98);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.primary-nav.open { visibility: visible; opacity: 1; transform: none; }
.primary-nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); color: #d9d9d4; font-size: .95rem; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--gold); }
.nav-actions { display: none; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible { outline: 3px solid rgba(255,210,41,.35); outline-offset: 3px; }
.btn.is-locked { pointer-events: none; opacity: .65; }
.btn svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-gold { color: #161200; background: linear-gradient(135deg, #ffe55f, var(--gold-2)); box-shadow: 0 10px 28px rgba(255,185,0,.18); }
.btn-gold:hover { box-shadow: 0 12px 38px rgba(255,185,0,.34); }
.btn-light { color: #111; background: #fff; box-shadow: 0 10px 28px rgba(255,255,255,.1); }
.btn-light:hover { background: #f1f1ee; }
.btn-ghost { color: #f4f4f1; border-color: rgba(255,210,41,.45); background: rgba(255,210,41,.04); }
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); background: rgba(255,210,41,.08); }
.btn-sm { min-height: 40px; padding: 8px 14px; font-size: .78rem; border-radius: 11px; }
.btn-lg { min-height: 54px; padding: 14px 20px; }
.icon-bubble { font-size: .55rem; }

.hero { min-height: auto; padding-top: 56px; padding-bottom: 46px; overflow: clip; }
.hero-grid { display: grid; gap: 46px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255,210,41,.25);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255,210,41,.06);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 16px var(--gold); }
.hero h1 { margin: 20px 0 16px; font-size: clamp(2.25rem, 11vw, 4.45rem); line-height: 1.13; letter-spacing: -.04em; }
.hero h1 span { color: var(--gold); text-shadow: 0 0 35px rgba(255,208,32,.16); }
.hero-lead { max-width: 620px; margin: 0 0 16px; color: #c1c1bc; font-size: 1rem; }
.compliance-note { max-width: 640px; display: flex; align-items: flex-start; gap: 9px; padding: 11px 12px; border: 1px solid rgba(56,210,122,.2); border-radius: 12px; color: #b9ddc7; background: rgba(56,210,122,.06); font-size: .75rem; line-height: 1.55; }
.compliance-note svg { width: 20px; flex: 0 0 20px; fill: var(--green); }
.platforms { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.platforms span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #e2e2de; background: rgba(255,255,255,.035); font-size: .72rem; font-weight: 600; }
.platforms span:first-child { color: var(--gold); border-color: rgba(255,210,41,.25); background: rgba(255,210,41,.08); }
.hero-actions { display: grid; gap: 10px; }
.trust-row { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack span { width: 34px; height: 34px; display: grid; place-items: center; margin-left: -8px; border: 2px solid #080808; border-radius: 50%; color: #111; background: linear-gradient(135deg, #fff7c1, #dca800); font-size: .6rem; font-weight: 800; }
.trust-row p { margin: 0; color: #ededeb; font-size: .77rem; line-height: 1.35; }
.trust-row small { color: var(--muted); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-glow-one { width: 330px; height: 330px; top: 18%; right: -180px; background: rgba(255,194,0,.14); }
.hero-glow-two { width: 210px; height: 210px; bottom: 4%; left: -130px; background: rgba(255,221,69,.07); }

.hero-visual { position: relative; z-index: 1; }
.browser-shell { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: linear-gradient(145deg, #141414, #080808); box-shadow: 0 30px 100px rgba(0,0,0,.6), 0 0 55px rgba(255,208,32,.07); }
.browser-topbar { min-height: 52px; display: flex; align-items: center; gap: 9px; padding: 11px 12px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.025); }
.traffic-lights { display: flex; gap: 6px; }
.traffic-lights i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.browser-address { min-width: 0; flex: 1; padding: 7px 10px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; color: #777; background: #080808; font-size: .58rem; white-space: nowrap; text-overflow: ellipsis; }
.live-pill { padding: 5px 8px; border: 1px solid rgba(56,210,122,.25); border-radius: 999px; color: #81e7aa; background: rgba(56,210,122,.08); font-size: .55rem; font-weight: 700; }
.dashboard-body { min-height: 390px; display: grid; grid-template-columns: 48px 1fr; }
.dash-sidebar { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 14px 10px; border-right: 1px solid var(--line); background: rgba(255,255,255,.018); }
.mini-logo { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: #111; background: var(--gold); font-size: .75rem; font-weight: 800; }
.dash-sidebar i { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 5px; }
.dash-sidebar i.active { border-color: var(--gold); background: rgba(255,210,41,.16); box-shadow: inset 0 0 0 4px #0e0e0e; }
.dash-main { min-width: 0; padding: 14px; }
.dash-heading { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dash-heading div { display: grid; }
.dash-heading small { color: #6f6f6a; font-size: .55rem; }
.dash-heading strong { margin-top: 2px; font-size: .9rem; }
.dash-heading button { border: 0; color: #aaa; background: transparent; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 13px; }
.metric-grid article { min-width: 0; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }
.metric-grid span, .metric-grid small { display: block; overflow: hidden; color: #777; font-size: .48rem; white-space: nowrap; text-overflow: ellipsis; }
.metric-grid strong { display: block; margin: 4px 0 1px; color: var(--gold); font-size: .95rem; }
.chart-card { margin-top: 9px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); }
.chart-head { display: flex; justify-content: space-between; color: #cacac6; font-size: .55rem; }
.chart-head small { color: #70706c; }
.chart-card svg { width: 100%; height: 130px; margin-top: 4px; }
.grid-lines path { fill: none; stroke: rgba(255,255,255,.07); }
.chart-card .area { fill: url(#chartFill); }
.chart-card .line { fill: none; stroke: var(--gold); stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(255,210,41,.35)); }
.activity-card { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 9px; padding: 10px; border: 1px solid rgba(56,210,122,.16); border-radius: 11px; background: rgba(56,210,122,.035); }
.activity-card > div { min-width: 0; display: flex; align-items: center; gap: 7px; }
.status-dot { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(56,210,122,.5); }
.activity-card p { min-width: 0; display: grid; margin: 0; }
.activity-card strong { font-size: .55rem; }
.activity-card small { overflow: hidden; color: #777; font-size: .45rem; white-space: nowrap; text-overflow: ellipsis; }
.status-badge { padding: 4px 7px; border-radius: 999px; color: #89e5ad; background: rgba(56,210,122,.1); font-size: .48rem; }
.floating-status { position: absolute; display: none; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 12px; color: #ededeb; background: rgba(17,17,17,.96); box-shadow: var(--shadow); font-size: .65rem; }
.floating-status b { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: #111; background: var(--gold); }
.status-one { top: 19%; right: -24px; }
.status-two { bottom: 12%; left: -26px; }

.stats-section { padding: 10px 0 26px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stat-card { min-width: 0; display: flex; align-items: center; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(135deg, #151515, #0a0a0a); box-shadow: inset 0 1px rgba(255,255,255,.025); }
.stat-icon { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border: 1px solid rgba(255,210,41,.18); border-radius: 11px; color: var(--gold); background: rgba(255,210,41,.07); }
.stat-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat-card strong { display: block; overflow: hidden; font-size: 1.15rem; line-height: 1.1; white-space: nowrap; text-overflow: ellipsis; }
.stat-card small { display: block; margin-top: 4px; overflow: hidden; color: var(--muted); font-size: .64rem; white-space: nowrap; text-overflow: ellipsis; }

.section-heading { margin-bottom: 30px; }
.section-heading.centered { text-align: center; }
.section-heading.centered .section-kicker { margin-inline: auto; }
.section-heading h2 { margin: 14px 0 8px; font-size: clamp(1.8rem, 8vw, 3rem); line-height: 1.22; letter-spacing: -.035em; }
.section-heading h2 em, .process-copy h2 em { color: var(--gold); font-style: normal; }
.section-heading p { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: .9rem; }
.section-heading code { padding: 2px 6px; border: 1px solid var(--line); border-radius: 6px; color: var(--gold); background: #111; }
.section-kicker.left { margin: 0; }

.intro-section { padding-top: 64px; }
.service-cards { display: grid; gap: 14px; }
.service-card { position: relative; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, #121212, #090909); }
.service-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -55px; bottom: -55px; border-radius: 50%; background: rgba(255,210,41,.08); filter: blur(12px); }
.service-index { position: absolute; top: 15px; right: 18px; color: rgba(255,255,255,.08); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; border: 1px solid rgba(255,210,41,.26); border-radius: 13px; color: var(--gold); background: rgba(255,210,41,.08); }
.feature-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { position: relative; margin: 0 0 8px; font-size: 1.07rem; }
.service-card p { position: relative; margin: 0; color: var(--muted); font-size: .82rem; }

.packages-section { overflow: clip; background: linear-gradient(180deg, rgba(255,255,255,.012), transparent); }
.gold-orbit { position: absolute; width: 470px; height: 470px; border: 1px solid rgba(255,210,41,.13); border-radius: 50%; pointer-events: none; }
.gold-orbit::before, .gold-orbit::after { content: ""; position: absolute; inset: 50px; border: inherit; border-radius: inherit; }
.gold-orbit::after { inset: 115px; }
.orbit-left { right: -380px; top: 30%; }
.package-grid { display: grid; gap: 16px; }
.package-card { position: relative; display: flex; flex-direction: column; min-height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; color: #171717; background: #f6f6f2; box-shadow: var(--shadow); }
.package-card.featured { color: var(--text); border-color: rgba(255,210,41,.72); background: linear-gradient(160deg, #17140a, #090909 70%); box-shadow: 0 25px 80px rgba(0,0,0,.5), 0 0 34px rgba(255,210,41,.12); }
.recommended-badge { position: absolute; top: 0; left: 50%; z-index: 2; transform: translateX(-50%); padding: 6px 18px; border-radius: 0 0 12px 12px; color: #151100; background: var(--gold); font-size: .68rem; font-weight: 800; }
.package-head { padding: 30px 22px 18px; }
.package-card.featured .package-head { padding-top: 42px; }
.package-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 13px; color: #111; background: linear-gradient(135deg, #ffe96b, #ffad00); box-shadow: 0 12px 30px rgba(255,182,0,.16); }
.package-card:not(.featured):nth-child(3) .package-icon { color: #fff; background: linear-gradient(135deg, #772cff, #c013ff); }
.package-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.package-card h3 { margin: 0 0 3px; font-size: 1.13rem; }
.package-subtitle { margin: 0; color: #666; font-size: .75rem; }
.featured .package-subtitle { color: #a7a69e; }
.package-price { display: flex; align-items: end; gap: 7px; margin-top: 17px; }
.package-price strong { font-size: 2.15rem; line-height: 1; letter-spacing: -.04em; }
.package-price span { color: #777; font-size: .7rem; }
.featured .package-price strong { color: var(--gold); }
.featured .package-price span { color: #aaa; }
.domain-box { margin: 0 22px; padding: 13px 14px; border: 1px solid rgba(255,174,0,.35); border-radius: 12px; color: #6e4700; background: #fff9e9; font-size: .72rem; }
.domain-box strong { display: block; margin-bottom: 2px; color: #d88600; }
.featured .domain-box { color: #d6d2bf; border-color: rgba(255,210,41,.3); background: rgba(255,210,41,.055); }
.featured .domain-box strong { color: var(--gold); }
.package-features { display: grid; gap: 10px; margin: 20px 22px 24px; padding: 0; list-style: none; }
.package-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .76rem; }
.package-features li::before { content: "✓"; width: 18px; height: 18px; flex: 0 0 18px; display: grid; place-items: center; margin-top: 1px; border-radius: 50%; color: #1a1500; background: var(--gold); font-size: .62rem; font-weight: 900; }
.package-card:nth-child(3):not(.featured) .package-features li::before { color: #fff; background: #8c30ff; }
.package-card .btn { width: calc(100% - 44px); margin: auto 22px 22px; }
.package-card:not(.featured):nth-child(3) .btn { color: #fff; background: linear-gradient(135deg, #7d27ff, #bd00ff); box-shadow: 0 12px 32px rgba(151,28,255,.2); }

.features-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.015), transparent); }
.feature-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--line); }
.feature-item { min-width: 0; padding: 20px 12px; text-align: center; background: linear-gradient(145deg, #111, #090909); }
.feature-item svg { width: 30px; height: 30px; margin: 0 auto 10px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-item strong { display: block; color: var(--gold); font-size: .78rem; }
.feature-item small { display: block; margin-top: 5px; color: var(--muted); font-size: .62rem; line-height: 1.5; }
.process-grid { display: grid; gap: 30px; margin-top: 54px; padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #121212, #080808); }
.process-copy h2 { margin: 14px 0 10px; font-size: clamp(1.8rem, 8vw, 2.75rem); line-height: 1.2; }
.process-copy p { margin: 0 0 22px; color: var(--muted); font-size: .86rem; }
.timeline { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.timeline li { display: flex; gap: 13px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.timeline li > span { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; border: 1px solid rgba(255,210,41,.35); border-radius: 10px; color: var(--gold); background: rgba(255,210,41,.06); font-size: .75rem; font-weight: 800; }
.timeline strong { display: block; font-size: .83rem; }
.timeline p { margin: 3px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.5; }

.review-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(86%, 1fr); gap: 13px; overflow-x: auto; padding: 2px 2px 14px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.review-slider::-webkit-scrollbar { display: none; }
.review-card { position: relative; min-height: 230px; display: flex; flex-direction: column; padding: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, #131313, #090909); scroll-snap-align: center; }
.quote-mark { position: absolute; top: 5px; right: 16px; color: rgba(255,255,255,.08); font-size: 4.2rem; font-family: Georgia, serif; line-height: 1; }
.stars { position: relative; color: var(--gold); letter-spacing: .1em; font-size: .86rem; }
.review-card blockquote { position: relative; flex: 1; margin: 18px 0 24px; color: #deded9; font-size: .83rem; }
.reviewer { display: flex; align-items: center; gap: 11px; }
.reviewer-avatar { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,210,41,.3); border-radius: 50%; color: #141000; background: linear-gradient(135deg, #ffed8a, #d99d00); font-size: .7rem; font-weight: 800; }
.reviewer p { display: grid; margin: 0; }
.reviewer strong { font-size: .75rem; }
.reviewer small { color: var(--muted); font-size: .62rem; }
.slider-dots { display: flex; justify-content: center; gap: 6px; margin-top: 7px; }
.slider-dots i { width: 6px; height: 6px; border-radius: 50%; background: #353535; }
.slider-dots i.active { width: 18px; border-radius: 99px; background: var(--gold); }

.faq-section { padding-bottom: 110px; }
.faq-layout { display: grid; gap: 28px; }
.faq-intro h2 { margin: 13px 0 8px; font-size: 2rem; }
.faq-intro p { margin: 0 0 20px; color: var(--muted); font-size: .86rem; }
.faq-list { display: grid; gap: 9px; }
.faq-item { border: 1px solid var(--line); border-radius: 13px; background: #101010; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 16px; cursor: pointer; list-style: none; font-size: .78rem; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center; border-radius: 8px; color: var(--gold); background: rgba(255,210,41,.07); font-size: 1.15rem; font-weight: 400; transition: transform .2s ease; }
.faq-item[open] { border-color: rgba(255,210,41,.28); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 16px 16px; color: var(--muted); font-size: .73rem; }
.faq-answer p { margin: 0; }

.site-footer { border-top: 1px solid var(--line); background: #070707; }
.footer-grid { display: grid; gap: 28px; padding-top: 50px; padding-bottom: 36px; }
.footer-brand > p { max-width: 420px; margin: 18px 0 0; color: var(--muted); font-size: .76rem; }
.footer-links, .footer-contact { display: grid; align-content: start; gap: 9px; }
.footer-grid h3 { margin: 0 0 5px; font-size: .83rem; }
.footer-links a, .footer-contact a { width: fit-content; color: var(--muted); font-size: .74rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-cta { padding: 20px; border: 1px solid rgba(255,210,41,.2); border-radius: 18px; background: rgba(255,210,41,.045); }
.footer-cta p { margin: 7px 0 16px; color: var(--muted); font-size: .72rem; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 14px; padding-top: 18px; padding-bottom: 26px; border-top: 1px solid var(--line); color: #7b7b77; text-align: center; font-size: .65rem; }
.footer-bottom p { margin: 0; }
.socials { display: flex; gap: 8px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #d7d7d1; background: #111; }
.socials a:hover { color: #111; border-color: var(--gold); background: var(--gold); }
.socials svg { width: 17px; fill: currentColor; }

.floating-contact {
  position: fixed;
  z-index: 1100;
  left: max(10px, env(safe-area-inset-left));
  right: max(10px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255,210,41,.24);
  border-radius: 16px;
  background: rgba(12,12,12,.93);
  box-shadow: 0 18px 70px rgba(0,0,0,.56), 0 0 28px rgba(255,210,41,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.floating-contact-copy { display: none; align-items: center; gap: 10px; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(56,210,122,.6); animation: pulse 2s infinite; }
.floating-contact p { display: grid; margin: 0; line-height: 1.3; }
.floating-contact strong { font-size: .75rem; }
.floating-contact small { color: var(--muted); font-size: .62rem; }
.floating-contact .btn { width: 100%; min-height: 48px; }

.noscript-note { position: fixed; inset: auto 10px 80px; z-index: 9999; padding: 12px; border-radius: 10px; color: #111; background: #fff0a0; text-align: center; }

.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(56,210,122,.55); }
  70% { box-shadow: 0 0 0 10px rgba(56,210,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(56,210,122,0); }
}

@media (min-width: 540px) {
  .hero-actions { display: flex; flex-wrap: wrap; }
  .hero-actions .btn { min-width: 200px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-card { padding: 16px 12px; }
  .service-cards { grid-template-columns: repeat(3, 1fr); }
  .review-slider { grid-auto-columns: minmax(58%, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 760px) {
  body { padding-bottom: 88px; }
  .container { width: min(calc(100% - 48px), var(--container)); }
  .section { padding: 96px 0; }
  .hero { padding-top: 78px; }
  .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 48px; }
  .hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.45rem); }
  .hero-lead { font-size: .95rem; }
  .floating-status { display: flex; }
  .package-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .package-card.featured { transform: translateY(-10px); }
  .feature-strip { grid-template-columns: repeat(6, 1fr); }
  .process-grid { grid-template-columns: .75fr 1.25fr; align-items: center; padding: 36px; }
  .review-slider { grid-auto-flow: initial; grid-auto-columns: initial; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .slider-dots { display: none; }
  .faq-layout { grid-template-columns: .72fr 1.28fr; align-items: start; }
  .faq-intro { position: sticky; top: 108px; }
  .footer-grid { grid-template-columns: 1.55fr .7fr .9fr 1.1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .floating-contact { left: 50%; right: auto; width: min(calc(100% - 48px), 780px); transform: translateX(-50%); justify-content: space-between; padding: 9px 9px 9px 16px; }
  .floating-contact-copy { display: flex; }
  .floating-contact .btn { width: auto; min-width: 205px; }
}

@media (min-width: 1040px) {
  :root { --header-h: 78px; }
  .menu-toggle { display: none; }
  .primary-nav {
    position: static;
    inset: auto;
    height: auto;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: transparent;
  }
  .primary-nav a { position: relative; padding: 27px 11px 25px; border: 0; font-size: .75rem; }
  .primary-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -1px; height: 2px; background: var(--gold); transition: left .2s ease, right .2s ease; }
  .primary-nav a:hover::after, .primary-nav a:focus-visible::after { left: 12px; right: 12px; }
  .nav-actions { display: flex; align-items: center; gap: 8px; }
  .brand-copy strong { font-size: 1.05rem; }
  .hero-grid { gap: 70px; }
  .stats-section { padding-top: 20px; }
  .stat-card { padding: 18px; }
  .stat-card strong { font-size: 1.28rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
}
