/* ==========================================================================
   Marketing Badshah — stylesheet
   Tokens
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500&family=Jost:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

:root{
  --bg:            #060505;
  --bg-alt:        #0c0a08;
  --bg-card:       #100d09;
  --ink:           #f4f0e6;
  --ink-dim:       #b9b3a4;
  --muted:         #8b8478;
  --gold:          #d4af37;
  --gold-light:    #f5de8a;
  --gold-deep:     #9c6e17;
  --gold-line:     rgba(212,175,55,.28);
  --gold-glow:     rgba(212,175,55,.18);
  --line:          rgba(244,240,230,.09);

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Jost', 'Segoe UI', sans-serif;
  --font-mono:     'Space Mono', monospace;

  --gold-grad: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  --gold-grad-text: linear-gradient(180deg, #fcefb4 0%, #e7c158 30%, #9c6e17 55%, #f6e2a0 80%, #b8860b 100%);

  --ease-slow: cubic-bezier(.22,.61,.36,1);
  --dur-card: .85s;
  --dur-reveal: 1.1s;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.locked{ overflow: hidden; height: 100vh; }

h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 700; margin: 0; color: var(--ink); }
p{ margin: 0; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
img{ max-width:100%; display:block; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display:flex; align-items:center; gap:12px;
  margin-bottom: 18px;
}
.eyebrow::before{ content:''; width:26px; height:1px; background: var(--gold-line); background:var(--gold); }

.section{ padding: 118px 0; position: relative; }
.section-head{ max-width: 640px; margin-bottom: 64px; }
.section-head h2{ font-size: clamp(32px, 4vw, 48px); line-height: 1.15; }
.section-head .sub{ margin-top: 18px; color: var(--ink-dim); font-size: 17px; max-width: 520px; }
.deco-strip{ display:flex; gap:16px; margin-top: 26px; }
.deco-strip svg{ width: 26px; height:26px; color: var(--gold); opacity:.65; }

.gold-text{
  background: var(--gold-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 15px 30px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing:.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold-line);
  background: transparent;
  color: var(--gold-light);
  transition: background .7s var(--ease-slow), color .7s var(--ease-slow), border-color .7s var(--ease-slow), transform .5s var(--ease-slow);
}
.btn:hover{ background: var(--gold); color:#060505; border-color: var(--gold); transform: translateY(-2px); }
.btn-solid{ background: var(--gold-grad); color:#0a0805; border-color:transparent; }
.btn-solid:hover{ filter: brightness(1.08); transform: translateY(-2px); }
.btn-block{ width:100%; justify-content:center; }

/* ---------------------------- Entrance overlay --------------------------- */
#entrance{
  position: fixed; inset:0; z-index: 999;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background: radial-gradient(ellipse at 50% 40%, #120e08 0%, #060505 70%);
  transition: opacity 1.05s var(--ease-slow), visibility 1.05s var(--ease-slow);
  text-align:center;
}
#entrance.hide{ opacity:0; visibility:hidden; pointer-events:none; }
#entrance .ent-logo{ width: 132px; height:132px; margin-bottom: 30px; opacity:.95; }
#entrance .ent-logo circle, #entrance .ent-logo path{ }
#entrance h1{
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing:.04em;
}
#entrance .ent-sub{
  font-family: var(--font-mono); font-size: 12px; letter-spacing:.3em; text-transform:uppercase;
  color: var(--muted); margin-top:14px;
}
#enter-btn{ margin-top: 44px; }

