/* RESET */
:root {
  --gold: #d4af37;
  --gold-light: #fff1a8;
  --gold-dark: #b8860b;
  --black: #050505;
  --black-soft: #0d0d0d;
  --white-soft: rgba(255, 255, 255, 0.82);
  --border-gold: rgba(212, 175, 55, 0.32);
  --glow-gold: rgba(212, 175, 55, 0.25);
}

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

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.11), transparent 36%),
    radial-gradient(circle at 12% 55%, rgba(212, 175, 55, 0.055), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(212, 175, 55, 0.06), transparent 36%),
    linear-gradient(180deg, #050505 0%, #000000 50%, #070602 100%);
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  touch-action: pan-y;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(212, 175, 55, 0.35);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* GLOBAL */
.eyebrow {
  color: var(--gold);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 800;
}

.section p,
.hero-description,
.faq-section small,
.project p,
ul li {
  color: var(--white-soft);
}

ul {
  list-style: none;
  margin-top: 20px;
}

ul li {
  margin: 10px 0;
}

.btn {

  position: relative;

  overflow: hidden;

}

.btn::after {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);

  transform: translateX(-120%);

  transition: transform 0.6s ease;

}

.btn:hover::after {

  transform: translateX(120%);
}

.btn:active {
  transform: translateY(-1px) scale(0.97);
}

.btn.secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.dark-card,
.contact {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.055), transparent 40%),
    linear-gradient(180deg, #0b0b0b, #030303);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  margin: 0;
  padding: 18px 34px;
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.6);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
    inset 0 0 12px rgba(212, 175, 55, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.contact-email i,
.contact-telegram .btn i {
  margin-right: 6px;
  color: var(--gold);
  font-size: 16px;
}

.contact-telegram {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.contact-telegram .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  margin: 0;
  padding: 18px 34px;
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.6);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
    inset 0 0 12px rgba(212, 175, 55, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.contact-email:hover,
.contact-telegram .btn:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 241, 168, 0.9);
  color: var(--gold-light);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(212, 175, 55, 0.25);
}

.contact-email:active,
.contact-telegram .btn:active {
  transform: translateY(-1px) scale(0.97);
}

@media (max-width: 700px) {
  .contact-email {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    padding: 16px 20px;
    font-size: 15px;
  }

  .contact-telegram .btn {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    padding: 16px 20px;
    font-size: 15px;
  }
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background:
    radial-gradient(circle at 50% 35%, rgba(212, 175, 55, 0.12), transparent 34%),
    linear-gradient(180deg, #050505 0%, #000000 68%, #070602 100%);
  transition: opacity 0.6s ease;
}

.loader-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(78vw, 320px);
}

.loader-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.42));
  animation: loaderIconFloat 1.8s ease-in-out infinite alternate;
}

.loader-logo {
  color: var(--gold);
  font-size: 42px;
  letter-spacing: 6px;
  animation: loaderGlow 1.5s ease-in-out infinite alternate;
}

.loader-chip-bar {
  position: relative;
  width: 240px;
  max-width: 100%;
  height: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.88);
  box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.08), 0 0 24px rgba(212, 175, 55, 0.16);
}

.loader-chip-bar::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 241, 168, 0.18), transparent);
  animation: loaderBarGlow 1.6s ease-in-out infinite;
  pointer-events: none;
}

.loader-chip-track {
  position: absolute;
  top: 50%;
  left: 8px;
  display: flex;
  gap: 8px;
  width: max-content;
  transform: translateY(-50%);
  animation: loaderChips 1.25s linear infinite;
}

