/* ======================================
   AiPrank.ru — Bold Design System
   Neo-Brutalist meets Pop Art Energy
   ======================================*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Exo+2:ital,wght@0,400;0,700;0,900;1,900&family=JetBrains+Mono:wght@400;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --red:     #E8222A;
  --red-dark:#C0121A;
  --blue:    #1B3FD8;
  --blue-dark:#0D29A8;
  --yellow:  #FFD700;
  --yellow-dark:#E6C200;
  --dark:    #0A0A12;
  --dark2:   #12121F;
  --mid:     #1E1E30;
  --white:   #FAFAF8;
  --grey:    #888;

  --border: 3px solid var(--dark);
  --radius: 0px;
  --shadow-hard: 6px 6px 0px var(--dark);
  --shadow-red:  6px 6px 0px var(--red);
  --shadow-blue: 6px 6px 0px var(--blue);
  --shadow-yellow: 6px 6px 0px var(--yellow);
  --transition: .18s ease;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Exo 2', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 0; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ─── Typography ─── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1;
  text-transform: uppercase;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '//';
  color: var(--yellow);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 3px solid var(--dark);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.btn:active { transform: translate(3px, 3px); box-shadow: none !important; }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-hard);
}
.btn-red:hover { box-shadow: 8px 8px 0 var(--yellow); transform: translate(-2px,-2px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: var(--shadow-hard);
}
.btn-yellow:hover { box-shadow: 8px 8px 0 var(--red); transform: translate(-2px,-2px); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-hard);
}
.btn-blue:hover { box-shadow: 8px 8px 0 var(--yellow); transform: translate(-2px,-2px); }

.btn-red-yellow {
  background: var(--red);
  color: var(--yellow);
  box-shadow: var(--shadow-hard);
  border: 3px solid var(--yellow);
}
.btn-red-yellow:hover { 
  background: var(--red-dark); 
  box-shadow: 8px 8px 0 var(--yellow); 
  transform: translate(-3px,-3px); 
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 3px solid var(--white);
  box-shadow: 6px 6px 0 rgba(255,255,255,0.15);
}
.btn-outline:hover { background: var(--white); color: var(--dark); box-shadow: 8px 8px 0 var(--yellow); transform: translate(-2px,-2px); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 3px solid var(--yellow);
  transition: background .3s;
}
.nav.scrolled { background: rgba(10,10,18,0.98); backdrop-filter: blur(12px); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo img { width: 44px; height: 44px; object-fit: contain; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
}
.nav__logo-text span { color: var(--yellow); }
.nav__logo-text em { color: var(--red); font-style: normal; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  color: var(--grey);
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
}
.nav__links a:hover { color: var(--yellow); border-bottom-color: var(--yellow); }

.nav__cta { margin-left: 16px; padding: 10px 24px; font-size: 14px; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 26px; height: 3px; background: var(--white); transition: .3s; }

/* ─── HERO ─── */
.hero {
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* Grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__shape {
  position: absolute;
  border-radius: 0;
  opacity: 0.12;
  animation: floatShape 12s ease-in-out infinite;
}
.hero__shape--1 {
  width: 400px; height: 400px;
  background: var(--red);
  top: -100px; right: -100px;
  animation-delay: 0s;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.hero__shape--2 {
  width: 300px; height: 300px;
  background: var(--blue);
  bottom: -50px; left: 10%;
  animation-delay: -4s;
  clip-path: polygon(50% 0%,100%50%,50%100%,0%50%);
}
.hero__shape--3 {
  width: 200px; height: 200px;
  background: var(--yellow);
  top: 40%; right: 15%;
  animation-delay: -8s;
  clip-path: polygon(50%0%,100%25%,100%75%,50%100%,0%75%,0%25%);
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-30px) rotate(5deg); }
  66%       { transform: translateY(15px) rotate(-3deg); }
}

/* ── Two-column hero grid ── */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 2;
}

/* ── Left: text ── */
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 56px 40px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 28px;
  border: 2px solid var(--dark);
  box-shadow: 4px 4px 0 var(--red);
  animation: tagPop .6s cubic-bezier(.34,1.56,.64,1) .2s both;
  align-self: flex-start;
}
.hero__tag-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes tagPop { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 110px);
  line-height: 0.88;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: slideUp .8s cubic-bezier(.16,1,.3,1) .3s both;
}
.hero__headline .line-yellow { color: var(--yellow); display: block; }
.hero__headline .line-white  { color: var(--white); display: block; }
.hero__headline .line-blue  { color: var(--blue); display: block; -webkit-text-stroke: 2px var(--blue); }
.hero__headline .line-stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 3px var(--yellow);
}

@keyframes slideUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.6;
  color: rgba(250,250,248,.7);
  max-width: 500px;
  margin-bottom: 40px;
  animation: slideUp .8s cubic-bezier(.16,1,.3,1) .45s both;
}
.hero__sub strong { color: var(--yellow); font-weight: 900; }

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideUp .8s cubic-bezier(.16,1,.3,1) .6s both;
}