/* --------------------------------- Header -------------------------------- */
header.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  background: linear-gradient(180deg, rgba(6,5,5,.92), rgba(6,5,5,0));
  padding: 22px 0;
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand svg{ width:42px; height:42px; }
.brand-text{ font-family: var(--font-display); font-size:19px; letter-spacing:.03em; }
.brand-text b{ color: var(--gold-light); font-weight:700; }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing:.08em; text-transform:uppercase;
  color: var(--ink-dim);
  position:relative; padding: 4px 0;
  transition: color .5s var(--ease-slow);
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background: var(--gold);
  transition: width .5s var(--ease-slow);
}
.nav-links a:hover{ color: var(--gold-light); }
.nav-links a:hover::after{ width:100%; }
.nav-links .btn{ padding:11px 22px; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px;
}
.nav-toggle span{ width:24px; height:1px; background: var(--gold); display:block; transition: transform .4s var(--ease-slow), opacity .4s var(--ease-slow); }

@media (max-width: 900px){
  .nav-toggle{ display:flex; }
  .nav-links{
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px);
    background: #0a0806; flex-direction:column; align-items:flex-start; gap:0;
    padding: 100px 34px 40px;
    transform: translateX(100%);
    transition: transform .6s var(--ease-slow);
    border-left: 1px solid var(--gold-line);
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ padding: 16px 0; width:100%; border-bottom: 1px solid var(--line); }
  .nav-links .btn{ margin-top: 20px; }
}

/* ---------------------------------- Hero --------------------------------- */
.hero{
  min-height: 100vh;
  display:flex; align-items:center;
  position: relative;
  padding-top: 120px;
  background:
    radial-gradient(ellipse 60% 45% at 80% 15%, var(--gold-glow), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(212,175,55,.08), transparent 60%);
}
.hero-grid{ display:grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items:center; }
.hero h1{
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.06;
  letter-spacing: -.01em;
}
.hero .lede{ margin-top: 26px; font-size: 18px; color: var(--ink-dim); max-width: 480px; }
.hero-cta{ display:flex; gap:18px; margin-top: 40px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap: 42px; margin-top: 64px; }
.hero-stats .stat b{ display:block; font-family: var(--font-mono); font-size: 30px; color: var(--gold-light); }
.hero-stats .stat span{ font-size: 12px; color: var(--muted); text-transform:uppercase; letter-spacing:.08em; }

