/* ============================================================
   BlackHatSEO.in — Dark, textured, neon-orange / metallic silver
   Matches the current HTML markup across all 10 pages.
   ============================================================ */

:root {
  --black: #000000;
  --bg: #060607;
  --panel: #101013;
  --panel-2: #0a0a0c;
  --card: #121216;
  --border: #232329;
  --border-soft: #1a1a1f;
  --text: #ececef;
  --muted: #9b9ba4;
  --body-text: #c7c7cf;
  --orange: #ff6a00;
  --orange-bright: #ff8c1a;
  --orange-glow: rgba(255, 106, 0, 0.35);
  --silver-hi: #f7f7fa;
  --silver-mid: #c3c8d2;
  --silver-lo: #8d93a1;
  --silver-dim: #6f7581;
  --wa-green: #25d366;
  --tg-blue: #229ed9;
  --radius: 14px;
  --container: 1180px;
  --font: "Poppins", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Space Grotesk", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.72;
  font-size: 16.5px;
  overflow-x: hidden;
}

/* ---- Textural background: ember glows + noise ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(255, 106, 0, 0.09), transparent 60%),
    radial-gradient(700px 420px at -10% 30%, rgba(255, 106, 0, 0.05), transparent 55%),
    radial-gradient(1000px 600px at 50% 110%, rgba(141, 147, 161, 0.07), transparent 60%),
    linear-gradient(180deg, #08080a 0%, #050506 40%, #070708 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: var(--orange-bright); text-decoration: none; }
a:hover { color: var(--orange); }
ul { list-style: none; }
::selection { background: rgba(255, 106, 0, 0.85); color: #140800; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

main { display: block; }

/* Sticky-header-safe anchor jumps */
[id] { scroll-margin-top: 92px; }

/* Every section breathes by default; inline padding-top overrides still work */
main > section { padding: 78px 0; }

/* ============ Typography ============ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
}

.accent {
  color: var(--orange-bright);
  text-shadow: 0 0 26px rgba(255, 106, 0, 0.35);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange-bright);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.section-head.center .eyebrow,
.cta-band .eyebrow { justify-content: center; }
.section-head.center .eyebrow::after {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(270deg, var(--orange), transparent);
}

.section-head { margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.02rem;
}
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ============ Header / Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 6, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  white-space: nowrap;
}
.logo span { color: var(--orange-bright); }
.logo small {
  display: block;
  font-family: var(--font);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--silver-lo);
  margin-top: 3px;
}

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: block;
  padding: 9px 13px;
  color: var(--silver-mid);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.main-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.main-nav a.active {
  color: var(--orange-bright);
  background: rgba(255, 106, 0, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 0, 0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--silver-hi);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  color: #140800;
  box-shadow: 0 0 22px var(--orange-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(255, 106, 0, 0.45); color: #140800; }

.btn-outline {
  background: linear-gradient(180deg, rgba(199, 204, 214, 0.08), rgba(141, 147, 161, 0.04));
  border-color: rgba(195, 200, 210, 0.4);
  color: var(--silver-mid);
}
.btn-outline:hover {
  border-color: var(--silver-hi);
  color: var(--silver-hi);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(195, 200, 210, 0.15);
}

.btn-wa { background: var(--wa-green); color: #06210f; box-shadow: 0 0 18px rgba(37, 211, 102, 0.3); }
.btn-wa:hover { transform: translateY(-2px); background: #2fe476; color: #06210f; }
.btn-tg { background: var(--tg-blue); color: #041520; box-shadow: 0 0 18px rgba(34, 158, 217, 0.3); }
.btn-tg:hover { transform: translateY(-2px); background: #2fb1ec; color: #041520; }

/* ============ Texture grid overlay (hero / page-hero) ============ */
.texture-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 30%, #000 15%, transparent 78%);
  mask-image: radial-gradient(ellipse 90% 75% at 50% 30%, #000 15%, transparent 78%);
}