.loader-chip-track span {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 1px solid rgba(255, 241, 168, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 241, 168, 0.34) 0 18%, transparent 19% 32%, rgba(212, 175, 55, 0.42) 33% 38%, transparent 39%),
    conic-gradient(
      from 18deg,
      rgba(255, 241, 168, 0.92) 0 12deg,
      var(--gold) 12deg 36deg,
      rgba(255, 241, 168, 0.92) 36deg 48deg,
      var(--gold-dark) 48deg 72deg,
      rgba(255, 241, 168, 0.92) 72deg 84deg,
      var(--gold) 84deg 108deg,
      rgba(255, 241, 168, 0.92) 108deg 120deg,
      var(--gold-dark) 120deg 144deg,
      rgba(255, 241, 168, 0.92) 144deg 156deg,
      var(--gold) 156deg 180deg,
      rgba(255, 241, 168, 0.92) 180deg 192deg,
      var(--gold-dark) 192deg 216deg,
      rgba(255, 241, 168, 0.92) 216deg 228deg,
      var(--gold) 228deg 252deg,
      rgba(255, 241, 168, 0.92) 252deg 264deg,
      var(--gold-dark) 264deg 288deg,
      rgba(255, 241, 168, 0.92) 288deg 300deg,
      var(--gold) 300deg 324deg,
      rgba(255, 241, 168, 0.92) 324deg 336deg,
      var(--gold-dark) 336deg 360deg
    );
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.38);
}

/* NAVBAR */
.navbar,
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 5% 14px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
  overflow: visible;
  transform: none;
  animation: navDrop 0.9s ease both;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar::after,
nav::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85), transparent);
  pointer-events: none;
}

.navbar.scrolled,
nav.scrolled {
  padding: 7px 5% 9px;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.65);
}

.main-logo {
  width: 82px;
  max-width: 82px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  transition: width 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.navbar.scrolled .main-logo,
nav.scrolled .main-logo {
  width: 66px;
  max-width: 66px;
}

.main-logo:hover {
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
  transform: scale(1.05);
}

.logo {
  color: var(--gold);
  font-size: 28px;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.nav-links a {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  will-change: transform, box-shadow, filter;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links:hover a {
  opacity: 0.62;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  color: #000000;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.28);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  color: #000000;
  transform: translateY(-4px) scale(1.055);
  filter: saturate(1.12);
  box-shadow: 0 0 34px rgba(212, 175, 55, 0.48);
}

.nav-cta:active {
  transform: translateY(-1px) scale(0.97);
}

.nav-trust {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--gold);
  cursor: pointer;
}

.mobile-menu-toggle i {
  font-size: 17px;
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 45px 8% 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.98));
  background-attachment: fixed;
}

.hero::before,
.hero::after {
  content: '';
  display: block;
  position: absolute;
  width: 220px;
  height: 90px;
  background: repeating-linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.42) 0 2px,
    transparent 2px 34px
  );
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  top: 26px;
  left: 7%;
  opacity: 0.14;
}

.hero::after {
  right: 7%;
  bottom: 26px;
  opacity: 0.10;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin-top: 160px;
  text-align: center;
  overflow: hidden;
  animation: heroFloat 5s ease-in-out infinite alternate;
}

.hero-content h1 {
  color: transparent;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 42px rgba(212, 175, 55, 0.18);
  animation: heroTextReveal 0.9s ease both;
  animation-delay: 0.12s;
}

.hero-content p {
  max-width: 720px;
  margin: 20px auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}

.hero-content h3 {
  margin-bottom: 30px;
  color: #cccccc;
  font-weight: normal;
}

.hero-tagline,
.hero-content h3,
.hero-description {
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.85);
}

.eyebrow,
.hero-tagline,
.hero-content h3,
.hero-description,
.hero-buttons {
  animation: heroTextReveal 0.9s ease both;
}

.hero-tagline {
  animation-delay: 0.24s;
}

.hero-content h3 {
  animation-delay: 0.36s;
}

.hero-description {
  animation-delay: 0.48s;
}

.hero-buttons {
  animation-delay: 0.6s;
}

/* HERO BUTTON PREMIUM FIX */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.hero-buttons .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 17px 32px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.65);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(212, 175, 55, 0.14);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.hero-buttons .btn:first-child {
  background: linear-gradient(135deg, #d4af37, #fff1a8, #b8860b);
  color: #000000;
  border-color: rgba(255, 241, 168, 0.85);
}

.hero-buttons .btn.secondary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(212, 175, 55, 0.045), rgba(0, 0, 0, 0.25)),
    rgba(5, 5, 5, 0.9);
  color: #fff1a8;
  border-color: rgba(212, 175, 55, 0.62);
}