.hero-emblem{ position:relative; display:flex; justify-content:center; }
.hero-emblem svg{ width: 100%; max-width: 420px; animation: spin-slow 60s linear infinite; }
@keyframes spin-slow{ to{ transform: rotate(360deg); } }
.hero-emblem .crown-fixed{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.hero-emblem .crown-fixed svg{ width: 90px; animation:none; }

/* ------------------------- Decorative accent icons ------------------------- */
.hero-deco{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.hero-deco .deco-icon{ position:absolute; color: var(--gold); opacity:.14; }
.hero-deco .d1{ top: 8%;  left: 4%;  width: 86px; transform: rotate(-18deg); }
.hero-deco .d2{ top: 68%; left: 8%;  width: 60px; transform: rotate(12deg); }
.hero-deco .d3{ top: 14%; left: 46%; width: 46px; transform: rotate(8deg); opacity:.1; }
.hero-deco .d4{ bottom: 10%; left: 38%; width: 70px; transform: rotate(-10deg); }
.hero-deco .d5{ top: 22%; right: 3%; width: 64px; transform: rotate(16deg); opacity:.1; }
.hero .hero-grid{ position: relative; z-index: 1; }

.card-corner-mark{ position:absolute; top:16px; left:18px; width:22px; height:22px; color: var(--gold); opacity:.85; }

.about-grid-wrap{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items:center; }
.about-illustration{ position:relative; display:flex; align-items:center; justify-content:center; min-height: 280px; }
.about-illustration svg{ width:100%; max-width: 320px; }
@media (max-width: 900px){
  .about-grid-wrap{ grid-template-columns: 1fr; }
  .about-illustration{ order:-1; min-height:200px; }
  .about-illustration svg{ max-width: 220px; }
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-emblem{ order:-1; margin-bottom: 10px; }
  .hero-emblem svg{ max-width: 220px; }
  .hero-stats{ gap: 28px; flex-wrap:wrap; }
}

/* --------------------------------- Ticker -------------------------------- */
.ticker-wrap{
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0; overflow:hidden; background: var(--bg-alt);
}
.ticker{ display:flex; width: max-content; animation: ticker-scroll 42s linear infinite; }
.ticker:hover{ animation-play-state: paused; }
@keyframes ticker-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.ticker-item{
  display:flex; align-items:center; gap:14px;
  font-family: var(--font-mono); font-size: 14px; letter-spacing:.04em;
  color: var(--ink-dim); padding: 0 34px; white-space:nowrap;
}
.ticker-item b{ color: var(--gold-light); }
.ticker-item .dot{ width:5px; height:5px; border-radius:50%; background: var(--gold); }

/* -------------------------------- Services ------------------------------- */
.reveal{ opacity:0; transform: translateY(36px); transition: opacity var(--dur-reveal) var(--ease-slow), transform var(--dur-reveal) var(--ease-slow); }
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal:nth-child(2){ transition-delay: .08s; }
.reveal:nth-child(3){ transition-delay: .16s; }
.reveal:nth-child(4){ transition-delay: .24s; }

.card-stack{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; perspective: 1400px; }
.pcard{
  display:block;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(160deg, var(--bg-card), #0a0806);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 38px 30px;
  transition: transform var(--dur-card) var(--ease-slow), border-color var(--dur-card) var(--ease-slow), box-shadow var(--dur-card) var(--ease-slow);
  will-change: transform;
}
.pcard:hover{
  border-color: var(--gold-line);
  box-shadow: 0 26px 60px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(212,175,55,.06) inset;
}
.pcard .icon{ width:44px; height:44px; margin-bottom: 22px; color: var(--gold); }
.pcard h3{ font-size: 21px; margin-bottom: 12px; }
.pcard p{ color: var(--ink-dim); font-size: 14.5px; }
.pcard .card-link{
  display:inline-block; margin-top: 18px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing:.06em; text-transform:uppercase;
  color: var(--gold);
  transition: transform .5s var(--ease-slow);
}
.pcard:hover .card-link{ transform: translateX(4px); }

/* --------------------------------- Results --------------------------------- */
.metric-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.metric-card{
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 4px;
  padding: 32px 26px; text-align:center;
  transition: transform var(--dur-card) var(--ease-slow), border-color var(--dur-card) var(--ease-slow), box-shadow var(--dur-card) var(--ease-slow);
}
.metric-card:hover{ border-color: var(--gold-line); box-shadow: 0 26px 60px -20px rgba(0,0,0,.6); }
.metric-card .icon{ width:32px; height:32px; margin: 0 auto 16px; color: var(--gold); }
.metric-num{ font-family: var(--font-mono); font-size: 34px; color: var(--gold-light); }
.metric-label{ font-size: 13px; color: var(--muted); text-transform:uppercase; letter-spacing:.06em; margin-top: 8px; }
.metric-note{ font-size: 12.5px; color: var(--muted); margin-top: 18px; }

.gaming-callout{
  margin-top: 48px;
  padding: 32px 34px;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  background: linear-gradient(160deg, var(--bg-card), #0a0806);
}
.gaming-callout-head{ display:flex; align-items:flex-start; gap: 22px; }
.gaming-callout .icon{ width:34px; height:34px; color: var(--gold); flex-shrink:0; margin-top:2px; }
.gaming-callout h3{ font-size: 20px; margin-bottom: 10px; }
.gaming-callout-head p{ color: var(--ink-dim); font-size: 14.5px; line-height:1.7; }
@media (max-width: 600px){ .gaming-callout-head{ flex-direction:column; } }

.gaming-subgrid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--line);
}
.gaming-sub svg{ width:26px; height:26px; color: var(--gold); margin-bottom: 12px; }
.gaming-sub h4{ font-family: var(--font-display); font-size: 16px; margin-bottom: 6px; color: var(--gold-light); }
.gaming-sub p{ font-size: 13.5px; color: var(--muted); line-height:1.6; }
@media (max-width: 700px){ .gaming-subgrid{ grid-template-columns: 1fr; } }

@media (max-width: 900px){ .metric-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px){ .metric-grid{ grid-template-columns: 1fr; } }

/* ----------------------------- Partner marquee ----------------------------- */
.partner-marquee-wrap{ padding: 44px 0 0; }
.partner-marquee-label{
  text-align:center; font-family: var(--font-mono); font-size: 12px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--muted); margin-bottom: 26px;
}
.partner-marquee{
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow:hidden; background: var(--bg-alt);
}
.partner-track{ display:flex; align-items:center; width: max-content; animation: ticker-scroll 38s linear infinite; }
.partner-track:hover{ animation-play-state: paused; }
.partner-chip{
  display:flex; align-items:center; justify-content:center;
  width: 92px; height: 76px;
  margin: 0 16px;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  flex-shrink:0;
  filter: grayscale(65%) brightness(0.92);
  opacity: 0.82;
  transition: filter .4s var(--ease-slow), opacity .4s var(--ease-slow), transform .4s var(--ease-slow), border-color .4s var(--ease-slow);
}
.partner-chip.wide{ width: 172px; }
.partner-chip:hover{
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: translateY(-4px);
  border-color: var(--gold-line);
}
.partner-chip img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

@media (max-width: 900px){ .card-stack{ grid-template-columns: 1fr; } }

/* --------------------------------- Plans --------------------------------- */
.plans-tabs{
  display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 46px;
  border-bottom: 1px solid var(--line); padding-bottom: 26px;
}
.plan-tab{
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing:.06em; text-transform:uppercase;
  padding: 11px 20px; border: 1px solid var(--gold-line); border-radius: 2px;
  background: transparent; color: var(--ink-dim);
  transition: background .55s var(--ease-slow), color .55s var(--ease-slow), border-color .55s var(--ease-slow);
}
.plan-tab.active, .plan-tab:hover{ background: var(--gold); color:#0a0805; border-color: var(--gold); }

.plan-group{ display:none; }
.plan-group.active{ display:block; }
.plan-group-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:20px; margin-bottom: 34px; flex-wrap:wrap; }
.plan-group-head h3{ font-size: 26px; }
.plan-group-head p{ color: var(--muted); font-size: 14px; max-width: 440px; }

.plan-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-grid.single{ grid-template-columns: minmax(280px, 420px); }

.plan-card{
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 30px 30px;
  display:flex; flex-direction:column;
  position:relative;
  transition: transform var(--dur-card) var(--ease-slow), border-color var(--dur-card) var(--ease-slow), box-shadow var(--dur-card) var(--ease-slow);
}
.plan-card:hover{ border-color: var(--gold-line); box-shadow: 0 30px 70px -24px rgba(0,0,0,.65); }
.plan-card.featured{ border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold-line) inset; }
.plan-card .badge{
  position:absolute; top:-13px; right:24px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing:.1em; text-transform:uppercase;
  background: var(--gold-grad); color:#0a0805; padding: 5px 12px; border-radius: 2px;
}
.plan-num{ font-family: var(--font-mono); font-size: 12px; color: var(--gold); letter-spacing:.15em; margin-bottom: 10px; }
.plan-card h4{ font-size: 22px; margin-bottom: 6px; }
.plan-card .tier{ font-size: 13px; color: var(--muted); margin-bottom: 22px; }

