/* ====================== DESIGN TOKENS ====================== */
:root {
  /* Backgrounds */
  --bg:   #09090b;
  --bg1:  #0f0f12;
  --bg2:  #111115;
  --bg3:  #16161c;
  --bg4:  #1a1a22;
  --card: #111115;
  --card2:#16161c;

  /* Red palette */
  --red:         #e53935;
  --red2:        #ff5252;
  --red3:        #ef5350;
  --red-dim:     rgba(229, 57, 53, .10);
  --red-dim2:    rgba(229, 57, 53, .18);
  --red-border:  rgba(229, 57, 53, .22);
  --red-glow:    rgba(229, 57, 53, .35);

  /* Gold palette */
  --gold:        #f5b800;
  --gold2:       #ffc107;
  --gold-dim:    rgba(245, 184, 0, .12);
  --gold-border: rgba(245, 184, 0, .25);

  /* Green palette */
  --green:        #00e676;
  --green-dim:    rgba(0, 230, 118, .10);
  --green-border: rgba(0, 230, 118, .20);

  /* Text */
  --white: #f4f1eb;
  --muted: rgba(244, 241, 235, .52);
  --faint: rgba(244, 241, 235, .22);

  /* Borders */
  --border:  rgba(255, 255, 255, .06);
  --border2: rgba(255, 255, 255, .10);
  --border3: rgba(255, 255, 255, .15);

  /* Typography */
  --f-head: 'Fira Sans', sans-serif;
  --f-body: 'Geologica', sans-serif;
  --f-logo: 'Days One', sans-serif;

  /* Radius */
  --r:  8px;
  --r2: 14px;
  --r3: 20px;
  --r4: 28px;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);

  /* Shadows */
  --shadow-card: 0 2px 24px rgba(0, 0, 0, .50);
  --shadow-glow: 0 8px 40px rgba(229, 57, 53, .25);

  /* Spacing scale */
  --section-v: clamp(48px, 8vw, 96px);
  --gap-sm:    clamp(16px, 4vw, 40px);
}