.hero-buttons .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35), transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.hero-buttons .btn:hover::before {
  transform: translateX(130%);
}

.hero-buttons .btn:hover {
  transform: translateY(-5px) scale(1.035);
  border-color: rgba(255, 241, 168, 0.95);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 42px rgba(212, 175, 55, 0.28);
}

.hero-buttons .btn:active {
  transform: translateY(-1px) scale(0.97);
}

.hero-trust {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.035);
}

.hero-trust i {
  color: #d4af37;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.38));
}

/* SECTIONS */
.section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 120px 8%;
  text-align: center;
  scroll-margin-top: 125px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(0, 0, 0, 0.035));
}

.section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.75), transparent);
  opacity: 0.14;
  transform: translateX(-50%);
  pointer-events: none;
}

.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  opacity: 0.10;
  animation: ultraSweep 18s ease-in-out infinite;
  pointer-events: none;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section h2 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 36px;
}

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section p {
  max-width: 850px;
  margin: 0 auto 25px;
}

footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding: 25px;
  background: #000000;
  color: #777777;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

/* CARDS */
.grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 100%;
  margin-top: 35px;
}

.agency-grid,
.proof-grid,
.trust-grid {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.card,
.project,
.agency-card,
.proof-card,
.trust-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    filter 0.35s ease;
  will-change: transform, box-shadow, filter;
}

.card,
.project,
.agency-card {
  background:
    linear-gradient(145deg, rgba(18, 18, 18, 0.96), rgba(4, 4, 4, 0.98));
  border: 1px solid var(--border-gold);
  border-radius: 22px;
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.42),
    inset 0 0 14px rgba(212, 175, 55, 0.035);
}

.card {
  padding: 25px;
  font-weight: bold;
}

.project {
  padding: 10px 18px 24px;
  cursor: pointer;
  text-align: center;
}

.card:hover,
.project:hover,
.agency-card:hover,
.proof-card:hover,
.trust-card:hover {
  transform: translateY(-14px) scale(1.015);
  border-color: rgba(212, 175, 55, 0.68);
  filter: saturate(1.08);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.62),
    0 0 34px rgba(212, 175, 55, 0.16),
    inset 0 0 18px rgba(212, 175, 55, 0.05);
}

.project::before,
.card::before,
.trust-card::before,
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  transform: translateX(-120%);
  transition: 0.6s ease;
  pointer-events: none;
}

.project:hover::before,
.card:hover::before,
.trust-card:hover::before,
.feature-card:hover::before {
  transform: translateX(120%);
}

.card::after,
.project::after,
.agency-card::after,
.proof-card::after,
.trust-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 241, 168, 0.10), transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.card:hover::after,
.project:hover::after,
.agency-card:hover::after,
.proof-card:hover::after,
.trust-card:hover::after {
  transform: translateX(130%);
}

.card i {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 22px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.card:hover i {
  transform: translateY(-7px) scale(1.18) rotate(-3deg);
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.85));
  animation: iconPulse 1.2s ease-in-out infinite alternate;
}

.card span,
section .card span {
  display: block;
}

.project h3,
.agency-card h3 {
  margin: 10px 10px 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.project p {
  margin: 0 16px 18px;
  font-size: 14px;
}

.logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 16px 12px 6px;
  overflow: hidden;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 62%);
}

.project-logo {
  display: block;
  width: 150px;
  max-width: 80%;
  height: 70px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.18));
}

.proof-section .proof-card,
.proof-section .proof-card:hover,
.proof-section .proof-card:active,
.proof-section .proof-card:focus,
.proof-section .proof-card:focus-visible,
.trust-section .trust-card,
.trust-section .trust-card:hover,
.trust-section .trust-card:active,
.trust-section .trust-card:focus,
.trust-section .trust-card:focus-visible {
  border: none;
  outline: none;
  background: transparent;
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.35),
    inset 0 0 18px rgba(212, 175, 55, 0.025);
}