/* ============ Hero (home) ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(720px 380px at 88% 0%, rgba(255, 106, 0, 0.12), transparent 62%);
}
.hero > .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 106, 0, 0.4);
  background: rgba(255, 106, 0, 0.08);
  color: var(--orange-bright);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa-green);
  animation: dot-pulse 2.2s infinite;
}
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  margin-bottom: 20px;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 660px;
  margin-bottom: 30px;
}
.hero-sub strong { color: var(--silver-mid); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border-soft);
  padding-top: 26px;
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--orange-bright);
  text-shadow: 0 0 18px rgba(255, 106, 0, 0.35);
  line-height: 1.15;
}
.stat span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* Ranking-snapshot visual */
.hero-visual {
  position: relative;
  background: linear-gradient(180deg, #131318, #0b0b0e);
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 16px;
  padding: 26px 22px 12px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 34px rgba(255, 106, 0, 0.10);
  transform: rotate(-1.4deg);
  animation: hero-float 7s ease-in-out infinite alternate;
}
@keyframes hero-float {
  from { transform: rotate(-1.4deg) translateY(0); }
  to   { transform: rotate(-1.4deg) translateY(-10px); }
}
.rank-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--border-soft);
}
.rank-row:last-of-type { border-bottom: none; }
.rank-pos {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 106, 0, 0.10);
  border: 1px solid rgba(255, 106, 0, 0.45);
  color: var(--orange-bright);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
}
.rank-row.win .rank-pos {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  border-color: transparent;
  color: #140800;
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.4);
}
.rank-kw {
  flex: 1;
  min-width: 0;
  color: var(--silver-mid);
  font-size: 0.87rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-vol {
  color: var(--muted);
  font-size: 0.74rem;
  white-space: nowrap;
}
.rank-row.win .rank-vol { color: var(--wa-green); }
.rank-row.win .rank-vol::before {
  content: "\25B2 ";
  font-size: 0.66rem;
}
.visual-tag {
  position: absolute;
  top: -13px;
  right: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: #140800;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.45);
}

/* ============ Inner-page hero ============ */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 64px 0 58px;
  border-bottom: 1px solid var(--border-soft);
  background:
    radial-gradient(700px 320px at 80% 0%, rgba(255, 106, 0, 0.10), transparent 60%),
    linear-gradient(180deg, #0a0a0c, #060607);
}
.page-hero > .container { position: relative; }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 14px;
}
.page-hero p,
.page-hero .hero-sub {
  color: var(--muted);
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.04rem;
}

.breadcrumb {
  font-size: 0.82rem;
  margin-bottom: 18px;
  color: var(--silver-lo);
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--silver-lo); }
.breadcrumb a:hover { color: var(--orange-bright); }
.breadcrumb .sep { margin: 0 9px; color: rgba(255, 138, 26, 0.55); }
.breadcrumb span:not(.sep) { color: var(--orange-bright); font-weight: 600; }

/* ============ Two-column split sections ============ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: start;
}

/* Prose blocks */
.content-block { max-width: 880px; }
.content-block p { color: var(--body-text); margin-bottom: 17px; }
.content-block strong { color: var(--text); }
.content-block a { font-weight: 600; }
.content-block h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  margin: 40px 0 14px;
}
.content-block h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--silver-mid);
}
.content-block ul { margin: 0 0 20px; }
.content-block ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--body-text);
}
.content-block ul li::before {
  content: "\25B8";
  position: absolute;
  left: 2px;
  color: var(--orange);
  font-weight: 800;
}

/* Check lists */
.check-list li,
ul.check-list li {
  position: relative;
  padding-left: 29px;
  margin-bottom: 11px;
  color: var(--body-text);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "\25B8";
  position: absolute;
  left: 3px;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}

/* ============ Grids & cards ============ */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }

.card {
  background: linear-gradient(180deg, var(--card) 0%, var(--panel-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.card:hover {
  border-color: rgba(255, 106, 0, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 106, 0, 0.08);
}
.card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.93rem; }

.card-icon {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(255, 106, 0, 0.11);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--orange-bright);
  margin-bottom: 17px;
}
.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange-bright);
}
.card-link:hover { color: var(--orange); }

/* Compare tables inside cards */
.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--border); }
table.compare { width: 100%; border-collapse: collapse; }
table.compare th {
  background: rgba(255, 106, 0, 0.10);
  color: var(--orange-bright);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 11px 14px;
  text-align: left;
  white-space: nowrap;
}
table.compare td {
  padding: 12px 14px;
  font-size: 0.89rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border-soft);
}
table.compare td:first-child { color: var(--text); font-weight: 700; white-space: nowrap; }
table.compare tr:last-child td { border-bottom: none; }
table.compare tr.hl td { background: rgba(255, 106, 0, 0.07); }
table.compare tr.hl td:first-child { color: var(--orange-bright); }

/* ============ Process steps ============ */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.step {
  position: relative;
  counter-increment: step;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px 22px;
  transition: border-color 0.2s ease;
}
.step:hover { border-color: rgba(255, 106, 0, 0.5); }
.step-num { display: none; }
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(180deg, var(--orange-bright), #7a3400);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.88rem; }

/* ============ Owner spotlight ============ */
.owner-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(18, 18, 22, 0.9) 45%);
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: var(--radius);
  padding: 28px;
}
.avatar {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: #140800;
  background: linear-gradient(135deg, var(--silver-hi), var(--silver-lo));
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.6), 0 0 26px var(--orange-glow);
}
.owner-card h3 { margin-bottom: 5px; }
.owner-role {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-bright);
  margin-bottom: 12px;
}
.owner-card p:not(.owner-role) { color: var(--muted); font-size: 0.94rem; }

/* ============ City / niche tags ============ */
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.city-tags span {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--silver-mid);
  font-size: 0.83rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.city-tags span:hover {
  border-color: rgba(255, 106, 0, 0.55);
  color: var(--orange-bright);
  background: rgba(255, 106, 0, 0.07);
}

/* ============ Timeline (about) ============ */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 34px;
  border-left: 2px solid var(--border);
}
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -43px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--orange);
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.5);
}
.tl-year {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange-bright);
  background: rgba(255, 106, 0, 0.10);
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
}
.tl-item h3 { font-size: 1.1rem; margin-bottom: 7px; }
.tl-item p { color: var(--muted); font-size: 0.93rem; }