/* ====================== RESET ====================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar        { width: 3px; background: var(--bg); }
::-webkit-scrollbar-thumb  { background: rgba(229, 57, 53, .3); border-radius: 3px; }
:focus-visible             { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
a    { text-decoration: none; color: inherit; }
img  { display: block; max-width: 100%; }
ul   { list-style: none; }

/* ====================== UTILITY ====================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gap-sm);
}
svg.ic {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  flex-shrink: 0;
}

/* ====================== TYPOGRAPHY ====================== */
h1, h2 {
  font-family: var(--f-head);
  letter-spacing: .03em;
  line-height: 1.5cap;
  text-transform: uppercase;
}
h3 {
  font-family: var(--f-head);
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* ====================== ANIMATIONS ====================== */
@keyframes pulseRed {
  0%   { box-shadow: 0 0 0 0 rgba(229, 57, 53, .6); }
  70%  { box-shadow: 0 0 0 8px rgba(229, 57, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}
@keyframes pulseGold {
  0%   { box-shadow: 0 0 0 0 rgba(245, 184, 0, .6); }
  70%  { box-shadow: 0 0 0 8px rgba(245, 184, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 184, 0, 0); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
@keyframes scanline {
  0%   { transform: translateY(-2px); }
  100% { transform: translateY(100vh); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .2s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px var(--red-glow);
}
.btn-primary:hover {
  background: #d32f2f;
  box-shadow: 0 8px 36px rgba(229, 57, 53, .5);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .05);
  color: var(--white);
  border: 1px solid var(--border2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .2);
}

.btn-outline-red {
  background: transparent;
  color: var(--red2);
  border: 1px solid var(--red-border);
}
.btn-outline-red:hover {
  background: var(--red-dim);
  border-color: rgba(229, 57, 53, .4);
}

.btn-sm  { font-size: .78rem; padding: 9px 18px;  border-radius: 50px; }
.btn-md  { font-size: .85rem; padding: 13px 26px; border-radius: 50px; }
.btn-lg  { font-size: .9rem;  padding: 15px 30px; border-radius: 50px; width: 100%; }

/* ====================== BADGES ====================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 30px;
}
.badge-red   { background: var(--red-dim2); border: 1px solid var(--red-border); color: rgba(255, 100, 100, .9); }
.badge-green { background: var(--green-dim); border: 1px solid var(--green-border); color: #69f0ae; }
.badge-gold  { background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold); }

/* ====================== SECTIONS ====================== */
.section {
  padding: var(--section-v) 0;
}
.section-bg1 {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-bg-red {
  background: linear-gradient(180deg, #0f0606 0%, #0a0404 100%);
  border-top: 1px solid var(--red-border);
  border-bottom: 1px solid var(--red-border);
}

/* Section header atoms */
.s-eyebrow {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(229, 80, 80, .85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.s-eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.s-eyebrow--center { justify-content: center; }

.s-head {
  font-size: clamp(1.4rem, 4.5vw, 3.4rem);
  margin-bottom: 14px;
}
.s-sub {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
  max-width: 540px;
}

/* Section header layout helpers */
.s-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.s-header-block {
  margin-bottom: clamp(28px, 4vw, 48px);
}
.s-header-center {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 52px);
}

/* ====================== CARD BASE ====================== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
}

/* ====================== PULSE DOTS ====================== */
.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseRed 2s infinite;
  flex-shrink: 0;
}
.pulse-dot--gold {
  background: var(--gold);
  animation: pulseGold 2s infinite;
}

/* ====================== FORM FIELDS ====================== */
.field {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--f-body);
  font-size: .88rem;
  outline: none;
  -webkit-appearance: none;
  transition: border-color .2s, background .2s;
}
.field:focus {
  border-color: rgba(229, 57, 53, .45);
  background: rgba(255, 255, 255, .06);
}
.field::placeholder { color: var(--faint); }
.field--err {
  border-color: var(--red);
  animation: shake .32s ease;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ====================== CUSTOM SELECT ====================== */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
  font-family: var(--f-body);
}
.select-trigger {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--white);
  font-size: .88rem;
  font-family: var(--f-body);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.select-trigger:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(229, 57, 53, .3);
}
.custom-select.open .select-trigger {
  border-color: rgba(229, 57, 53, .5);
  background: rgba(255, 255, 255, .06);
}
.custom-select--err .select-trigger {
  border-color: var(--red);
  animation: shake .32s ease;
}
.select-value         { flex: 1; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.select-value--empty  { color: var(--faint); }
.select-arrow         { flex-shrink: 0; transition: transform .25s var(--ease); }
.custom-select.open .select-arrow { transform: rotate(180deg); }

.select-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  overflow: hidden;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, visibility .18s, transform .18s var(--ease);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .6);
}
.custom-select.open .select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.select-option {
  padding: 12px 16px;
  font-size: .87rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .13s;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.select-option:last-child       { border-bottom: none; }
.select-option:hover            { background: var(--red-dim); color: var(--white); }
.select-option--selected {
  background: var(--red-dim2);
  color: var(--white);
  border-left: 2px solid var(--red);
  padding-left: 14px;
}
@media (max-width: 600px) {
  .select-dropdown { max-height: 260px; overflow-y: auto; }
}

/* ====================== FORM SUCCESS ====================== */
.form-success {
  display: none;
  text-align: center;
  padding: 18px;
  background: rgba(0, 230, 118, .07);
  border: 1px solid rgba(0, 230, 118, .18);
  border-radius: var(--r);
  margin-top: 10px;
}
.form-success__icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 230, 118, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--green);
}
.form-success p { color: #69f0ae; font-weight: 700; font-size: .88rem; line-height: 1.5; }

.form-notice {
  font-size: .67rem;
  text-align: center;
  color: var(--faint);
  margin-top: 10px;
  line-height: 1.6;
}

/* ====================== REVEAL ANIMATION ====================== */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.rv.in { opacity: 1; transform: none; }

/* ====================== MODAL ====================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r3);
  padding: clamp(24px, 4vw, 36px);
  width: 100%;
  max-width: 440px;
  transform: translateY(16px) scale(.97);
  transition: transform .25s var(--ease);
  position: relative;
  max-height: 90vh;
  
}
.modal-overlay.open .modal-box { transform: none; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all .2s;
}
.modal-close:hover { background: rgba(255, 255, 255, .12); color: var(--white); }

.modal-title {
  font-family: var(--f-head);
  font-size: 1.05rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.modal-sub {
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ====================== TOAST ====================== */
.toast-container {
  position: fixed;
  bottom: 84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: 90%;
  max-width: 400px;
}
.toast {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 12px 18px;
  font-size: .84rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(18px);
  opacity: 0;
  transition: all .28s var(--ease);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}
.toast.show          { transform: none; opacity: 1; }
.toast--success      { border-color: rgba(0, 230, 118, .3); }
.toast--error        { border-color: rgba(229, 57, 53, .3); }
.toast__dot          { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.toast--success .toast__dot { background: var(--green); }
.toast--error   .toast__dot { background: var(--red); }

/* ====================== NAV ====================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--gap-sm);
  background: rgba(9, 9, 11, .65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav.scrolled { background: rgba(9, 9, 11, .97); }

.logo {
  font-family: var(--f-logo);
  font-size: 1.55rem;
  letter-spacing: .06em;
  color: var(--white);
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.logo em { color: var(--red); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-tel {
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  background: var(--red-dim);
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid var(--red-border);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .2s;
}
.nav-tel:hover { background: var(--red-dim2); }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  z-index: 1000;
  width: 0%;
  transition: width .1s linear;
}

/* ====================== HERO ====================== */
.hero {
  min-height: 100dvh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 460px;
  position: relative;
  
  background: var(--bg);
}

/* Hero background layers */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 20%, transparent 75%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(229, 57, 53, .08) 0%, transparent 60%);
  animation: breathe 10s ease-in-out infinite;
}
.hero-glow--secondary {
  position: absolute;
  bottom: -30%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(229, 57, 53, .04) 0%, transparent 65%);
  animation: breathe 14s 5s ease-in-out infinite;
}
.hero-scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, .35) 50%, transparent);
  animation: scanline 7s linear infinite;
  opacity: .45;
}

