/* Gangster Trader Academy — dark trader theme (ดำ · ทอง · ฟ้า) */
:root {
  --bg: #05070d;
  --bg-2: #0a0f1c;
  --bg-3: #0c1322;
  --panel: rgba(255, 255, 255, .04);
  --panel-2: rgba(255, 255, 255, .06);
  --brd: rgba(255, 255, 255, .09);
  --brd-2: rgba(255, 255, 255, .15);

  --gold: #f5c451;
  --gold-deep: #c9982e;
  --gold-light: #ffe9a8;
  --blue: #3d8bff;
  --blue-bright: #5aa2ff;
  --cyan: #43e5ff;
  --green: #26d07c;
  --red: #ff4d5e;

  --text: #eaf0fb;
  --muted: #93a1bf;
  --muted-2: #6b7a99;

  --grad-gold: linear-gradient(100deg, #ffe9a8, #f5c451 45%, #c9982e);
  --grad-blue: linear-gradient(100deg, #8fc0ff, #3d8bff 55%, #43e5ff);
  --grad-btn: linear-gradient(135deg, #ffe19a, #f5c451 45%, #d9a736);

  --radius: 18px;
  --radius-sm: 12px;
  --wrap: 1180px;
  --font: 'Anuphan', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Bai Jamjuree', 'Anuphan', sans-serif;
  --mono: 'Space Grotesk', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: .18s; }
a:hover { color: var(--gold-light); }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.22; margin: 0 0 .55em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.9vw, 2.6rem); }
h3 { font-size: clamp(1.12rem, 2.1vw, 1.32rem); }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.en, .num { font-family: var(--mono); letter-spacing: .4px; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.sec { padding: clamp(60px, 8vw, 108px) 0; position: relative; }
.sec--soft { background: var(--bg-2); }
.sec--grad {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(61, 139, 255, .10), transparent 65%),
    radial-gradient(700px 400px at 90% 100%, rgba(245, 196, 81, .08), transparent 60%),
    var(--bg-2);
}
.center { text-align: center; }
.muted { color: var(--muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.grad-gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-blue { background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- eyebrow / heads ---------- */
.eyebrow {
  display: inline-flex; align-items: flex-start; gap: 9px; line-height: 1.5;
  font-family: var(--mono); font-size: .76rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  background: rgba(245, 196, 81, .07); border: 1px solid rgba(245, 196, 81, .28);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; flex: none; margin-top: .55em;
  background: var(--gold); box-shadow: 0 0 10px var(--gold);
}
.eyebrow svg { width: 15px; height: 15px; }
.sec-head { max-width: 720px; margin-bottom: 46px; }
.sec-head.center { margin-inline: auto; }
.sec-head p { color: var(--muted); font-size: 1.04rem; margin-bottom: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  border: 1px solid transparent; cursor: pointer; transition: .2s ease;
  font-family: inherit; text-align: center; white-space: nowrap;
}
.btn--primary { background: var(--grad-btn); color: #1a1305; box-shadow: 0 10px 30px rgba(245, 196, 81, .22); }
.btn--primary:hover { color: #1a1305; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(245, 196, 81, .34); }
.btn--ghost { background: var(--panel); color: var(--text); border-color: var(--brd-2); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: var(--panel-2); color: #fff; border-color: var(--gold); transform: translateY(-2px); }
.btn--line { background: #06c755; color: #fff; box-shadow: 0 10px 28px rgba(6, 199, 85, .26); }
.btn--line:hover { color: #fff; transform: translateY(-2px); }
.btn--onDark { background: var(--panel); color: var(--text); border-color: var(--brd-2); }
.btn--onDark:hover { background: var(--panel-2); color: #fff; }
.btn--sm { padding: 9px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(5, 7, 13, .78);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--brd);
}
.hdr__in { display: flex; align-items: center; gap: 14px; height: 74px; width: min(100% - 32px, 1340px); }
.hdr__logo { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; color: #fff; }
.hdr__logo:hover { color: #fff; }
.hdr__logo img { height: 38px; width: auto; }
.hdr__logo span { font-size: 1.02rem; letter-spacing: .06em; line-height: 1.1; }
.hdr__logo small { display: block; font-family: var(--mono); font-size: .6rem; letter-spacing: .3em; color: var(--gold); font-weight: 600; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 9px 12px; border-radius: 999px; color: var(--muted);
  font-weight: 500; font-size: .93rem; white-space: nowrap; transition: .18s;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--panel); color: var(--gold); }
.hdr__cta { display: flex; gap: 10px; align-items: center; }
.burger {
  display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--brd-2); background: var(--panel); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--gold); position: relative; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--gold);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

@media (max-width: 1240px) { .hdr__cta .btn--line { display: none; } }
@media (max-width: 1080px) {
  .nav {
    position: fixed; inset: 74px 0 auto; background: rgba(8, 11, 20, .98); flex-direction: column;
    align-items: stretch; gap: 0; padding: 12px 20px 24px; border-bottom: 1px solid var(--brd);
    backdrop-filter: blur(20px); display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 12px; border-radius: var(--radius-sm); font-size: 1rem; }
  .burger { display: flex; }
}
@media (max-width: 620px) { .hdr__cta .btn--primary { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); isolation: isolate; }
.hero canvas.fx { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .55; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(1000px 560px at 78% 22%, rgba(61, 139, 255, .17), transparent 62%),
    radial-gradient(760px 460px at 8% 78%, rgba(245, 196, 81, .11), transparent 60%),
    linear-gradient(180deg, rgba(5, 7, 13, .55) 0%, rgba(5, 7, 13, .82) 62%, var(--bg) 100%);
}
.hero__in { position: relative; z-index: 2; padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(34px, 5vw, 62px); align-items: center; }
.hero h1 { color: #fff; margin-bottom: .4em; letter-spacing: .01em; }
.hero__sub { font-size: clamp(1rem, 1.5vw, 1.12rem); color: var(--muted); max-inline-size: 54ch; margin-bottom: 24px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--panel); border: 1px solid var(--brd); color: var(--muted);
  border-radius: 999px; padding: 6px 14px; font-size: .86rem;
}
.chip b { color: var(--text); font-weight: 600; }
.chip .live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 9px var(--green); animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .35 } }

.hero__quote {
  margin-top: 30px; padding: 16px 20px; border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(245, 196, 81, .08), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .96rem;
}
.hero__quote .en { display: block; color: var(--muted-2); font-size: .82rem; margin-top: 4px; }

/* ---------- live quote card ---------- */
.hero__visual { position: relative; padding: 22px 0; }
.glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .028));
  border: 1px solid var(--brd-2); border-radius: 22px;
  backdrop-filter: blur(14px); box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.quote-card { padding: 22px; }
.quote-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.quote-card__sym { font-family: var(--mono); font-weight: 700; font-size: 1.02rem; color: #fff; display: flex; align-items: center; gap: 8px; }
.quote-card__sym i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: pulse 2s ease-in-out infinite; font-style: normal; }
.quote-card__tag {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); background: rgba(245, 196, 81, .1); border: 1px solid rgba(245, 196, 81, .25);
  padding: 4px 10px; border-radius: 6px; white-space: nowrap;
}
.quote-card__price { font-family: var(--mono); font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 700; color: #fff; line-height: 1.15; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.quote-card__chg { font-size: .9rem; font-weight: 600; }
.up { color: var(--green); }
.down { color: var(--red); }
.quote-card canvas { width: 100%; height: 96px; display: block; margin: 14px 0 4px; }
.quote-card__mini { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--brd); }
.quote-card__mini div { text-align: center; }
.quote-card__mini b { display: block; font-family: var(--mono); font-size: 1.16rem; color: var(--gold); }
.quote-card__mini small { color: var(--muted-2); font-size: .76rem; }
.quote-card__note { margin: 14px auto 0; font-size: .73rem; color: var(--muted-2); text-align: center; line-height: 1.55; max-width: 48ch; }

.float-tag {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(11, 16, 28, .9); border: 1px solid var(--brd-2); border-radius: 14px;
  padding: 10px 14px; backdrop-filter: blur(10px); box-shadow: 0 16px 40px rgba(0, 0, 0, .55);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-tag b { display: block; font-size: .86rem; color: #fff; }
.float-tag small { color: var(--muted-2); font-size: .7rem; font-family: var(--mono); }
.float-tag .ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; font-size: .95rem; flex: none; }
.ft-1 { top: -22px; right: -22px; }
.ft-2 { top: 46%; left: -32px; animation-delay: -2.6s; }
@keyframes floaty { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-9px) } }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { max-width: 520px; }
  .ft-1 { right: 2px; }
  .ft-2 { left: 2px; }
}
@media (max-width: 560px) {
  .float-tag { display: none; }
}

/* ---------- ticker ---------- */
.ticker {
  border-block: 1px solid var(--brd); background: var(--bg-2);
  overflow: hidden; position: relative; z-index: 3;
}
.ticker__run { display: flex; gap: 0; width: max-content; animation: tick 46s linear infinite; }
.ticker:hover .ticker__run { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%) } }
.ticker__item {
  display: flex; align-items: baseline; gap: 9px; padding: 12px 26px;
  border-right: 1px solid var(--brd); white-space: nowrap; font-size: .86rem;
}
.ticker__item b { font-family: var(--mono); font-weight: 600; color: var(--muted); letter-spacing: .08em; }
.ticker__item span { font-family: var(--mono); color: #fff; font-weight: 600; }
.ticker__item em { font-style: normal; font-family: var(--mono); font-size: .8rem; }
.ticker__empty { padding: 12px 0; text-align: center; color: var(--muted-2); font-size: .84rem; }

/* ---------- stats band ---------- */
.statband {
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(61, 139, 255, .12), transparent 65%),
    var(--bg-2);
  border-block: 1px solid var(--brd);
  padding: clamp(46px, 6vw, 68px) 0;
}
.statband__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; text-align: center; }
.statband n {
  display: block; font-family: var(--mono); font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.1;
}
.statband small { color: var(--muted); font-size: .92rem; }
@media (max-width: 760px) { .statband__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 16px; } }