.plan-price{ margin-bottom: 22px; }
.plan-price .amt{ font-family: var(--font-mono); font-size: 30px; color: var(--gold-light); }
.plan-price .per{ font-size: 12.5px; color: var(--muted); margin-top: 3px; }

.plan-feats{ margin-bottom: 30px; flex:1; }
.plan-feats li{
  display:flex; align-items:flex-start; gap:10px;
  font-size: 14.5px; color: var(--ink-dim);
  padding: 9px 0; border-top: 1px solid var(--line);
}
.plan-feats li:first-child{ border-top:none; }
.plan-feats li svg{ width:14px; height:14px; margin-top:3px; flex-shrink:0; color: var(--gold); }

.plan-note{
  margin-top: 30px; padding: 20px 24px;
  border: 1px dashed var(--gold-line); border-radius: 4px;
  font-size: 13.5px; color: var(--ink-dim);
  display:flex; gap:12px; align-items:flex-start;
}
.plan-note svg{ width:18px; height:18px; color: var(--gold); flex-shrink:0; margin-top:2px; }
.plan-note b{ color: var(--gold-light); }

@media (max-width: 900px){
  .plan-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------- About ---------------------------------- */
.about-wrap{ }
.about-grid{
  display:flex; flex-wrap:wrap; gap: 14px; margin-top: 44px;
}
.about-chip{
  border: 1px solid var(--gold-line);
  background: var(--bg-card);
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--gold-light);
  transition: background .6s var(--ease-slow), transform .5s var(--ease-slow);
}
.about-chip:hover{ background: var(--gold-grad); color:#0a0805; transform: translateY(-2px); }

/* ---------------------------------- Blog ----------------------------------- */
.blog-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card{
  display:block; color:inherit; text-decoration:none;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 4px;
  padding: 30px 28px;
  transition: transform var(--dur-card) var(--ease-slow), border-color var(--dur-card) var(--ease-slow), box-shadow var(--dur-card) var(--ease-slow);
}
.blog-card:hover{ border-color: var(--gold-line); box-shadow: 0 26px 60px -20px rgba(0,0,0,.6); }
.blog-meta{
  font-family: var(--font-mono); font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--gold);
}
.blog-card h3{ font-size: 19px; margin: 12px 0 10px; line-height:1.3; }
.blog-card p{ color: var(--ink-dim); font-size: 14.5px; }
.blog-card .card-link{
  display:inline-block; margin-top: 16px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing:.06em; text-transform:uppercase;
  color: var(--gold);
  transition: transform .5s var(--ease-slow);
}
.blog-card:hover .card-link{ transform: translateX(4px); }