/* Hero content */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 80px) 0;
  padding-right: clamp(24px, 3vw, 48px);
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(229, 57, 53, .08);
  border: 1px solid var(--red-border);
  color: rgba(255, 110, 110, .85);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 7px 16px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 26px;
  animation: fadeUp .5s ease both;
}
.hero-h1 {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  animation: fadeUp .5s .07s ease both;
  line-height: 1.1;
}
.hero-h1 .text-red  { color: var(--red); }
.hero-h1 .text-gold { color: var(--gold); }

.hero-tagline {
  font-size: clamp(.88rem, 1.6vw, 1.02rem);
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin: 18px 0 30px;
  animation: fadeUp .5s .14s ease both;
}
.hero-tagline strong { color: var(--white); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeUp .5s .2s ease both;
}

.hero-stats {
  display: flex;
  animation: fadeUp .5s .26s ease both;
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  width: fit-content;
}
.hero-stat {
  padding: 16px 22px;
  text-align: center;
  position: relative;
}
.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border);
}
.hero-stat__number {
  font-family: var(--f-head);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--white);
}
.hero-stat__number--gold { color: var(--gold); }
.hero-stat__label {
  font-size: .63rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: .04em;
}

/* Hero right / form panel */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 48px clamp(24px, 3vw, 44px);
  position: relative;
  z-index: 2;
  border-left: 1px solid var(--border);
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(229, 57, 53, .03) 0%, transparent 50%);
  pointer-events: none;
}

/* ====================== FORM CARD ====================== */
.form-card {
  width: 100%;
  max-width: 380px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r3);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .05);
  position: relative;
  animation: fadeUp .5s .3s ease both;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.form-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.form-card__icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-card__title { font-family: var(--f-head); font-size: 1.02rem; letter-spacing: .03em; text-transform: uppercase; }