/* ---------- cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); } }

.card {
  position: relative; background: var(--panel); border: 1px solid var(--brd);
  border-radius: var(--radius); padding: 26px; transition: .25s ease; height: 100%;
  display: flex; flex-direction: column; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  background: linear-gradient(160deg, rgba(245, 196, 81, .12), transparent 42%);
  opacity: 0; transition: .25s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(245, 196, 81, .34); background: var(--panel-2); }
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card__media { margin: -26px -26px 20px; overflow: hidden; }
.card__media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; filter: saturate(.9) contrast(1.05); }
.card h3 { margin-bottom: .4em; color: #fff; }
.card p { color: var(--muted); }
.card__foot { margin-top: auto; padding-top: 16px; }
a.card:hover h3 { color: var(--gold); }

.icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(245, 196, 81, .2), rgba(245, 196, 81, .06));
  border: 1px solid rgba(245, 196, 81, .28); color: var(--gold); margin-bottom: 18px; flex: none;
}
.icon svg { width: 24px; height: 24px; }
.icon--blue {
  background: linear-gradient(150deg, rgba(61, 139, 255, .22), rgba(61, 139, 255, .06));
  border-color: rgba(61, 139, 255, .3); color: var(--blue-bright);
}

.badge-free {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--mono); font-size: .64rem; font-weight: 700; letter-spacing: .14em;
  background: var(--grad-btn); color: #1a1305; padding: 4px 10px; border-radius: 6px;
}

.ticks { list-style: none; padding: 0; margin: 0 0 6px; }
.ticks li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--muted); }
.ticks li b { color: var(--text); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .58em; width: 16px; height: 16px;
  border-radius: 50%; background: rgba(245, 196, 81, .12); border: 1px solid rgba(245, 196, 81, .3);
}
.ticks li::after {
  content: ''; position: absolute; left: 4.5px; top: .8em; width: 7px; height: 4px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(30px, 5vw, 62px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--brd); }
.split__media::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 13, .55));
}
@media (max-width: 900px) { .split { grid-template-columns: minmax(0, 1fr); } }

/* ---------- pricing ---------- */
.price-card--hot { border-color: rgba(245, 196, 81, .45); background: var(--panel-2); }
.price-card--hot::before {
  content: 'แนะนำ'; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--grad-btn); color: #1a1305; font-size: .72rem; font-weight: 700;
  padding: 4px 18px; border-radius: 0 0 9px 9px; letter-spacing: .06em; z-index: 2;
}
.price { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 10px; }
.price b { font-family: var(--mono); font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; }
.price span { color: var(--muted-2); font-size: .88rem; }

