@media (min-width: 1025px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 1024px) {
  .nav {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    width: 100vw;
    background: #18181b;
    box-shadow: 0 8px 32px rgba(0,0,0,0.85);
    opacity: 1;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 100;
    padding: 0 0 90px 0;
    border-radius: 0;
    overflow-y: auto;
  }
  .nav.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-link {
    width: 100%;
    padding: 22px 0;
    font-size: 20px;
    text-align: center;
    border-radius: 0;
    background: none;
    margin: 0;
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
    line-height: 1.2;
    word-break: break-word;
  }
  .nav-link:hover {
    background: #232326;
    color: var(--warm-gold);
  }
}
@media (max-width: 1024px) {
  .nav {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    width: 100vw;
    background: #18181b;
    box-shadow: 0 8px 32px rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(212, 165, 116, 0.25);
    opacity: 1;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 100;
    padding: 0 0 80px 0;
    border-radius: 0;
    overflow-y: auto;
  }
  .nav.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-link {
    width: 100%;
    padding: 22px 0;
    font-size: 20px;
    text-align: center;
    border-radius: 0;
    background: none;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
    line-height: 1.2;
    word-break: break-word;
  }
  .nav-link:last-child {
    border-bottom: none;
  }
  .nav-link:hover {
    background: #232326;
    color: var(--warm-gold);
  }
}
@media (max-width: 1024px) {
  .nav {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    background: #18181b;
    box-shadow: 0 8px 32px rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(212, 165, 116, 0.25);
    opacity: 1;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 100;
    padding: 0 0 90px 0;
    border-radius: 0;
  }
  .nav.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-link {
    width: 100%;
    padding: 22px 0;
    font-size: 20px;
    text-align: center;
    border-radius: 0;
    background: none;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-link:last-child {
    border-bottom: none;
  }
  .nav-link:hover {
    background: #232326;
    color: var(--warm-gold);
  }
}
@media (max-width: 1024px) {
  .nav {
    display: none !important;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    background: #18181b;
    box-shadow: 0 8px 32px rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(212, 165, 116, 0.25);
    opacity: 1;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 100;
    padding: 32px 16px 90px 16px;
    border-radius: 0 0 18px 18px;
  }
  .nav.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-link {
    width: 100%;
    padding: 20px 0;
    font-size: 19px;
    text-align: left;
    border-radius: 12px;
    background: #232326;
    margin-bottom: 10px;
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-link:hover {
    background: #2d2d31;
    color: var(--warm-gold);
  }
}
@media (max-width: 1024px) {
  .nav {
    display: none !important;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    background: rgba(24,24,27,0.98);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    border-bottom: 1px solid rgba(212, 165, 116, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px) scale(0.98);
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 100;
    padding: 32px 20px 90px 20px;
  }
  .nav.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-link {
    width: 100%;
    padding: 22px 0;
    font-size: 20px;
    text-align: left;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    margin-bottom: 12px;
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-link:hover {
    background: rgba(212, 165, 116, 0.13);
    color: var(--warm-gold);
  }
  .btn-header {
    display: inline-block;
    padding: 16px 32px;
    font-size: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--warm-gold) 0%, #fffbe6 100%);
    color: #18181b;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(212, 165, 116, 0.18);
    text-align: center;
    border: none;
    transition: background 0.2s, color 0.2s;
    margin-left: 16px;
  }
@media (max-width: 1024px) {
  .nav.active .btn-header {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 24px;
    z-index: 110;
    width: auto;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
  }
}
  .btn-header:hover {
    background: var(--warm-gold);
    color: #fff;
  }
}
@media (max-width: 1024px) {
  .nav {
    background: #18181b;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    border-bottom: 1px solid rgba(212, 165, 116, 0.25);
    opacity: 0.98;
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
    transform: translateY(-10px) scale(0.98);
  }
  .nav.active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .nav-link, .btn-header {
    background: rgba(24,24,27,0.98);
    border: 1px solid rgba(212, 165, 116, 0.08);
    color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .nav-link:hover, .btn-header:hover {
    background: rgba(212, 165, 116, 0.12);
    color: var(--warm-gold);
  }
}
@media (max-width: 1024px) {
  .nav {
    display: none !important;
  }
  .nav.active {
    display: flex !important;
  }
}
/* ========== Premium Legal Design Variables ========== */
:root {
  /* Core Colors */
  --dark-graphite: #1A1A1D;
  --deep-black: #0D0D0F;
  --warm-gold: #D4A574;
  --amber-light: #E8C89F;
  --warm-beige: #F5F1E8;
  --soft-white: #FAFAF8;
  
  /* Ukrainian Flag (subtle) */
  --ua-blue: rgba(0, 87, 183, 0.08);
  --ua-yellow: rgba(255, 215, 0, 0.08);
  
  /* Grays */
  --gray-900: #1A1A1D;
  --gray-800: #2A2A2E;
  --gray-700: #3A3A3E;
  --gray-600: #6A6A6E;
  --gray-500: #8A8A8E;
  --gray-400: #AAAAB0;
  --gray-300: #D0D0D4;
  
  /* Backgrounds */
  --bg-primary: #1A1A1D;
  --bg-card: rgba(42, 42, 46, 0.6);
  --bg-card-hover: rgba(42, 42, 46, 0.8);
  
  /* Gradients */
  --gradient-dark: linear-gradient(180deg, #0D0D0F 0%, #1A1A1D 50%, #2A2A2E 100%);
  --gradient-gold: linear-gradient(135deg, #D4A574 0%, #E8C89F 100%);
  --gradient-vignette: radial-gradient(circle at center, transparent 0%, rgba(13, 13, 15, 0.7) 100%);
  
  /* Shadows & Glows */
  --shadow-gold: 0 4px 24px rgba(212, 165, 116, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glow-gold: 0 0 40px rgba(212, 165, 116, 0.2);
  --glow-inner: inset 0 1px 2px rgba(212, 165, 116, 0.1);
  
  /* Borders */
  --border-gold: 1px solid rgba(212, 165, 116, 0.2);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.05);
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Reset & Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-beige);
  background: #0D0D0F;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #0D0D0F 0%, #1A1A1D 50%, #0D0D0F 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* Ukrainian flag subtle background */
body::after {
  content: '';
  position: fixed;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 60%;
  background: linear-gradient(180deg, var(--ua-blue) 0%, var(--ua-blue) 50%, var(--ua-yellow) 50%, var(--ua-yellow) 100%);
  filter: blur(120px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  animation: flagFloat 20s ease-in-out infinite;
}

@keyframes flagFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 10px); }
}

  .btn-header {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 110;
    width: 90vw;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px 0;
    font-size: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--warm-gold) 0%, #fffbe6 100%);
    color: #18181b;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(212, 165, 116, 0.10);
    text-align: center;
    border: none;
    transition: background 0.2s, color 0.2s;
  }
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 165, 116, 0.3) 50%, 
    transparent 100%);
  opacity: 0.5;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.logo:hover {
  color: var(--warm-gold);
  transform: translateY(-1px);
}