.proof-section .proof-card::before,
.proof-section .proof-card::after,
.trust-section .trust-card::before,
.trust-section .trust-card::after {
  display: none;
}

.reveal,
.reveal-card {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* FAQ */
.faq-section .grid {
  overflow: visible;
  padding-left: 6px;
  padding-right: 6px;
}

.faq-section .card,
.faq-section .card:hover,
.faq-section .card:active,
.faq-section .card:focus,
.faq-section .card:focus-visible {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(212, 175, 55, 0.5);
  outline: none;
  text-align: left;
  font-size: 15px;
  line-height: 1.55;
  font-weight: normal;
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.42),
    inset 0 0 14px rgba(212, 175, 55, 0.035);
}

.faq-section .card:hover,
.faq-section .card:active,
.faq-section .card:focus,
.faq-section .card:focus-visible {
  border-color: rgba(212, 175, 55, 0.78);
}

.faq-section .card::before,
.faq-section .card::after {
  display: none;
}

.faq-section .card small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
}

/* CHAT */
.floating-chat-box {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
  width: auto;
  max-width: none;
}

.floating-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.38), rgba(0, 0, 0, 0.95));
  color: transparent;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.45);
  cursor: pointer;
  animation: chatPulse 3s ease-in-out infinite;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    filter 0.28s ease;
  will-change: transform, box-shadow, filter;
}

.floating-chat:hover {
  transform: translateY(-6px) scale(1.08);
  filter: saturate(1.15);
  box-shadow: 0 0 42px rgba(212, 175, 55, 0.55);
}

.floating-chat:active {
  transform: translateY(-1px) scale(0.97);
}

.floating-chat span {
  display: none;
}

.chat-icon {
  width: 38px;
  max-width: 38px;
  height: 38px;
  max-height: 38px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
}

.chat-options {
  display: none;
  width: 240px;
  max-width: 240px;
  padding: 8px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65), 0 0 24px rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.chat-options.show {
  display: block;
  animation: premiumChatOpen 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.chat-options a {
  display: block;
  padding: 12px 13px;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.chat-options a:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateX(-3px);
}

.chat-options strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 15px;
}

.chat-options strong i {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
}

.chat-options small {
  display: none;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.36), rgba(0, 0, 0, 0.94));
  color: var(--gold-light);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.34), 0 14px 34px rgba(0, 0, 0, 0.48);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px) scale(0.92);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.back-to-top:hover {
  filter: saturate(1.15);
  box-shadow: 0 0 38px rgba(212, 175, 55, 0.52), 0 18px 40px rgba(0, 0, 0, 0.58);
  transform: translate(-50%, -4px) scale(1.06);
}

.back-to-top:active {
  transform: translate(-50%, -1px) scale(0.96);
}

.back-to-top i {
  font-size: 18px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
}

/* SOLUTIONS SHOWCASE */
.solutions-showcase {
  position: relative;
  width: min(100%, 900px);
  min-height: 360px;
  margin: 48px auto 45px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(12, 12, 12, 0.98), rgba(0, 0, 0, 0.98));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 28px rgba(212, 175, 55, 0.045);
}

.solutions-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.45;
  pointer-events: none;
}

.solutions-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 241, 168, 0.12), transparent 62%);
  transform: translateX(-120%);
  animation: showcaseSweep 6s ease-in-out infinite;
  pointer-events: none;
}

.showcase-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 68%);
  filter: blur(30px);
  transform: translate(-50%, -50%);
  animation: showcaseGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.showcase-logo-wrap {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), rgba(0, 0, 0, 0.72));
  box-shadow: 0 0 34px rgba(212, 175, 55, 0.25);
  transform: translate(-50%, -50%);
  animation: logoFloat 4s ease-in-out infinite alternate;
}

.showcase-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.4));
}

.orbit {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 1;
  width: 250px;
  height: 250px;
  margin-top: -125px;
  margin-left: -125px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 50%;
}