/* ── Right: two vertical ribbon strips ── */
.hero__ribbon-col {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 10px;
  /* Fade top and bottom */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

/* Each strip: absolutely positioned so it doesn't set column height */
.hero__ribbon {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.hero__ribbon--down {
  left: 10px;
  width: calc(50% - 15px);
  gap: 10px;
  animation: ribbonScrollDown 52s linear -8s infinite;
}

.hero__ribbon--up {
  right: 10px;
  width: calc(50% - 15px);
  gap: 16px;               /* larger gap = different total height → never realigns */
  top: -180px;             /* stronger vertical stagger */
  animation: ribbonScrollUp 52s linear -30s infinite;
}

@keyframes ribbonScrollDown {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes ribbonScrollUp {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* Pause on hover */
.hero__ribbon-col:hover .hero__ribbon {
  animation-play-state: paused;
}

/* ── Hero video cards ── */
.hv-card {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: var(--dark2);
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hv-card:hover {
  transform: scale(1.03);
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px var(--yellow), 0 8px 30px rgba(0,0,0,0.5);
  z-index: 10;
}

/* Portrait 9:16 — aspect-ratio works fine because parent has explicit width */
.hv-card--portrait { aspect-ratio: 9 / 16; }

/* Landscape 16:9 */
.hv-card--landscape { aspect-ratio: 16 / 9; }

.hv-card__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.hv-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,18,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.hv-card:hover .hv-card__overlay { opacity: 1; }

.hv-card__badge {
  display: inline-block;
  padding: 3px 9px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: flex-start;
}

.hv-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}

.hv-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 42px; height: 42px;
  background: rgba(255,215,0,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--dark);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}

.hv-card:hover .hv-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .hero__layout { grid-template-columns: 1fr 1fr; }
  .hero__inner { padding: 48px 32px 48px 36px; }
}

@media (max-width: 900px) {
  .hero__layout { grid-template-columns: 55% 45%; }
  .hero__inner { padding: 40px 24px 40px 28px; }
}

/* Mobile: hide ribbon, text full width */
@media (max-width: 600px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__ribbon-col { display: none; }
  .hero__inner { padding: 40px 24px; max-width: 100%; }
}
.hero__bottom {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 2px solid rgba(255,255,255,.08);
  animation: slideUp .8s cubic-bezier(.16,1,.3,1) .75s both;
}
.hero__stat strong {
  font-family: var(--font-display);
  font-size: 48px;
  display: block;
  color: var(--yellow);
}
.hero__stat span { font-family: var(--font-mono); font-size: 12px; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; }

/* ─── MARQUEE / TRUST BAR ─── */
.marquee-section {
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  background: var(--yellow);
  padding: 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@media (max-width: 768px) {
  .marquee-track {
    animation-duration: 12s; /* Ускоряем бегущую строку на мобильных */
  }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-right: 3px solid var(--dark);
  flex-shrink: 0;
}
.marquee-item .sep { color: var(--red); font-size: 28px; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HOW IT WORKS ─── */
.how {
  background: var(--dark2);
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 3px solid rgba(255,255,255,.08);
  margin-top: 60px;
}
.how__step {
  padding: 48px 36px;
  border-right: 3px solid rgba(255,255,255,.08);
  position: relative;
  transition: background var(--transition);
}
.how__step:last-child { border-right: none; }
.how__step:hover { background: rgba(255,255,255,.03); }
.how__step-num {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
  display: block;
  margin-bottom: 16px;
  opacity: 0.5;
}
.how__step-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.how__step h3 {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--white);
}
.how__step p { color: rgba(250,250,248,.6); line-height: 1.65; }

/* ─── EXAMPLES / PRANKS ─── */
.examples {
  background: var(--dark);
}
.examples__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  margin-top: 60px;
  border: 3px solid rgba(255,255,255,.1);
}
.prank-card {
  border-right: 3px solid rgba(255,255,255,.1);
  border-bottom: 3px solid rgba(255,255,255,.1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
  background: var(--mid);
}
.prank-card:hover { z-index: 2; transform: scale(1.02); box-shadow: 0 0 0 3px var(--yellow); }

.prank-card__thumb {
  aspect-ratio: 9/16;
  max-height: 400px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prank-card__thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--red-dark) 100%);
}
.prank-card__play {
  position: relative;
  z-index: 2;
  width: 64px; height: 64px;
  background: var(--yellow);
  border: 3px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.prank-card:hover .prank-card__play {
  transform: scale(1.1);
  box-shadow: 6px 6px 0 var(--red);
}
.prank-card__label {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 2px solid var(--dark);
}
.prank-card__body {
  padding: 20px;
}
.prank-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.prank-card__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 1px;
}

/* ─── PRICING ─── */
.pricing {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: 'ЦЕНЫ';
  font-family: var(--font-display);
  font-size: 300px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.03);
  pointer-events: none;
  white-space: nowrap;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  margin-top: 64px;
  border: 3px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 2;
}
.price-card {
  padding: 48px 36px;
  border-right: 3px solid rgba(255,255,255,.1);
  position: relative;
  transition: background var(--transition);
}
.price-card:last-child { border-right: none; }
.price-card:hover { background: rgba(255,255,255,.03); }