.logo-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 8px rgba(212, 165, 116, 0.3));
}

.logo-text {
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(212, 165, 116, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Показывать бургер-меню только на мобильных */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .nav {
    display: none;
  }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 29, 0.98) 0%, rgba(21, 21, 24, 0.98) 100%);
    backdrop-filter: blur(24px);
    padding: 24px 20px;
    max-height: 400px;
    opacity: 1;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 100;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--warm-gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle:hover span {
  background: #FFFFFF;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* По умолчанию (десктоп) — меню всегда видно */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  position: static;
  flex-direction: row;
  background: none;
  box-shadow: none;
  padding: 0;
  max-height: none;
  opacity: 1;
  transition: none;
}

/* Мобильная версия — меню скрыто, бургер виден */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 29, 0.98) 0%, rgba(21, 21, 24, 0.98) 100%);
    backdrop-filter: blur(24px);
    padding: 24px 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 100;
    max-height: 400px;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.active {
    display: flex;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
}

.nav-link:hover {
  color: var(--warm-gold);
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--warm-gold) 0%, rgba(212, 165, 116, 0.5) 100%);
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
  width: 100%;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  }
  position: static;
  width: auto;
  max-width: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--dark-graphite);
  box-shadow: var(--shadow-gold);
  border: var(--border-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), var(--glow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--warm-gold);
  border: 2px solid rgba(212, 165, 116, 0.3);
}