/* ---------- gallery ---------- */
.gal { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(210px, 46%), 1fr)); gap: 12px; }
.gal a { display: block; border-radius: 14px; overflow: hidden; background: var(--bg-3); position: relative; border: 1px solid var(--brd); }
.gal img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: .4s ease; filter: saturate(.92); }
.gal a:hover img { transform: scale(1.07); filter: saturate(1.1); }
.gal a::after {
  content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 0 var(--gold); transition: .25s;
}
.gal a:hover::after { box-shadow: inset 0 0 0 2px var(--gold); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filters button {
  border: 1px solid var(--brd); background: var(--panel); color: var(--muted); font-family: inherit;
  font-weight: 500; font-size: .9rem; padding: 8px 18px; border-radius: 999px; cursor: pointer; transition: .18s;
}
.filters button:hover { border-color: var(--gold); color: var(--gold); }
.filters button.on { background: var(--grad-btn); color: #1a1305; border-color: transparent; font-weight: 700; }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200; background: rgba(3, 5, 10, .96);
  display: none; align-items: center; justify-content: center; padding: 24px;
  backdrop-filter: blur(6px);
}
.lb.open { display: flex; }
.lb img { max-width: min(1200px, 94vw); max-height: 86vh; border-radius: 12px; object-fit: contain; }
.lb__x, .lb__nav {
  position: absolute; background: var(--panel); border: 1px solid var(--brd-2);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.4rem;
  display: grid; place-items: center; font-family: inherit;
}
.lb__x:hover, .lb__nav:hover { border-color: var(--gold); color: var(--gold); }
.lb__x { top: 22px; right: 22px; }
.lb__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- video ---------- */
.vids { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 18px; }
.vid { border-radius: var(--radius); overflow: hidden; background: #000; border: 1px solid var(--brd); }
.vid video { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #000; }

/* ---------- accordion ---------- */
.acc { border: 1px solid var(--brd); border-radius: var(--radius); background: var(--panel); overflow: hidden; }
.acc details { border-bottom: 1px solid var(--brd); }
.acc details:last-child { border-bottom: 0; }
.acc summary {
  cursor: pointer; padding: 19px 56px 19px 24px; font-weight: 600; position: relative;
  list-style: none; color: #fff; transition: .18s;
}
.acc summary:hover { color: var(--gold); }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: ''; position: absolute; right: 24px; top: 26px; width: 9px; height: 9px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); transition: .2s;
}
.acc details[open] summary::after { transform: rotate(-135deg); top: 31px; }
.acc details[open] summary { background: rgba(245, 196, 81, .06); color: var(--gold); }
.acc .acc__body { padding: 0 24px 22px; color: var(--muted); }

/* ---------- events ---------- */
.event {
  display: grid; grid-template-columns: 138px 1fr auto; gap: 22px; align-items: center;
  background: var(--panel); border: 1px solid var(--brd); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 14px; transition: .22s;
}
.event:hover { border-color: rgba(245, 196, 81, .34); background: var(--panel-2); }
.event__date {
  text-align: center; border-radius: var(--radius-sm); padding: 12px 8px;
  background: linear-gradient(150deg, rgba(245, 196, 81, .16), rgba(245, 196, 81, .04));
  border: 1px solid rgba(245, 196, 81, .26);
}
.event__date b { display: block; font-family: var(--mono); font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.event__date span { font-size: .8rem; color: var(--muted-2); font-family: var(--mono); }
.event h3 { margin-bottom: .25em; color: #fff; }
.event p { margin: 0; color: var(--muted); font-size: .94rem; }
@media (max-width: 780px) { .event { grid-template-columns: minmax(0, 1fr); } }

/* ---------- testimonials ---------- */
.quote { background: var(--panel); border: 1px solid var(--brd); border-radius: var(--radius); padding: 26px; }
.quote__mark { font-size: 2.6rem; line-height: 1; color: var(--gold); opacity: .5; font-family: Georgia, serif; }
.quote p { color: var(--text); font-size: 1rem; }
.quote footer { color: var(--muted-2); font-size: .88rem; }
.quote footer b { color: var(--gold); display: block; font-size: .98rem; font-family: var(--display); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 36px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
.info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-item .icon { width: 42px; height: 42px; border-radius: 12px; margin: 0; }
.info-item .icon svg { width: 19px; height: 19px; }
.info-item b { display: block; color: #fff; font-size: .95rem; }
.info-item a, .info-item span { color: var(--muted); word-break: break-word; }
.info-item a:hover { color: var(--gold); }

.form { background: var(--panel); border: 1px solid var(--brd); border-radius: var(--radius); padding: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1px solid var(--brd); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .98rem; background: rgba(0, 0, 0, .3); color: var(--text); transition: .18s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select option { background: var(--bg-2); color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(0, 0, 0, .45);
  box-shadow: 0 0 0 3px rgba(245, 196, 81, .14);
}
.field textarea { min-height: 118px; resize: vertical; }
.form__msg { padding: 13px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; display: none; font-size: .92rem; }
.form__msg.ok { display: block; background: rgba(38, 208, 124, .12); color: var(--green); border: 1px solid rgba(38, 208, 124, .3); }
.form__msg.err { display: block; background: rgba(255, 77, 94, .12); color: var(--red); border: 1px solid rgba(255, 77, 94, .3); }

.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--brd); }
.map iframe { width: 100%; height: 380px; border: 0; display: block; filter: invert(.92) hue-rotate(180deg); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: 26px; text-align: center;
  padding: clamp(38px, 5vw, 62px);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(245, 196, 81, .18), transparent 65%),
    linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  border: 1px solid rgba(245, 196, 81, .28);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--muted); max-width: 58ch; margin-inline: auto; }

/* ---------- footer ---------- */
.ft { background: #03050a; border-top: 1px solid var(--brd); color: var(--muted); padding: 62px 0 26px; font-size: .93rem; }
.ft a { color: var(--muted); }
.ft a:hover { color: var(--gold); }
.ft__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; margin-bottom: 38px; }
@media (max-width: 900px) { .ft__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .ft__grid { grid-template-columns: minmax(0, 1fr); } }
.ft h4 { color: #fff; font-size: .98rem; margin-bottom: 1em; font-family: var(--display); }
.ft ul { list-style: none; padding: 0; }
.ft li { margin-bottom: 9px; }
.ft__logo img { height: 52px; margin-bottom: 14px; }
.ft__risk { border-top: 1px solid var(--brd); padding-top: 22px; font-size: .82rem; color: var(--muted-2); line-height: 1.7; }
.ft__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 18px; font-size: .84rem; color: var(--muted-2); }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--panel); border: 1px solid var(--brd); color: var(--muted); }
.social a:hover { background: rgba(245, 196, 81, .12); border-color: var(--gold); color: var(--gold); }
.social svg { width: 18px; height: 18px; }