.form-card__sub   { font-size: .77rem; color: var(--muted); margin-bottom: 16px; line-height: 1.55; }

.urgency-bar {
  background: rgba(245, 184, 0, .08);
  border: 1px solid rgba(245, 184, 0, .2);
  border-radius: var(--r);
  padding: 9px 12px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .73rem;
  color: rgba(245, 184, 0, .9);
  font-weight: 600;
}

/* ====================== TICKER ====================== */
.ticker {
  background: var(--red-dim);
  border-top: 1px solid var(--red-border);
  border-bottom: 1px solid var(--red-border);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tick 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 36px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(244, 241, 235, .68);
  letter-spacing: .02em;
}
.ticker-sep { color: var(--red2); font-size: .7rem; }

/* ====================== URGENCY / FEAR ====================== */
.fear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.fear-heading {
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.fear-heading span { color: var(--red); }
.fear-intro {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
  margin: 12px 0 0;
}

.fear-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.fear-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--r2);
  transition: all .22s var(--ease);
}
.fear-item:hover {
  background: var(--red-dim2);
  border-color: rgba(229, 57, 53, .35);
  transform: translateX(4px);
}
.fear-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(229, 57, 53, .15);
  border: 1px solid rgba(229, 57, 53, .25);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--red2);
}
.fear-item__title { font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.fear-item__desc  { font-size: .77rem; color: var(--muted); line-height: 1.6; }

/* Counter block */
.counter-block {
  background: var(--card);
  border: 1px solid var(--red-border);
  border-radius: var(--r3);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.counter-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.counter-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(229, 57, 53, .05), transparent 70%);
  pointer-events: none;
}
.counter-block__label   { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.counter-block__value   { font-family: var(--f-head); font-size: 3.6rem; color: var(--red2); line-height: 1; margin-bottom: 6px; }
.counter-block__caption { font-size: .75rem; color: var(--muted); line-height: 1.5; }

.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.mini-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  text-align: center;
}
.mini-stat strong { display: block; font-family: var(--f-head); font-size: 2rem; line-height: 1; margin-bottom: 3px; }
.mini-stat span   { font-size: .67rem; color: var(--muted); }
.mini-stat--gold strong { color: var(--gold); }
.mini-stat--red  strong { color: var(--red2); }

/* ====================== PROBLEMS ====================== */
.probs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.prob-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.prob-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.prob-card:hover {
  border-color: var(--red-border);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .4);
}
.prob-card:hover::before { opacity: 1; }