.btn-secondary:hover {
  border-color: var(--warm-gold);
  background: rgba(212, 165, 116, 0.1);
}

.btn-header {
  padding: 12px 28px;
  font-size: 12px;
  background: linear-gradient(135deg, var(--warm-gold) 0%, rgba(212, 165, 116, 0.85) 100%);
  color: #000000;
  font-weight: 700;
  border: 1px solid var(--warm-gold);
  box-shadow: 
    0 4px 16px rgba(212, 165, 116, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
}

.btn-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-header:hover::before {
  left: 100%;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 24px rgba(212, 165, 116, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(212, 165, 116, 1);
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 800px;
  align-items: center;
}

.hero-main-title {
  font-size: 56px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.hero-urgency {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.urgency-icon {
  font-size: 18px;
  margin-right: 4px;
}

.urgency-text strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: 8px;
}

.urgency-text p {
  font-size: 15px;
  color: rgba(250, 250, 248, 0.8);
  margin: 0;
  line-height: 1.6;
}

.btn-primary-green {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 500px;
  height: 72px;
  padding: 0 48px;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(135deg, #2FA66A 0%, #1F6F43 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 16px 40px rgba(31, 111, 67, 0.4),
    0 0 60px rgba(47, 166, 106, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 
      0 16px 40px rgba(31, 111, 67, 0.4),
      0 0 60px rgba(47, 166, 106, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 
      0 16px 40px rgba(31, 111, 67, 0.5),
      0 0 80px rgba(47, 166, 106, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  }
}

.btn-primary-green::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary-green::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 20px
    );
  pointer-events: none;
}

.btn-primary-green:hover::before {
  left: 100%;
}

.btn-primary-green:hover {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(135deg, #34b277 0%, #228650 100%);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 24px 60px rgba(31, 111, 67, 0.6),
    0 0 100px rgba(47, 166, 106, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  animation: none;
}

.btn-primary-green:active {
  transform: translateY(0);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.3),
    inset 0 0 12px rgba(90, 255, 160, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 -1px 2px rgba(255, 255, 255, 0.1);
}

.btn-primary-green:focus {
  outline: 2px solid rgba(47, 166, 106, 0.5);
  outline-offset: 3px;
}

.btn-primary-green:focus:not(:focus-visible) {
  outline: none;
}

.btn-primary-green svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.hero-priority-block {
  width: 100%;
  max-width: 650px;
}

.priority-header {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.priority-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 20px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.priority-card:hover {
  border-color: rgba(212, 165, 116, 0.3);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.1);
}

.priority-icon {
  font-size: 24px;
  color: var(--warm-gold);
  font-weight: 600;
}

.priority-text {
  font-size: 15px;
  color: var(--soft-white);
  line-height: 1.5;
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.payment-icons span:first-child {
  font-size: 18px;
  margin-right: 4px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.payment-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.payment-logo svg {
  width: 28px;
  height: auto;
  color: rgba(255, 255, 255, 0.9);
}

.payment-logo:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: left;
  width: 100%;
  max-width: 700px;
}

.disclaimer-icon {
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}

.hero-disclaimer p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: var(--border-gold);
  margin-bottom: 48px;
  margin-left: 0;
  animation: fadeInUp 0.8s ease-out;
  box-shadow: var(--glow-inner);
}

.promo-icon {
  font-size: 20px;
  color: var(--warm-gold);
}

.promo-text {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber-light);
}

.hero-title {
  margin-bottom: 32px;
  margin-left: 0;
  padding-left: 0;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  max-width: none;
}

.title-main {
  display: block;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--soft-white);
  letter-spacing: -1.5px;
}

.title-sub {
  display: block;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--gray-400);
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-400);
  margin: 0 0 56px 0;
  padding-left: 0;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  font-weight: 400;
  max-width: none;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
  margin-left: 0;
  padding-left: 0;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
  max-width: none;
  width: 100%;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: var(--border-gold);
  text-align: left;
  transition: var(--transition);
  box-shadow: var(--glow-inner);
  width: 100%;
}

.benefit-item:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--glow-gold);
  border-color: var(--warm-gold);
}