@media (max-width: 700px){ .blog-grid{ grid-template-columns: 1fr; } }

/* ---------------------------------- FAQ ----------------------------------- */
.faq-list{ max-width: 800px; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width:100%; background:none; border:none; text-align:left;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding: 26px 4px; color: var(--ink); font-family: var(--font-display); font-size: 18px;
}
.faq-q .plus{
  width:22px; height:22px; position:relative; flex-shrink:0;
  transition: transform .6s var(--ease-slow);
}
.faq-q .plus::before, .faq-q .plus::after{
  content:''; position:absolute; background: var(--gold); top:50%; left:50%;
}
.faq-q .plus::before{ width:14px; height:1px; transform: translate(-50%,-50%); }
.faq-q .plus::after{ width:1px; height:14px; transform: translate(-50%,-50%); transition: opacity .5s var(--ease-slow); }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden;
  transition: max-height .7s var(--ease-slow), padding .7s var(--ease-slow);
  color: var(--ink-dim); font-size: 15px; padding: 0 4px;
}
.faq-item.open .faq-a{ max-height: 260px; padding: 0 4px 26px; }

/* -------------------------------- Contact -------------------------------- */
.contact-wrap{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.contact-info .item{ margin-bottom: 30px; }
.contact-info .item span{ display:block; font-family: var(--font-mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); margin-bottom:6px; }
.contact-info .item a, .contact-info .item p{ font-size: 17px; color: var(--ink); }

.field{ margin-bottom: 22px; }
.field label{ display:block; font-family: var(--font-mono); font-size: 11px; letter-spacing:.12em; text-transform:uppercase; color: var(--muted); margin-bottom: 9px; }
.field input, .field textarea{
  width:100%; background: var(--bg-card); border: 1px solid var(--line); border-radius: 2px;
  padding: 14px 16px; color: var(--ink); font-family: var(--font-body); font-size: 15px;
  transition: border-color .5s var(--ease-slow);
}
.field input:focus, .field textarea:focus{ outline:none; border-color: var(--gold); }
.field textarea{ resize: vertical; min-height: 120px; }

/* --------------------------------- Footer -------------------------------- */
footer{ border-top: 1px solid var(--line); padding: 56px 0 34px; }
.footer-row{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; }
.footer-brand{ display:flex; align-items:center; gap:10px; }
.footer-brand svg{ width:30px; height:30px; }
footer .copy{ font-family: var(--font-mono); font-size:12px; color: var(--muted); }
footer .fine{ font-size: 12px; color: var(--muted); margin-top: 14px; max-width: 640px; }

@media (max-width: 900px){
  .contact-wrap{ grid-template-columns: 1fr; }
  .section{ padding: 84px 0; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--gold); outline-offset: 3px;
}

/* ============================ AI Chatbot Widget ============================ */
.chat-widget{ position: fixed; right: 24px; bottom: 24px; z-index: 600; }

.chat-toggle{
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold-grad); border: none;
  display:flex; align-items:center; justify-content:center;
  color: #0a0805; box-shadow: 0 14px 34px -10px rgba(212,175,55,.55);
  transition: transform .5s var(--ease-slow), box-shadow .5s var(--ease-slow);
}
.chat-toggle:hover{ transform: translateY(-3px) scale(1.04); }
.chat-toggle svg{ width: 26px; height: 26px; }