.orbit span {
  position: absolute;
  left: 50%;
  top: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.96);
  color: var(--gold);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.18);
}

.orbit span i {
  font-size: 18px;
}

.orbit-one {
  animation: orbitSpin 16s linear infinite;
}

.orbit-two {
  width: 310px;
  height: 310px;
  margin-top: -155px;
  margin-left: -155px;
  animation: orbitSpinReverse 22s linear infinite;
}

.orbit-three {
  width: 190px;
  height: 190px;
  margin-top: -95px;
  margin-left: -95px;
  animation: orbitSpin 12s linear infinite;
}

.orbit-four {
  width: 365px;
  height: 365px;
  margin-top: -182.5px;
  margin-left: -182.5px;
  animation: orbitSpinReverse 28s linear infinite;
}

.showcase-copy {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  width: calc(100% - 40px);
  text-align: center;
  transform: translateX(-50%);
}

.showcase-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 26px;
  letter-spacing: 0.5px;
}

.showcase-copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  letter-spacing: 0.8px;
}

/* TRUST STRIP */
.trust-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: inset 0 0 28px rgba(212, 175, 55, 0.035);
}

.trust-strip::before,
.trust-strip::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.trust-strip::before {
  left: 0;
  background: linear-gradient(90deg, #000000, transparent);
}

.trust-strip::after {
  right: 0;
  background: linear-gradient(270deg, #000000, transparent);
}

.trust-strip-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: trustMarquee 28s linear infinite;
}

.trust-strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.trust-strip-track i {
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}

.trust-strip:hover .trust-strip-track {
  animation-play-state: paused;
}

/* ANIMATIONS */
@keyframes titleShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 220% center;
  }
}

@keyframes glowMove {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-20px) scale(1.05);
  }
}

@keyframes luxurySweep {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes iconPulse {
  from {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
  }
  to {
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.9));
  }
}

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes chatPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.28);
  }
  50% {
    box-shadow: 0 0 42px rgba(212, 175, 55, 0.55);
  }
}