.benefit-icon {
  font-size: 28px;
  flex-shrink: 0;
  color: var(--warm-gold);
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.benefit-text strong {
  font-weight: 600;
  font-size: 16px;
  color: var(--soft-white);
  letter-spacing: 0.3px;
}

.benefit-text span {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: var(--soft-white);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-text {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.7;
}

.hero-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 48px;
}

.hero-list li {
  font-size: 16px;
  color: var(--gray-400);
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
}

.hero-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--warm-gold);
  font-weight: 700;
  font-size: 18px;
}

.hero-cta {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 80px;
  margin-left: 0;
  padding-left: 0;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
  flex-wrap: wrap;
  max-width: none;
  width: 100%;
}

/* ========== Features Section ========== */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-graphite) 0%, #151518 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 165, 116, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.features-section .container {
  position: relative;
  z-index: 2;
}

.feature-block {
  margin-bottom: 48px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-block:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.3);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(212, 165, 116, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block h3 {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.feature-block p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  line-height: 1.6;
  font-style: italic;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 20px;
  padding-left: 48px;
  position: relative;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--warm-gold);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: #E8C89F;
  transform: translateX(4px);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: var(--warm-gold);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(212, 165, 116, 0.15);
  border-radius: 50%;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding-top: 56px;
  border-top: 1px solid rgba(212, 165, 116, 0.15);
  animation: fadeInUp 0.8s ease-out 1s backwards;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--warm-gold);
  letter-spacing: -1px;
}

.trust-label {
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ========== Additional Services ========== */
.additional-services {
  padding: 120px 0;
  background: linear-gradient(180deg, #151518 0%, var(--deep-black) 100%);
  position: relative;
  overflow: hidden;
}

.additional-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.additional-services::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.additional-services .container {
  position: relative;
  z-index: 2;
}

.additional-services h3 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #FFFFFF;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  position: static;
  flex-direction: row;
  background: none;
  box-shadow: none;
  padding: 0;
  max-height: none;
  opacity: 1;
  transition: none;
}

/* Мобильная версия — меню скрыто, бургер виден */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 29, 0.98) 0%, rgba(21, 21, 24, 0.98) 100%);
    backdrop-filter: blur(24px);
    padding: 24px 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 100;
    max-height: 400px;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.active {
    display: flex;
  }
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--warm-gold) 0%, #E8C89F 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 165, 116, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 165, 116, 0.3);
}

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

.service-icon {
  font-size: 56px;
  display: block;
  margin-bottom: 24px;
  filter: grayscale(100%) brightness(2);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  filter: grayscale(0%) brightness(1.2);
  transform: scale(1.1);
}

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ========== How It Works ========== */
.how-it-works {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--deep-black) 0%, #0A0A0C 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 165, 116, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.how-it-works::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 2px;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 165, 116, 0.2) 50%, transparent 100%);
  transform: rotate(15deg);
  z-index: 0;
}

.how-it-works .container {
  position: relative;
  z-index: 2;
}