.chat-panel{
  position: absolute; right: 0; bottom: 76px;
  width: 350px; max-width: calc(100vw - 40px);
  max-height: 70vh;
  background: #0b0906;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
  display:flex; flex-direction:column;
  opacity:0; transform: translateY(16px) scale(.98); pointer-events:none;
  transition: opacity .5s var(--ease-slow), transform .5s var(--ease-slow);
  overflow:hidden;
}
.chat-panel.open{ opacity:1; transform: translateY(0) scale(1); pointer-events:auto; }

.chat-head{
  display:flex; align-items:center; gap:12px;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(212,175,55,.08), transparent);
}
.chat-head svg{ width:34px; height:34px; flex-shrink:0; }
.chat-title{ font-family: var(--font-display); font-size: 15px; color: var(--ink); }
.chat-status{ font-family: var(--font-mono); font-size: 11px; color: var(--muted); display:flex; align-items:center; gap:6px; margin-top:3px; }
.dot-live{ width:6px; height:6px; border-radius:50%; background:#5fd97a; display:inline-block; }

.chat-messages{
  flex:1; overflow-y:auto; padding: 18px 20px; display:flex; flex-direction:column; gap:12px;
  min-height: 160px; max-height: 320px;
}
.chat-msg{ font-size: 14px; line-height:1.5; padding: 11px 14px; border-radius: 6px; max-width: 88%; }
.chat-msg.bot{ background: var(--bg-card); border:1px solid var(--line); color: var(--ink-dim); align-self:flex-start; border-bottom-left-radius:2px; }
.chat-msg.user{ background: var(--gold-grad); color:#0a0805; align-self:flex-end; border-bottom-right-radius:2px; }

.chat-quick{ display:flex; flex-wrap:wrap; gap:8px; padding: 0 20px 14px; }
.chat-quick button{
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing:.03em;
  border: 1px solid var(--gold-line); background: transparent; color: var(--gold-light);
  padding: 8px 13px; border-radius: 999px;
  transition: background .5s var(--ease-slow), color .5s var(--ease-slow);
}
.chat-quick button:hover{ background: var(--gold); color:#0a0805; }

.chat-input-row{
  display:flex; align-items:center; gap:8px;
  padding: 14px 16px; border-top: 1px solid var(--line);
}
.chat-input-row input{
  flex:1; background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 16px; color: var(--ink); font-family: var(--font-body); font-size: 13.5px;
  transition: border-color .5s var(--ease-slow);
}
.chat-input-row input:focus{ outline:none; border-color: var(--gold); }
.chat-input-row button{
  width: 38px; height:38px; border-radius:50%; flex-shrink:0;
  background: var(--gold-grad); border:none; color:#0a0805;
  display:flex; align-items:center; justify-content:center;
  transition: transform .4s var(--ease-slow);
}
.chat-input-row button:hover{ transform: scale(1.06); }
.chat-input-row button svg{ width:16px; height:16px; }

.chat-telegram{
  display:flex; align-items:center; justify-content:center; gap:9px;
  padding: 13px; margin: 0 16px 16px;
  border-radius: 999px; border: 1px solid var(--gold-line);
  font-family: var(--font-mono); font-size: 12px; letter-spacing:.06em; text-transform:uppercase;
  color: var(--gold-light);
  transition: background .5s var(--ease-slow), color .5s var(--ease-slow);
}
.chat-telegram svg{ width:16px; height:16px; }
.chat-telegram:hover{ background: var(--gold); color:#0a0805; }

@media (max-width: 500px){
  .chat-widget{ right: 16px; bottom: 16px; }
  .chat-panel{ width: calc(100vw - 32px); bottom: 74px; }
}

/* ======================= Service detail & Blog pages ======================= */
.page-hero{
  padding: 168px 0 80px;
  background:
    radial-gradient(ellipse 60% 45% at 80% 10%, var(--gold-glow), transparent 60%);
  border-bottom: 1px solid var(--line);
}
.back-link{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing:.06em; text-transform:uppercase;
  color: var(--gold); margin-bottom: 28px;
  transition: transform .5s var(--ease-slow);
}
.back-link:hover{ transform: translateX(-4px); }
.page-hero h1{ font-size: clamp(34px, 5vw, 54px); max-width: 720px; }
.page-hero .lede{ margin-top: 20px; font-size: 17px; color: var(--ink-dim); max-width: 620px; }

.service-body{ max-width: 760px; }
.service-body h2{ font-size: 26px; margin: 52px 0 18px; }
.service-body h2:first-child{ margin-top:0; }
.service-body p{ color: var(--ink-dim); font-size: 16px; line-height:1.75; margin-bottom: 16px; }
.service-feats{ margin: 22px 0 0; display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; }
.service-feats li{
  display:flex; align-items:flex-start; gap:10px;
  font-size: 15px; color: var(--ink-dim); padding: 4px 0;
}
.service-feats li svg{ width:15px; height:15px; margin-top:4px; flex-shrink:0; color: var(--gold); }
@media (max-width: 640px){ .service-feats{ grid-template-columns: 1fr; } }

.service-cta{
  margin-top: 48px; padding: 34px 32px;
  border: 1px solid var(--gold-line); border-radius: 6px;
  background: var(--bg-card);
  display:flex; align-items:center; justify-content:space-between; gap: 24px; flex-wrap:wrap;
}
.service-cta h3{ font-size: 20px; margin-bottom: 6px; }
.service-cta p{ color: var(--muted); font-size: 14px; margin:0; }

.related-services{ margin-top: 64px; }
.related-services h2{ font-size: 20px; margin-bottom: 22px; }
.related-list{ display:flex; flex-wrap:wrap; gap: 10px; }
.related-list a{
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing:.04em;
  border: 1px solid var(--gold-line); border-radius: 999px; padding: 10px 18px;
  color: var(--gold-light);
  transition: background .5s var(--ease-slow), color .5s var(--ease-slow);
}
.related-list a:hover{ background: var(--gold); color:#0a0805; }

/* Blog listing / post page */
.blog-post{ max-width: 720px; margin: 0 auto 90px; padding-top: 60px; border-top: 1px solid var(--line); }
.blog-post:first-of-type{ border-top:none; padding-top:0; }
.blog-post .blog-meta{ display:block; margin-bottom: 14px; }
.blog-post h2{ font-family: var(--font-display); font-size: 30px; margin-bottom: 20px; }
.blog-post p{ color: var(--ink-dim); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