@keyframes loaderGlow {
  from {
    opacity: 0.5;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes loaderIconFloat {
  from {
    transform: translateY(0) scale(0.98);
  }
  to {
    transform: translateY(-8px) scale(1.04);
  }
}

@keyframes loaderBarGlow {
  0%, 100% {
    opacity: 0.45;
    transform: translateX(-42%);
  }
  50% {
    opacity: 1;
    transform: translateX(42%);
  }
}

@keyframes loaderChips {
  from {
    transform: translate(-24px, -50%);
  }
  to {
    transform: translate(0, -50%);
  }
}

@keyframes chatMenuUp {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ultraSweep {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(-120%);
  }
}

@keyframes premiumChatOpen {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes showcaseSweep {
  0%, 35% {
    transform: translateX(-120%);
  }
  70%, 100% {
    transform: translateX(120%);
  }
}

@keyframes showcaseGlow {
  from {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes logoFloat {
  from {
    transform: translate(-50%, -50%) translateY(0);
  }
  to {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes trustMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MEDIA QUERIES */
@media (min-width: 900px) {
  .hero-content {
    transition: transform 0.35s ease;
  }

  .hero:hover .hero-content {
    transform: translateY(-6px);
  }
}

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

  .hero-content {
    margin-top: 110px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .project-logo {
    width: 130px;
    height: 60px;
  }
}

@media (max-width: 700px) {
  .navbar,
  nav {
    padding: 10px 4% 8px;
    gap: 8px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.38);
  }

  .navbar::after,
  nav::after {
    display: none;
  }

  .navbar.scrolled,
  nav.scrolled {
    padding: 8px 4% 7px;
    background: rgba(0, 0, 0, 0.88);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
  }

  .main-logo {
    width: 74px;
    max-width: 74px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.28));
  }

  .navbar.scrolled .main-logo,
  nav.scrolled .main-logo {
    width: 60px;
    max-width: 60px;
  }

  .nav-links {
    width: auto;
    max-width: calc(100vw - 28px);
    padding: 10px 14px;
    gap: 18px;
    background: rgba(5, 5, 5, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 999px;
    box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.05), 0 8px 24px rgba(0, 0, 0, 0.35);
  }

  .nav-links:hover a {
    opacity: 1;
  }

  .nav-links a {
    padding: 0;
    color: #f0f0f0;
    font-size: 12.5px;
    letter-spacing: 0;
    text-shadow: none;
  }

  .nav-links a::after {
    bottom: -10px;
    height: 2px;
  }

  .nav-cta,
  .nav-trust {
    display: none;
  }

  .hero {
    padding-top: 38px;
    padding-right: 5%;
    padding-left: 5%;
  }

  .hero-buttons {
    gap: 14px;
    margin-top: 28px;
  }

  .hero-buttons .btn {
    width: min(100%, 280px);
    min-width: 0;
    padding: 15px 24px;
    font-size: 15px;
  }

  .hero-trust {
    width: min(100%, 330px);
    padding: 11px 14px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .hero::before {
    top: 18px;
    left: 4%;
    width: 150px;
    height: 70px;
    opacity: 0.16;
  }

  .hero::after {
    right: 4%;
    bottom: 18px;
    width: 150px;
    height: 70px;
    opacity: 0.11;
  }

  .hero-content,
  .hero-content h1,
  .hero-tagline,
  .hero-content h3,
  .hero-description {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .section {
    padding: 82px 6%;
    scroll-margin-top: 112px;
  }

  .section h2 {
    font-size: 29px;
    line-height: 1.18;
  }

  .section p {
    font-size: 14.5px;
  }

  .card,
  .project,
  .agency-card,
  .proof-card,
  .trust-card {
    border-radius: 18px;
  }

  .card:hover,
  .project:hover,
  .agency-card:hover,
  .proof-card:hover,
  .trust-card:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .faq-section .grid {
    padding-left: 8px;
    padding-right: 8px;
  }

  .faq-section .card,
  .faq-section .card:hover,
  .faq-section .card:active,
  .faq-section .card:focus,
  .faq-section .card:focus-visible {
    transform: none;
    overflow: visible;
    border: 1px solid rgba(212, 175, 55, 0.55);
    outline: none;
  }

  .proof-section .proof-card,
  .proof-section .proof-card:hover,
  .proof-section .proof-card:active,
  .proof-section .proof-card:focus,
  .proof-section .proof-card:focus-visible,
  .trust-section .trust-card,
  .trust-section .trust-card:hover,
  .trust-section .trust-card:active,
  .trust-section .trust-card:focus,
  .trust-section .trust-card:focus-visible {
    transform: none;
    border: none;
    outline: none;
  }

  .floating-chat-box {
    right: 14px;
    bottom: 14px;
  }

  .floating-chat {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
  }

  .chat-icon {
    width: 34px;
    max-width: 34px;
    height: 34px;
    max-height: 34px;
  }

  .chat-options {
    width: 230px;
    max-width: calc(100vw - 28px);
  }

  .back-to-top {
    bottom: 15px;
    width: 48px;
    height: 48px;
  }

  .solutions-showcase {
    min-height: 310px;
    margin: 36px auto 34px;
    border-radius: 22px;
  }

  .showcase-logo-wrap {
    width: 112px;
    height: 112px;
  }

  .showcase-logo {
    width: 74px;
    height: 74px;
  }

  .orbit {
    width: 210px;
    height: 210px;
    margin-top: -105px;
    margin-left: -105px;
  }

  .orbit-two {
    width: 250px;
    height: 250px;
    margin-top: -125px;
    margin-left: -125px;
  }

  .orbit-three {
    width: 160px;
    height: 160px;
    margin-top: -80px;
    margin-left: -80px;
  }

  .orbit-four {
    display: none;
  }

  .orbit span {
    top: -19px;
    width: 42px;
    height: 42px;
    margin-left: -21px;
  }

  .showcase-copy strong {
    font-size: 20px;
  }

  .showcase-copy small {
    font-size: 12px;
  }

  .trust-strip {
    padding: 15px 0;
  }

  .trust-strip-track {
    gap: 22px;
    animation-duration: 24s;
  }

  .trust-strip-track span {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .nav-links {
    gap: 13px;
    padding: 9px 12px;
  }

  .nav-links a {
    font-size: 11.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* === CONTACT ULTRA PREMIUM UPGRADE === */
.contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.14), transparent 34%),
    radial-gradient(circle at 15% 80%, rgba(212, 175, 55, 0.07), transparent 34%),
    radial-gradient(circle at 85% 75%, rgba(255, 241, 168, 0.06), transparent 32%),
    linear-gradient(180deg, #070707 0%, #000000 55%, #080602 100%) !important;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 34px 8%;
  z-index: -1;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(212, 175, 55, 0.025), transparent),
    rgba(5, 5, 5, 0.34);
  box-shadow:
    inset 0 0 38px rgba(212, 175, 55, 0.035),
    0 28px 90px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 241, 168, 0.07), transparent 65%);
  transform: translateX(-120%);
  animation: contactLuxurySweep 9s ease-in-out infinite;
  pointer-events: none;
}

.contact .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  box-shadow: inset 0 0 14px rgba(212, 175, 55, 0.04);
}

.contact h2 {
  margin-top: 18px;
  font-size: clamp(34px, 5vw, 62px) !important;
  letter-spacing: -0.8px;
  text-shadow: 0 0 34px rgba(212, 175, 55, 0.16);
}

.contact > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: clamp(15px, 1.8vw, 18px);
}

.contact-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: min(100%, 820px);
  margin: 46px auto 0;
  padding: 32px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.38);
  box-shadow:
    inset 0 0 24px rgba(212, 175, 55, 0.035),
    0 20px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-actions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 241, 168, 0.9), transparent);
  transform: translateX(-50%);
}