.how-it-works h3 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #FFFFFF;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.step {
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 165, 116, 0.3);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(212, 165, 116, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--warm-gold) 0%, #E8C89F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-black);
  margin: 0 auto 24px;
  box-shadow: 
    0 8px 24px rgba(212, 165, 116, 0.3),
    0 0 40px rgba(212, 165, 116, 0.2);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 
    0 12px 32px rgba(212, 165, 116, 0.4),
    0 0 60px rgba(212, 165, 116, 0.3);
}

.step h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.step p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ========== Pricing ========== */
.pricing {
  padding: 120px 0;
  background: var(--deep-black);
  position: relative;
}

.pricing h3 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--soft-white);
  letter-spacing: -1px;
}

.pricing-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.pricing-card {
  background: var(--bg-card);
  padding: 56px;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: var(--border-subtle);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), var(--glow-gold);
}

.pricing-card.featured {
  border: 2px solid var(--warm-gold);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  background: var(--bg-card-hover);
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gradient-gold);
  color: var(--deep-black);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-gold);
}

.pricing-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--soft-white);
  letter-spacing: -0.3px;
}

.price {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 52px;
  font-weight: 700;
  color: var(--warm-gold);
  line-height: 1;
  letter-spacing: -1.5px;
}

.price-period {
  font-size: 17px;
  color: var(--gray-400);
  font-weight: 500;
}

.price-original {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-bottom: 24px;
}

.price-per-month {
  font-size: 15px;
  color: var(--warm-gold);
  font-weight: 600;
  margin-bottom: 32px;
}

.features {
  list-style: none;
  margin-bottom: 40px;
}

.features li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
  color: var(--gray-400);
}

.features li:last-child {
  border-bottom: none;
}

.plan-note {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

.payment-info {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.payment-info p {
  font-size: 15px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ========== Footer ========== */
.footer {
  background: var(--deep-black);
  color: var(--gray-400);
  padding: 80px 0 32px;
  border-top: var(--border-subtle);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 56px;
  margin-bottom: 56px;
}

.footer-section h4 {
  color: var(--soft-white);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-500);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.disclaimer-text {
  font-size: 12px;
  color: var(--gray-600);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gold particles animation */
@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(10px, -20px) scale(1.1);
    opacity: 0.6;
  }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .title-main {
    font-size: 52px;
  }
  
  .title-sub {
    font-size: 26px;
  }
  
  .hero-description {
    font-size: 17px;
  }
  
  .benefit-item {
    padding: 28px;
  }
  
  .service-card,
  .pricing-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .header-content {
    height: 68px;
    position: relative;
  }
  
  .logo {
    font-size: 18px;
  }

  .logo-icon {
    font-size: 24px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 29, 0.98) 0%, rgba(21, 21, 24, 0.98) 100%);
    backdrop-filter: blur(24px);
    padding: 24px 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 100;
    max-height: 400px;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.active {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    text-align: left;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateX(4px);
  }

  .nav-link::after {
    display: none;
  }
  
  .btn-header {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--warm-gold) 0%, rgba(212, 165, 116, 0.8) 100%);
    color: #000;
    font-weight: 700;
    border: 1px solid var(--warm-gold);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3);
  }

  .btn-header:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(212, 165, 116, 0.5);
  }
  
  .hero {
    padding-top: 100px;
    padding-bottom: 64px;
  }
  
  .title-main {
    font-size: 38px;
    letter-spacing: -1px;
  }
  
  .title-sub {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 16px;
    margin-bottom: 48px;
  }
  
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-item {
    padding: 24px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn-large {
    width: 100%;
  }
  
  .hero-trust {
    gap: 40px;
  }
  
  .trust-number {
    font-size: 40px;
  }
  
  .additional-services,
  .how-it-works,
  .pricing {
    padding: 80px 0;
  }
  
  .additional-services h3,
  .how-it-works h3,
  .pricing h3 {
    font-size: 32px;
    margin-bottom: 56px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .pricing-card {
    padding: 32px;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .payment-info {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer {
    padding: 64px 0 32px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