.price-card--popular {
  background: var(--blue);
  border: 3px solid var(--yellow) !important;
  box-shadow: 0 0 0 3px var(--yellow), inset 0 0 60px rgba(0,0,0,.3);
  margin: -3px;
  z-index: 3;
}
.price-card--popular:hover { background: var(--blue-dark); }
.price-card--popular .price-card__name { color: var(--yellow); }

.price-card__badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 2px solid var(--dark);
  margin-bottom: 24px;
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 70px;
  line-height: 1;
  margin: 20px 0 4px;
  color: var(--yellow);
}
.price-card__price span {
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(250,250,248,.5);
}
.price-card__desc { color: rgba(250,250,248,.6); margin-bottom: 28px; font-size: 14px; }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(250,250,248,.8);
}
.price-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
  margin-top: 2px;
}

/* ─── REVIEWS ─── */
.reviews { background: var(--dark); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0;
  margin-top: 60px;
  border: 3px solid rgba(255,255,255,.08);
}
.review-card {
  padding: 36px 32px;
  border-right: 3px solid rgba(255,255,255,.08);
  border-bottom: 3px solid rgba(255,255,255,.08);
  position: relative;
  transition: background var(--transition);
}
.review-card:hover { background: rgba(255,255,255,.02); }
.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--yellow);
  opacity: .15;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}
.review-stars { color: var(--yellow); font-size: 18px; margin-bottom: 16px; }
.review-text { color: rgba(250,250,248,.75); line-height: 1.65; margin-bottom: 24px; font-size: 15px; }
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--yellow);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 15px; }
.review-city { font-family: var(--font-mono); font-size: 12px; color: var(--grey); }

/* ─── CONTACT / FORM ─── */
.contact {
  background: #254185;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 350px; height: 350px;
  background: var(--yellow);
  opacity: .12;
  clip-path: polygon(50%0%,100%25%,100%75%,50%100%,0%75%,0%25%);
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  background: var(--dark);
  opacity: .15;
  clip-path: polygon(50%0%,100%50%,50%100%,0%50%);
}

.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact__headline em { font-style: normal; color: var(--yellow); }
.contact__desc { color: rgba(250,250,248,.8); font-size: 17px; line-height: 1.6; }

/* Form */
.form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,250,248,.7);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(0,0,0,.25);
  border: 3px solid rgba(250,250,248,.3);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,250,248,.4); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--yellow);
  background: rgba(0,0,0,.4);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark2); color: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form__submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 17px;
}
.form__success {
  display: none;
  background: var(--yellow);
  color: var(--dark);
  border: 3px solid var(--dark);
  box-shadow: var(--shadow-hard);
  padding: 20px;
  font-weight: 700;
  font-family: var(--font-mono);
  text-align: center;
  font-size: 15px;
}

/* Error messages */
.field-error {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
  display: none;
}
.form-group.error input,
.form-group.error textarea,
.form-group.error select { border-color: var(--yellow); }
.form-group.error .field-error { display: block; }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark2);
  border-top: 3px solid var(--yellow);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 2px solid rgba(255,255,255,.07);
}
.footer__brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand-logo img { width: 36px; }
.footer__brand-logo span {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
}
.footer__desc { color: rgba(250,250,248,.5); font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--yellow);
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a {
  color: rgba(250,250,248,.5);
  font-size: 14px;
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--yellow); }
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.footer__social a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
  transform: translate(-2px,-2px);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer__copy { color: rgba(250,250,248,.3); font-family: var(--font-mono); font-size: 12px; letter-spacing: 1px; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  color: rgba(250,250,248,.3);
  font-family: var(--font-mono);
  font-size: 12px;
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--yellow); }

/* ─── MOBILE MENU ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 70px 0 0;
  background: var(--dark2);
  z-index: 999;
  flex-direction: column;
  padding: 40px 32px;
  gap: 8px;
  border-top: 3px solid var(--yellow);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(250,250,248,.7);
  padding: 8px 0;
  border-bottom: 2px solid rgba(255,255,255,.06);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav a:hover { color: var(--yellow); padding-left: 16px; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .burger { display: flex; }

  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .how__step { border-right: none; border-bottom: 3px solid rgba(255,255,255,.08); }
  .how__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero__bottom { gap: 24px; flex-wrap: wrap; }
  .price-card--popular { margin: 0; }
}