/* ---------- floating contact ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: flex; flex-direction: column; gap: 10px; }
.fab a {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, .5); transition: .2s;
}
.fab a:hover { transform: scale(1.09); color: #fff; }
.fab .fab-line { background: #06c755; }
.fab .fab-tel { background: var(--grad-btn); color: #1a1305; }
.fab .fab-tel:hover { color: #1a1305; }
.fab svg { width: 25px; height: 25px; }
@media (min-width: 1081px) { .fab { right: 24px; bottom: 24px; } }

/* ---------- breadcrumb / page hero ---------- */
.crumb { font-size: .86rem; color: var(--muted-2); padding: 18px 0 0; }
.crumb a { color: var(--muted-2); }
.crumb a:hover { color: var(--gold); }

.phero {
  position: relative; border-bottom: 1px solid var(--brd);
  padding: clamp(34px, 5vw, 62px) 0 clamp(38px, 5vw, 66px);
  background:
    radial-gradient(800px 340px at 20% 0%, rgba(61, 139, 255, .14), transparent 64%),
    radial-gradient(600px 300px at 88% 100%, rgba(245, 196, 81, .10), transparent 60%),
    var(--bg-2);
}
.phero h1 { margin-bottom: .3em; color: #fff; }
.phero p { color: var(--muted); font-size: 1.05rem; max-width: 64ch; margin-bottom: 0; }

/* ---------- prose ---------- */
.prose { max-width: 76ch; color: var(--muted); }
.prose h2 { margin-top: 1.6em; color: #fff; }
.prose li { margin-bottom: .5em; }
.prose b { color: var(--text); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; translate: 0 22px; transition: opacity .7s ease, translate .7s ease; }
.reveal.in { opacity: 1; translate: 0 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; translate: 0 0; }
}
