/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #06060b;
  --bg-elevated: rgba(12, 12, 24, 0.6);
  --bg-card: rgba(14, 14, 28, 0.55);
  --bg-card-hover: rgba(20, 20, 40, 0.65);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(139, 92, 246, 0.3);
  --neon-cyan: #00d4ff;
  --neon-blue: #6366f1;
  --neon-purple: #7c3aed;
  --neon-violet: #a78bfa;
  --accent: #a5f3fc;
  --text: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --highlight: #a5b4fc;
  --btn-gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #6366f1);
  --btn-glow: 0 4px 24px rgba(99, 102, 241, 0.35);
  --btn-glow-hover: 0 8px 40px rgba(99, 102, 241, 0.5);
  --card-border: 1px solid rgba(255, 255, 255, 0.06);
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 8px 32px rgba(99, 102, 241, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.10), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.05), transparent),
    url('bg.jpg') center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

body > *:not(script) {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== DESC CARDS ===== */
.desc-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 14px;
  position: relative;
  overflow: visible;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.desc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  overflow: hidden;
}

.desc-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--card-shadow-hover);
}

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

.desc-card .description-text {
  margin-bottom: 0;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 6, 11, 0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: visible;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  text-decoration: none;
}

.nav-pill {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

.nav-pill:hover {
  color: #fff;
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.15);
}

.nav-contact-wrapper {
  position: relative;
}

.nav-contact-btn {
  cursor: pointer;
  font-family: var(--font);
  border: 1px solid var(--border);
}

.contact-dropdown.nav-contact-dropdown {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 8px;
  z-index: 200;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}

.contact-dropdown.nav-contact-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
}

.nav-about-wrapper {
  position: relative;
}

.nav-about-btn {
  cursor: pointer;
  font-family: var(--font);
  border: 1px solid var(--border);
}

.nav-about-dropdown {
  position: absolute;
  top: calc(100% + 22px);
  left: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-about-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-about-card {
  width: 760px;
  padding: 24px 26px;
  background: rgba(10, 10, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
}

.nav-about-card p {
  margin-bottom: 12px;
}

.nav-about-card p:last-child {
  margin-bottom: 0;
}

.nav-about-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

/* ===== STATUS INDICATOR ===== */
.header-status-wrapper {
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
}

.header-status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  background: linear-gradient(270deg, #60a5fa, #2563eb, #a5f3fc, #60a5fa, #2563eb);
  background-size: 400% 400%;
  background-position: 0% 50%;
  position: relative;
  z-index: 1;
}

.header-status-pill::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  background: rgba(8, 8, 18, 0.88);
  z-index: -1;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e, 0 0 20px rgba(34, 197, 94, 0.4);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px #22c55e, 0 0 20px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 12px #22c55e, 0 0 30px rgba(34, 197, 94, 0.6); }
}

.status-label {
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.status-dropdown {
  position: absolute;
  top: calc(100% + 28px);
  right: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}

.status-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.status-dropdown-card {
  width: 340px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: linear-gradient(270deg, #60a5fa, #2563eb, #a5f3fc, #60a5fa, #2563eb);
  background-size: 400% 400%;
  background-position: 0% 50%;
  position: relative;
}

.status-dropdown-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: rgba(8, 8, 18, 0.92);
  z-index: 0;
}

.status-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 4px;
}

.status-row:last-child {
  border-bottom: none;
}

.status-row-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.status-row-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text-small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 2px;
  opacity: 0.9;
}

/* ===== HERO ===== */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 50px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.neon-title {
  font-size: clamp(2.8rem, 9vw, 6rem);
  font-weight: 900;
  letter-spacing: 10px;
  color: #fff;
  position: relative;
  z-index: 1;
  background: linear-gradient(270deg, #60a5fa, #ffffff, #a5f3fc, #60a5fa, #ffffff);
  background-size: 400% 400%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.35)) drop-shadow(0 0 60px rgba(99, 102, 241, 0.2));
}

.hero-subtitle {
  margin-top: 6px;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  background: linear-gradient(270deg, #60a5fa, #ffffff, #a5f3fc, #60a5fa, #ffffff);
  background-size: 400% 400%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.2));
}

/* ===== DESCRIPTION ===== */
.description-section {
  padding: 30px 0 30px;
  text-align: center;
}

.description-text {
  max-width: 680px;
  margin: 0 auto 14px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.highlight {
  color: var(--highlight);
  font-weight: 600;
}

/* Info icon */
.info-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 4px;
  vertical-align: middle;
}

.info-i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(270deg, #4338ca, #6d28d9, #a21caf, #4338ca, #6d28d9);
  background-size: 400% 400%;
  background-position: 0% 50%;
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.info-icon:hover .info-i {
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.4);
}

