:root {
  --bg-base: #0a0b0e;
  --bg-card: #111318;
  --bg-card-alt: #15171d;
  --bg-alt: #0d0f13;
  --gold: #C9A84C;
  --gold-light: #E2C97A;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-border: rgba(201, 168, 76, 0.3);
  --text-primary: #f0ede6;
  --text-muted: #8a8a96;
  --text-dim: #4a4a56;
  --border: rgba(255, 255, 255, 0.07);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Typography ─── */
em {
  font-style: italic;
  color: var(--gold);
}

/* ─── Scroll-bar ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-border);
  border-radius: 3px;
}

/* ══════════════════════════════════════
   INTERSECTION OBSERVER ANIMATIONS
══════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition), transform var(--transition);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: 0.12s !important;
}

.delay-2 {
  transition-delay: 0.24s !important;
}

.delay-3 {
  transition-delay: 0.36s !important;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  background: transparent;
  padding: 1.4rem 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  letter-spacing: 0.04em;
}

.brand-icon {
  color: var(--gold);
  margin-right: 4px;
}

.nav-link {
  color: var(--text-muted) !important;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.25s;
}

.nav-link:hover {
  color: var(--text-primary) !important;
}

.text-gold {
  color: var(--gold);
}

/* ─── Buttons ─── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8922d 100%);
  color: #1a1200;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.75rem;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #1a1200;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.45);
  transform: translateY(-1px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.65rem 1.65rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    var(--bg-base);
  overflow: hidden;
}

/* Noise texture */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(201, 168, 76, 0.07);
  top: -100px;
  right: -80px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(201, 168, 76, 0.05);
  bottom: 50px;
  left: -60px;
  animation-delay: -3s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(120, 100, 220, 0.06);
  top: 40%;
  right: 20%;
  animation-delay: -5s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Hero text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.dot-pulse {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.2rem;
}

/* Hero card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hc-badge {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 100px;
}

.hc-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #4caf84;
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf84;
  animation: pulse 1.5s ease infinite;
}

.hc-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hc-growth {
  font-size: 0.85rem;
  color: #4caf84;
  margin: 4px 0 1.2rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 40px;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.bar-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 100px;
  animation: barGrow 1.2s cubic-bezier(0.22, 1, 0.36, 1) both 0.8s;
  transform-origin: left;
}

@keyframes barGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.hc-chart {
  margin-top: 1.2rem;
  height: 70px;
}

.hc-chart svg {
  width: 100%;
  height: 100%;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════════
   LOGO STRIP
══════════════════════════════════════ */
.logo-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
}

.ls-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 1rem;
}

.ls-track {
  overflow: hidden;
}

.ls-inner {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.ls-inner span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
.section-block {
  padding: 100px 0;
}

.bg-dark-alt {
  background: var(--bg-alt);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 10px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-text {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
}

/* ══════════════════════════════════════
   ABOUT VISUAL
══════════════════════════════════════ */
.about-visual {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 40px auto;
}

.av-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 20s linear infinite;
}

.av-ring-1 {
  width: 100%;
  height: 100%;
  animation-direction: normal;
}

.av-ring-2 {
  width: 70%;
  height: 70%;
  animation-direction: reverse;
  border-style: dashed;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.av-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
}

.av-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.av-badge i {
  color: var(--gold);
}

.av-badge-top {
  top: 0;
  right: -40px;
}

.av-badge-bottom {
  bottom: 0;
  left: -40px;
}

.about-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: border-color 0.3s;
}

.about-pill:hover {
  border-color: var(--gold-border);
}

.about-pill i {
  color: var(--gold);
  font-size: 1rem;
}

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: var(--border);
}

.stat-card:last-child::after {
  display: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  display: inline;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.08);
}

.service-card--featured::after {
  content: 'Популярное';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1200;
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
}

.sc-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  transition: background 0.3s;
}

.service-card:hover .sc-icon {
  background: rgba(201, 168, 76, 0.25);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.sc-link {
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sc-link:hover {
  color: var(--gold-light);
  gap: 8px;
}

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.team-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.tc-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #7a5e1a 100%);
  color: #1a1200;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.team-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.tc-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.tc-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.tc-links a:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  height: 100%;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card--featured {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, #141208 0%, var(--bg-card) 100%);
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.1);
}

.pc-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1200;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pc-tier {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.pc-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pc-price span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.pc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pc-features {
  list-style: none;
  margin-bottom: 1.8rem;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pc-features li i {
  color: var(--gold);
  font-size: 1rem;
}

.pc-features li.disabled {
  opacity: 0.4;
}

.pc-features li.disabled i {
  color: var(--text-dim);
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0c00 0%, #1a1400 50%, #0a0b0e 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}

.cta-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ci-item i {
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
}

.cp-input {
  background: var(--bg-base) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color 0.25s !important;
}

.cp-input:focus {
  border-color: var(--gold-border) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1) !important;
  outline: none;
}

.cp-input::placeholder {
  color: var(--text-dim) !important;
}

.form-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-select.cp-input option {
  background: var(--bg-card);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  padding: 70px 0 0;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 280px;
  margin-bottom: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-subscribe {
  display: flex;
  gap: 8px;
  margin-top: 0.5rem;
}

.footer-subscribe .cp-input {
  flex: 1;
}

.footer-subscribe .btn-gold {
  padding: 0.65rem 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
  margin-top: 3rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-legal a:hover {
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .av-badge {
    display: none;
  }

  .about-visual {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 767px) {
  .stat-card::after {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}