.prob-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.prob-card__icon   { width: 44px; height: 44px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(229, 57, 53, .1); color: var(--red2); }
.prob-card__icon--gold  { background: rgba(245, 184, 0, .10); color: var(--gold); }
.prob-card__icon--green { background: rgba(0, 230, 118, .08); color: #69f0ae; }
.prob-card__icon--blue  { background: rgba(100, 181, 246, .10); color: #90caf9; }

.prob-card strong { display: block; font-size: .9rem; font-weight: 700; }
.prob-card p      { font-size: .79rem; color: var(--muted); line-height: 1.65; }

/* ====================== CASES ====================== */
.cases-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cases-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Featured case card */
.case-card-featured {
  background: linear-gradient(135deg, rgba(229, 57, 53, .07) 0%, var(--card) 50%);
  border: 1px solid rgba(229, 57, 53, .25);
  border-radius: var(--r2);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  transition: all .28s var(--ease);
  position: relative;
  overflow: hidden;
}
.case-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.case-card-featured:hover {
  border-color: rgba(229, 57, 53, .4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.case-feat-amounts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 14px;
  background: rgba(0, 0, 0, .3);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  min-width: 110px;
}
.case-feat-from     { font-size: .65rem; color: rgba(244, 241, 235, .4); text-decoration: line-through; font-family: var(--f-head); line-height: 1; }
.case-feat-sep      { font-size: .6rem; color: var(--red); font-weight: 700; letter-spacing: .05em; }
.case-feat-to       { font-family: var(--f-head); font-size: 1.6rem; color: var(--gold); line-height: 1; text-align: center; }
.case-feat-gain     { font-size: .65rem; font-weight: 700; color: #69f0ae; text-align: center; margin-top: 2px; }
.case-feat-tag      { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red2); margin-bottom: 6px; }
.case-feat-title    { font-size: .92rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.case-feat-desc     { font-size: .79rem; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.case-feat-footer   { display: flex; align-items: center; gap: 8px; }

/* Regular case card */
.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: all .28s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  border-color: rgba(229, 57, 53, .35);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .5);
}

.case-card__top {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.case-card__top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 57, 53, .04), transparent 60%);
  pointer-events: none;
}

.case-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.case-amounts { display: flex; align-items: center; gap: 10px; }
.case-amount-col      { display: flex; flex-direction: column; flex: 1; }
.case-amount-col--end { align-items: flex-end; }
.case-amount-label    { font-size: .6rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.case-amount-label--green { color: #69f0ae; }
.case-amount-from     { font-family: var(--f-head); font-size: 1.2rem; color: rgba(244, 241, 235, .4); text-decoration: line-through; line-height: 1; }
.case-amount-to       { font-family: var(--f-head); font-size: 1.7rem; color: var(--white); line-height: 1; text-align: right; }

.case-arrow {
  width: 28px;
  height: 28px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.case-card__body {
  padding: 16px 20px 20px;
}
.case-desc { font-size: .78rem; color: var(--muted); line-height: 1.65; flex: 1; margin:10px 0;}
.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.case-time {
  font-size: .7rem;
  color: #69f0ae;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.case-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  color: var(--muted);
  text-transform: uppercase;
}

/* ====================== QUIZ ====================== */
.quiz-wrap { max-width: 640px; margin: 0 auto; }
.quiz-card {
  background: var(--card);
  border: 1px solid var(--red-border);
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}

.quiz-header {
  padding: 20px 26px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(229, 57, 53, .06), transparent);
}
.quiz-header__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.quiz-header__title { font-size: .88rem; font-weight: 700; }
.quiz-header__step  { font-size: .71rem; color: var(--muted); }
.quiz-bar     { background: rgba(255, 255, 255, .07); height: 3px; border-radius: 3px; overflow: hidden; }
.quiz-bar__fill { height: 100%; background: var(--red); border-radius: 3px; transition: width .4s var(--ease); }

.quiz-body { padding: 26px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp .22s ease both; }
.quiz-question { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 16px; }
.quiz-opts { display: flex; flex-direction: column; gap: 8px; }
.quiz-opt {
  padding: 13px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .16s var(--ease);
  font-size: .87rem;
  text-align: left;
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.quiz-opt:hover      { border-color: rgba(229, 57, 53, .3); background: var(--red-dim); }
.quiz-opt.selected   { border-color: var(--red); background: var(--red-dim2); }

.quiz-opt__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.quiz-opt.selected .quiz-opt__icon { background: var(--red-dim); color: var(--red2); }

.quiz-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 10px; }
.quiz-back {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: .82rem;
  font-family: var(--f-body);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
  padding: 8px 0;
}
.quiz-back:hover { color: var(--white); }
.quiz-nav .btn   { flex: 1; }
.quiz-btn-next           { opacity: .35; cursor: not-allowed; pointer-events: none; }
.quiz-btn-next.ready     { opacity: 1;   cursor: pointer;     pointer-events: all; }

/* Quiz result */
.quiz-result__label  { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 8px; }
.quiz-result__amount { font-family: var(--f-head); font-size: 3.6rem; color: var(--gold); text-align: center; line-height: 1; margin-bottom: 6px; }
.quiz-result__sub    { font-size: .82rem; color: var(--muted); text-align: center; margin-bottom: 20px; line-height: 1.7; }

/* ====================== LAWYER ====================== */
.lawyer-grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }

.lawyer-photo-wrap { position: relative; }
.lawyer-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.lawyer-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.lawyer-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 9, 11, .9) 100%);
}