/* ============ FAQ ============ */
.faq-list { max-width: 860px; margin: 0 auto; }
details.faq {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
details.faq[open] { border-color: rgba(255, 106, 0, 0.4); }
details.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 19px 54px 19px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  user-select: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.2s ease;
  line-height: 1;
}
details.faq[open] summary::after { content: "\2013"; }
details.faq[open] summary { color: var(--orange-bright); }
.faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.94rem;
}
.faq-body a { font-weight: 600; }

/* ============ CTA band ============ */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(500px 260px at 15% 50%, rgba(255, 106, 0, 0.14), transparent 65%),
    radial-gradient(420px 240px at 85% 50%, rgba(195, 200, 210, 0.08), transparent 60%),
    linear-gradient(180deg, #101013, #08080a);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 58px 28px;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 10%, transparent 75%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 660px; margin: 0 auto; font-size: 0.99rem; }
.cta-band p a { font-weight: 600; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

/* ============ Footer ============ */
.site-footer {
  background: #040405;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 38px;
  padding-bottom: 44px;
}
.footer-grid h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange-bright);
  margin-bottom: 18px;
}
.footer-about .logo { font-size: 1.3rem; }
.footer-about p { color: var(--muted); font-size: 0.88rem; margin: 16px 0 18px; max-width: 340px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.footer-grid ul a:hover { color: var(--orange-bright); padding-left: 5px; }

.footer-contact li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--orange-bright);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(2px);
}
.footer-contact a { word-break: break-word; }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--silver-lo);
}
.footer-bottom a { color: var(--silver-lo); }
.footer-bottom a:hover { color: var(--orange-bright); }

/* ============ Floating WhatsApp / Telegram buttons ============ */
.float-btns {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s ease;
}
.float-btn svg { width: 27px; height: 27px; fill: #fff; }
.float-btn:hover { transform: scale(1.1); }
.float-btn.wa { background: var(--wa-green); animation: wa-pulse 2.6s infinite; }
.float-btn.wa:hover { background: #2fe476; }
.float-btn.tg { background: var(--tg-blue); }
.float-btn.tg:hover { background: #2fb1ec; }
.float-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: #15151a;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.float-btn:hover .float-label,
.float-btn:focus-visible .float-label { opacity: 1; }

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 6px 22px rgba(0, 0, 0, 0.55); }
  70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 6px 22px rgba(0, 0, 0, 0.55); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 6px 22px rgba(0, 0, 0, 0.55); }
}

/* ============ Contact page ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 21px 22px;
  margin-bottom: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
a.contact-card:hover {
  border-color: rgba(255, 106, 0, 0.55);
  transform: translateY(-2px);
  color: inherit;
}
.contact-card h3 { font-size: 0.99rem; margin-bottom: 4px; }
.contact-card p { color: var(--muted); font-size: 0.9rem; word-break: break-word; }
.cc-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(255, 106, 0, 0.11);
  border: 1px solid rgba(255, 106, 0, 0.4);
  color: var(--orange-bright);
}
.contact-card[href*="wa.me"] .cc-icon {
  background: rgba(37, 211, 102, 0.10);
  border-color: rgba(37, 211, 102, 0.45);
  color: var(--wa-green);
}
.contact-card[href*="t.me"] .cc-icon {
  background: rgba(34, 158, 217, 0.10);
  border-color: rgba(34, 158, 217, 0.45);
  color: var(--tg-blue);
}
.cc-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Form card */
.form-card {
  background: linear-gradient(180deg, var(--card), var(--panel-2));
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.form-card h2 { font-size: 1.5rem; margin-bottom: 10px; }
.form-card > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--silver-mid);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #0c0c0f;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  padding: 12px 15px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--silver-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ff8c1a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}
.field textarea { min-height: 130px; resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: var(--silver-lo);
  margin-top: 14px;
  line-height: 1.55;
}
.form-note a { color: var(--orange-bright); }

/* ============ Reveal-on-scroll (JS adds html.js first) ============ */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
html.js .reveal.visible {
  opacity: 1;
  transform: none;
}

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

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero > .container { gap: 40px; }
  .hero-visual { transform: rotate(0); }
  @keyframes hero-float {
    from { transform: translateY(0); }
    to   { transform: translateY(-8px); }
  }
}

@media (max-width: 900px) {
  main > section { padding: 58px 0; }
  .hero { padding: 62px 0 58px; }
  .hero > .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin: 6px auto 0; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .section-head { margin-bottom: 38px; }
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 6, 7, 0.98);
    border-bottom: 1px solid var(--border);
    display: none;
    padding: 12px 24px 18px;
  }
  .main-nav.open { display: block; animation: nav-drop 0.22s ease; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 12px 14px; }
}
@keyframes nav-drop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .float-label { display: none; }
  .form-card { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { justify-content: center; text-align: center; }
  .owner-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 20px; }
  .timeline { padding-left: 26px; }
  .tl-item::before { left: -35px; width: 13px; height: 13px; }
  .logo { font-size: 1.1rem; }
  .btn { padding: 12px 20px; }
}