.info-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  padding: 16px 20px;
  background: rgba(14, 14, 28, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 50;
  pointer-events: none;
}

.info-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(99, 102, 241, 0.25);
}

.info-icon.active .info-tooltip,
.info-icon:hover .info-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ===== CONTACT BUTTON ===== */
.contact-btn-wrapper,
.cta-btn-wrapper {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
}

.btn-glow {
  padding: 18px 52px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font);
  color: #fff;
  background: linear-gradient(270deg, #4338ca, #6d28d9, #a21caf, #4338ca, #6d28d9);
  background-size: 400% 400%;
  background-position: 0% 50%;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: var(--btn-glow);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
  position: relative;
  z-index: 2;
  letter-spacing: 0.3px;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(139, 92, 246, 0.5));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  filter: blur(12px);
}

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

.btn-glow:hover::before {
  opacity: 1;
}

.btn-glow:active {
  transform: translateY(0) scale(0.98);
}

.contact-dropdown {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.contact-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 14px 36px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s;
}

.dropdown-link:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

/* ===== IMPORTANT INFO ===== */
.important-info-section {
  padding: 40px 0;
}

.info-card-highlight {
  max-width: 680px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius);
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.info-card-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
}

/* ===== CONDITIONS ===== */
.conditions-section {
  padding: 30px 0 50px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.condition-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.condition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.condition-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

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

.condition-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(270deg, #60a5fa, #ffffff, #a5f3fc, #60a5fa, #ffffff);
  background-size: 400% 400%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.condition-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.condition-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.condition-list .label {
  color: var(--text-muted);
  font-weight: 500;
}

.condition-note {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
}

/* ===== ADVANTAGES ===== */
.advantages-section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: 1px;
  background: linear-gradient(270deg, #ffffff, #c8c8d0, #ffffff, #c8c8d0, #ffffff);
  background-size: 400% 400%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.advantage-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.advantage-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

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

.advantage-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
  text-align: center;
}

.advantage-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}

/* ===== PARTNERS ===== */
.partners-section {
  padding: 60px 0 50px;
}

.partners-title {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.partner-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.partner-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: var(--card-shadow-hover);
}

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

.partner-card.expanded {
  transform: scale(1.04);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.partner-card.expanded::before {
  opacity: 1;
}

.partner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.partner-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.partner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.partner-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}

.partner-go-btn {
  display: inline-block;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: var(--btn-gradient);
  border-radius: 10px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.partner-card.expanded .partner-go-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.partner-go-btn:hover {
  box-shadow: var(--btn-glow);
}

/* ===== CTA ===== */
.cta-section {
  padding: 70px 24px;
  text-align: center;
}

.cta-welcome {
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(270deg, #60a5fa, #ffffff, #a5f3fc, #60a5fa, #ffffff);
  background-size: 400% 400%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.25)) drop-shadow(0 0 50px rgba(99, 102, 241, 0.15));
  margin-bottom: 36px;
}

.btn-cta {
  font-size: 1.15rem;
  padding: 22px 64px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    gap: 5px;
  }

  .nav-pill {
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  body::before {
    background:
      radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.10), transparent),
      radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.05), transparent),
      url('bg-mobile.jpg') center / cover no-repeat;
  }

  .conditions-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .advantages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .neon-title {
    letter-spacing: 5px;
  }

  .hero {
    padding: 110px 20px 36px;
  }

  .info-tooltip {
    width: 280px;
    font-size: 0.78rem;
  }

  .btn-glow {
    padding: 12px 32px;
    font-size: 0.9rem;
  }

  .btn-cta {
    padding: 14px 40px;
    font-size: 0.95rem;
  }
}

@media (max-width: 520px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .partners-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 300px;
  }

  .description-text {
    font-size: 0.92rem;
  }

  .info-card-highlight {
    padding: 22px 18px;
    font-size: 0.92rem;
  }

  .info-tooltip {
    width: 250px;
    left: auto;
    right: -10px;
    transform: none;
  }

  .info-tooltip::after {
    left: auto;
    right: 16px;
    transform: none;
  }
}

@media (max-width: 380px) {
  .partners-grid {
    grid-template-columns: 1fr;
    max-width: 220px;
  }

  .btn-glow {
    padding: 11px 26px;
    font-size: 0.85rem;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.advantages-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.advantages-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.advantages-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.advantages-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.advantages-grid .reveal:nth-child(6) { transition-delay: 0.35s; }
.advantages-grid .reveal:nth-child(7) { transition-delay: 0.42s; }
.advantages-grid .reveal:nth-child(8) { transition-delay: 0.49s; }

.conditions-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.conditions-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.partners-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.partners-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.partners-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