.lawyer-badge {
  position: absolute;
  bottom: 14px;
  left: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(9, 9, 11, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
}
.lawyer-badge strong { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 2px; }
.lawyer-badge span   { font-size: .7rem; color: var(--muted); }

.exp-badge {
  position: absolute;
  top: 14px;
  right: -10px;
  background: var(--red);
  border-radius: var(--r);
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(229, 57, 53, .4);
}
.exp-badge strong { display: block; font-family: var(--f-head); font-size: 1.9rem; color: #fff; line-height: 1; }
.exp-badge span   { font-size: .58rem; color: rgba(255, 255, 255, .85); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.lawyer-name { font-family: var(--f-head); font-size: clamp(1.7rem, 3vw, 2.8rem); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .02em; }
.lawyer-role { font-size: .78rem; color: var(--red2); font-weight: 700; margin-bottom: 16px; letter-spacing: .05em; text-transform: uppercase; }
.lawyer-bio  { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }

.lawyer-creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cred-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 10px;
  text-align: center;
  transition: all .2s;
}
.cred-card:hover    { border-color: var(--red-border); }
.cred-card strong   { display: block; font-family: var(--f-head); font-size: 1.65rem; color: var(--white); line-height: 1; margin-bottom: 4px; }
.cred-card span     { font-size: .65rem; color: var(--muted); }

/* ====================== STEPS ====================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.steps-line {
  position: absolute;
  top: 42px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, .3) 20%, rgba(229, 57, 53, .3) 80%, transparent);
  z-index: 0;
}

.step-item { text-align: center; padding: 0 16px 24px; position: relative; z-index: 1; }
.step-item__number {
  width: 52px;
  height: 52px;
  background: var(--card);
  border: 1px solid rgba(229, 57, 53, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 1.5rem;
  color: var(--red);
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px var(--bg);
  transition: all .25s;
}
.step-item:hover .step-item__number {
  background: var(--red-dim);
  border-color: rgba(229, 57, 53, .6);
  box-shadow: 0 0 0 6px var(--bg), 0 0 20px rgba(229, 57, 53, .2);
}
.step-item strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 7px; }
.step-item p      { font-size: .79rem; color: var(--muted); line-height: 1.65; }

/* ====================== SERVICES ====================== */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 26px;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 57, 53, .03), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover {
  border-color: var(--red-border);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .4);
}