.contact-actions::after {
  content: 'Secure consultation available via email or Telegram';
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-email,
.contact-telegram .btn {
  position: relative;
  overflow: hidden;
  min-width: 260px;
  border: 1px solid rgba(212, 175, 55, 0.58) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(212, 175, 55, 0.045), rgba(0, 0, 0, 0.25)),
    rgba(5, 5, 5, 0.88) !important;
  color: var(--gold-light) !important;
  box-shadow:
    inset 0 0 18px rgba(212, 175, 55, 0.045),
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(212, 175, 55, 0.10) !important;
}

.contact-email::before,
.contact-telegram .btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 241, 168, 0.22), transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.contact-email:hover::before,
.contact-telegram .btn:hover::before {
  transform: translateX(130%);
}

.contact-email:hover,
.contact-telegram .btn:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: rgba(255, 241, 168, 0.9) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 0 22px rgba(212, 175, 55, 0.06),
    0 26px 70px rgba(0, 0, 0, 0.62),
    0 0 42px rgba(212, 175, 55, 0.24) !important;
}

.contact-email i,
.contact-telegram .btn i {
  color: var(--gold-light) !important;
  filter: drop-shadow(0 0 9px rgba(212, 175, 55, 0.42));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-email:hover i,
.contact-telegram .btn:hover i {
  transform: translateY(-1px) scale(1.12);
  filter: drop-shadow(0 0 15px rgba(255, 241, 168, 0.72));
}

.contact-telegram {
  width: 100%;
  gap: 22px;
}

@keyframes contactLuxurySweep {
  0%, 35% {
    transform: translateX(-120%);
  }
  70%, 100% {
    transform: translateX(120%);
  }
}

@media (max-width: 700px) {
  .contact::before {
    inset: 24px 5%;
    border-radius: 26px;
  }

  .contact h2 {
    font-size: 34px !important;
  }

  .contact-actions {
    width: 100%;
    padding: 24px 16px;
    border-radius: 24px;
    gap: 18px;
  }

  .contact-actions::after {
    font-size: 9.5px;
    line-height: 1.5;
  }

  .contact-email,
  .contact-telegram .btn {
    width: 100%;
    max-width: 310px;
    min-width: 0;
  }
}