.svc-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.svc-icon { width: 46px; height: 46px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.svc-icon--red    { background: rgba(229, 57, 53, .1); color: var(--red2); }
.svc-icon--gold   { background: rgba(245, 184, 0, .1); color: var(--gold); }
.svc-icon--green  { background: rgba(0, 230, 118, .08); color: #69f0ae; }
.svc-icon--blue   { background: rgba(100, 181, 246, .10); color: #90caf9; }
.svc-card strong { display: block; font-size: .94rem; font-weight: 700; }
.svc-card p      { font-size: .82rem; color: var(--muted); margin-bottom: 14px; line-height: 1.65; }

.svc-list { display: flex; flex-direction: column; gap: 7px; }
.svc-list li {
  font-size: .79rem;
  color: rgba(244, 241, 235, .58);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.svc-list__dot {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ====================== WHY US ====================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 5vw, 60px); align-items: start; }

.why-percent { font-family: var(--f-head); font-size: clamp(5rem, 10vw, 8rem); color: var(--red); line-height: 1; letter-spacing: .02em; }
.why-percent-label { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.why-heading {
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.why-body { font-size: .88rem; color: var(--muted); line-height: 1.75; }

.why-items { display: flex; flex-direction: column; gap: 10px; }
.why-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 18px 20px;
  transition: all .22s var(--ease);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-item:hover { border-color: var(--red-border); transform: translateX(4px); }
.why-item__icon {
  width: 38px;
  height: 38px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--red2);
}
.why-item strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.why-item p      { font-size: .79rem; color: var(--muted); line-height: 1.65; }

/* ====================== REVIEWS ====================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: all .22s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow-card); }

.review-card__top {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.review-stars  { display: flex; gap: 2px; color: var(--gold); }
.review-amount { font-family: var(--f-head); font-size: 1.1rem; color: var(--green); white-space: nowrap; }

.review-card__body { padding: 16px 20px; flex: 1; }
.review-quote {
  font-size: .83rem;
  color: rgba(244, 241, 235, .72);
  font-style: italic;
  line-height: 1.72;
  border-left: 2px solid rgba(229, 57, 53, .3);
  padding-left: 14px;
  margin-bottom: 14px;
}
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}
.review-author { font-size: .75rem; color: var(--muted); font-weight: 600; }
.review-city   { font-size: .68rem; color: var(--faint); }

/* ====================== FAQ ====================== */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  gap: 14px;
  transition: color .2s;
  background: none;
  border: none;
  color: var(--white);
  width: 100%;
  text-align: left;
  font-family: var(--f-body);
}
.faq-btn:hover { color: rgba(244, 241, 235, .85); }

.faq-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  transition: all .28s;
}
.faq-item.open .faq-btn__icon {
  background: var(--red-dim);
  border-color: var(--red-border);
  color: var(--red);
  transform: rotate(45deg);
}

.faq-answer { display: none; padding: 0 40px 16px 0; font-size: .84rem; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-answer { display: block; animation: fadeUp .2s ease both; }

/* ====================== CTA ====================== */
.cta-grid { display: grid; grid-template-columns: 1fr 400px; gap: clamp(36px, 5vw, 60px); align-items: center; }

.cta-phone {
  font-family: var(--f-head);
  font-size: 2rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  transition: color .2s;
}
.cta-phone:hover { color: var(--red2); }
.cta-hours { font-size: .75rem; color: var(--muted); }

.cta-socials { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }

.cta-form {
  background: var(--card);
  border: 1px solid var(--red-border);
  border-radius: var(--r3);
  padding: 26px;
}
.cta-form__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cta-form__icon {
  width: 34px;
  height: 34px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red2);
}

/* NOT-NEEDED section */
.not-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.not-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  transition: all .22s var(--ease);
}
.not-item:hover { border-color: var(--border2); transform: translateY(-2px); }
.not-item__icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.not-item__icon--red   { color: var(--red2); }
.not-item__icon--gold  { color: var(--gold); }
.not-item__icon--blue  { color: #90caf9; }
.not-item__icon--muted { color: rgba(244, 241, 235, .5); }
.not-item strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.not-item small  { font-size: .78rem; color: var(--muted); line-height: 1.6; display: block; }

/* ====================== FOOTER ====================== */
footer { padding: clamp(40px, 5vw, 60px) 0 clamp(24px, 3vw, 32px); border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(28px, 4vw, 50px);
  margin-bottom: 30px;
}
.footer-logo {
  font-family: var(--f-head);
  font-size: 1.45rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}
.footer-logo em { color: var(--red); font-style: normal; }
.footer-desc    { color: var(--muted); font-size: .82rem; line-height: 1.7; margin-bottom: 12px; }

.f-contact {
  font-size: .81rem;
  color: var(--muted);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.f-socials   { display: flex; gap: 8px; margin-top: 14px; }
.f-soc {
  width: 34px;
  height: 34px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .2s;
  text-decoration: none;
}
.f-soc:hover { background: var(--red-dim); border-color: var(--red-border); color: var(--white); }

footer h5 { font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
footer ul li { margin-bottom: 8px; }
footer ul a  { color: var(--muted); font-size: .81rem; transition: color .2s; }
footer ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: .71rem;
  color: var(--faint);
  flex-wrap: wrap;
  gap: 6px;
}

/* ====================== STICKY ELEMENTS ====================== */
.sticky-btns {
  position: fixed;
  right: 16px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 890;
}
.sticky-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .4);
  transition: transform .2s, box-shadow .2s;
  color: #fff;
}
.sticky-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0, 0, 0, .5); }
.sticky-btn--tg   { background: #0088cc; }
.sticky-btn--call { background: var(--red); }

/* Mobile bottom bar */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 890;
  background: rgba(9, 9, 11, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mob-btn {
  flex: 1;
  padding: 13px 10px;
  border: none;
  border-radius: var(--r);
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all .18s;
}
.mob-btn--primary { background: var(--red); color: #fff; }
.mob-btn--primary:active { background: #c62828; transform: scale(.97); }
.mob-btn--secondary { background: rgba(255, 255, 255, .07); color: var(--white); border: 1px solid var(--border); }

/* ====================== MOBILE CAROUSEL ====================== */
.mobile-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.mobile-scroll::-webkit-scrollbar { display: none; }
.mobile-scroll .review-card,
.mobile-scroll .case-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
}

.scroll-dots { display: none; justify-content: center; gap: 6px; margin-top: 12px; }
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border2);
  transition: all .25s;
  border: none;
  cursor: pointer;
  padding: 0;
}
.scroll-dot.active { background: var(--red); width: 18px; border-radius: 3px; }

.swipe-hint { display: none; text-align: center; font-size: .71rem; color: var(--faint); margin-top: 8px; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1100px) {
  .hero             { grid-template-columns: 1fr 420px; }
  .cases-grid       { grid-template-columns: repeat(2, 1fr); }
  .cases-featured   { grid-template-columns: 1fr; }
  .probs-grid       { grid-template-columns: repeat(2, 1fr); }
  .lawyer-grid      { grid-template-columns: 260px 1fr; gap: 32px; }
  .lawyer-creds     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav .btn-primary,
  .nav-links          { display: none; }

  .hero               { grid-template-columns: 1fr; min-height: auto; }
  .hero-left          { padding: 40px var(--gap-sm) 24px; }
  .hero-right         { border-left: none; border-top: 1px solid var(--border); padding: 28px var(--gap-sm) 40px; }
  .form-card          { max-width: 100%; }

  .fear-grid,
  .why-grid,
  .cta-grid           { grid-template-columns: 1fr; }

  .probs-grid         { grid-template-columns: repeat(2, 1fr); }

  /* Desktop grids hidden on mobile — carousels shown */
  .cases-grid,
  .cases-featured     { display: none !important; }
  .cases-mobile       { display: flex !important; }
  .scroll-dots        { display: flex; }
  .swipe-hint         { display: block; }
  .reviews-grid       { display: none !important; }
  .reviews-mobile     { display: flex !important; }

  .lawyer-grid        { grid-template-columns: 1fr; }
  .lawyer-photo       { max-height: 280px; aspect-ratio: auto; }
  .exp-badge          { display: none; }
  .lawyer-creds       { grid-template-columns: repeat(4, 1fr); }

  .steps-grid         { grid-template-columns: repeat(2, 1fr); }
  .steps-line         { display: none; }

  .not-grid,
  .svc-grid           { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }

  .mob-bar            { display: flex; }
  .sticky-btns        { bottom: 90px; }
  body                { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
}
@media (max-width: 600px) {
  .probs-grid,
  .steps-grid         { grid-template-columns: 1fr; }
  .hero-stats         { flex-wrap: wrap; }
  .hero-stat          { flex: 1; min-width: 80px; padding: 12px 14px; }
  .hero-ctas          { flex-direction: column; }
  .hero-ctas .btn     { width: 100%; }
  .footer-grid        { grid-template-columns: 1fr; }
  .lawyer-creds       { grid-template-columns: repeat(2, 1fr); }
  .mini-stats         { grid-template-columns: 1fr 1fr; }
}
@media (hover: none) {
  .prob-card:hover,
  .not-item:hover,
  .case-card:hover,
  .review-card:hover,
  .why-item:hover,
  .svc-card:hover,
  .case-card-featured:hover { transform: none; }
}