/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Design Tokens */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Colors */
  --bg-main: #fcfdfe;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  
  /* Primary Accent: Premium Electric Blue & Teal for highlights */
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-accent: #06b6d4;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-bg-hover: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-border-hover: rgba(255, 255, 255, 0.85);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  --glass-shadow-hover: 0 12px 40px 0 rgba(31, 38, 135, 0.08);
  --glass-blur: blur(20px) saturate(190%);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Animated Blobs */
.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(120px);
  opacity: 0.4;
  mix-blend-mode: multiply;
  animation: float 25s infinite alternate ease-in-out;
}

.bg-blob-1 {
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(6, 182, 212, 0.1) 70%);
  animation-duration: 20s;
}

.bg-blob-2 {
  bottom: -15%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(236, 72, 153, 0.1) 70%);
  animation-duration: 28s;
  animation-delay: -5s;
}

.bg-blob-3 {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.05) 70%);
  animation-duration: 24s;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(5%, 10%) scale(1.1) rotate(120deg);
  }
  66% {
    transform: translate(-5%, 5%) scale(0.95) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
  }
}

/* Glass Layer Overlay to bind everything together */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: rgba(252, 253, 254, 0.25);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

/* Reusable Glass Styles */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

/* Premium Navigation Bar */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.8rem 2rem;
}

header.scrolled .nav-container {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition-fast);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border: 1.5px solid var(--color-primary);
  border-radius: 50% 50% 50% 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transform: rotate(-45deg);
  transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
  transform: rotate(-45deg) scale(1.1);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.logo-icon svg {
  transform: rotate(45deg);
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  stroke-width: 2.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

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

.nav-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--color-primary);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

.nav-cta svg {
  transition: var(--transition-fast);
}

.nav-cta:hover svg {
  transform: translateX(2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Layout Main container */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* HERO SECTION */
.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  padding: 4rem 0 6rem 0;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bonus-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--color-success);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: shine-glow 3s infinite ease-in-out;
}

@keyframes shine-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(6, 182, 212, 0.22));
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
}

.hero-title span.accent-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* HERO EXCHANGE CONTAINER (CALCULATOR WRAPPER) */
.hero-exchange-wrapper {
  position: relative;
  z-index: 10;
}

/* GLASS CALCULATOR CARD */
.calc-card {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.48);
}

.calc-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 14px;
  margin-bottom: 2rem;
}

.calc-tab-btn {
  flex: 1;
  border: none;
  background: none;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  color: var(--text-muted);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.calc-tab-btn.active {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.input-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
  transition: var(--transition-fast);
}

.input-wrapper:focus-within {
  border-color: rgba(59, 130, 246, 0.4);
  background: white;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.input-field {
  flex: 1;
  border: none;
  background: none;
  padding: 0.75rem 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-primary);
  width: 100%;
}

.input-field:focus {
  outline: none;
}

/* Chrome/Safari/Opera */
.input-field::-webkit-outer-spin-button,
.input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.input-field[type=number] {
  -moz-appearance: textfield;
}

.select-currency {
  border: none;
  background: rgba(0, 0, 0, 0.03);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.select-currency:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Exchange Switcher Button */
.switch-btn-container {
  display: flex;
  justify-content: center;
  margin: -0.5rem 0;
  position: relative;
  z-index: 2;
}

.switch-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.switch-btn:hover {
  transform: rotate(180deg) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* Selectors block for CIS Countries & Cities */
.select-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.custom-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.custom-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
}

.custom-select:focus {
  border-color: rgba(59, 130, 246, 0.4);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

/* Logistic Status Indicator */
.logistics-card {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(59, 130, 246, 0.15);
  background: rgba(59, 130, 246, 0.03);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.logistics-card.office-available {
  border-color: rgba(16, 185, 129, 0.18);
  background: rgba(16, 185, 129, 0.03);
}

.logistics-icon-wrapper {
  color: var(--color-primary);
  margin-top: 0.15rem;
}

.office-available .logistics-icon-wrapper {
  color: var(--color-success);
}

.logistics-text {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.logistics-title {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

/* Custom Radios for Delivery Mode selection */
.delivery-options-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.delivery-radio-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.delivery-radio-label:hover {
  background: rgba(255, 255, 255, 0.7);
}

.delivery-radio-input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.delivery-radio-input:checked {
  border-color: var(--color-primary);
  background: white;
}

.delivery-radio-input:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.delivery-radio-label.selected {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.05);
}

/* Telegram CTA Button (Liquid Glass Button) */
.tg-cta-button {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(6, 182, 212, 0.95));
  color: white;
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Shimmer Highlight Effect on Button */
.tg-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: 0.75s;
}

.tg-cta-button:hover::before {
  left: 150%;
  transition: 0.75s ease-in-out;
}

.tg-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.45);
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-accent));
}

.tg-cta-button:active {
  transform: translateY(0);
}

.tg-cta-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Message Preview under Button */
.message-preview {
  margin-top: 1rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px dashed rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
  white-space: pre-line;
}

.message-preview-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

/* SECTION HEADINGS */
.section-heading-container {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.section-title span.accent-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* SECTION LOGISTICS (DELIVERY & OFFICES) */
.logistics-section {
  padding: 6rem 0;
}

.logistics-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.logistics-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-glass-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.feature-glass-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.feature-glass-card:hover .feature-icon-box {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.feature-card-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.map-illustration-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-glass-card {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1.1 / 1;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.42);
}

.map-svg-mockup {
  flex: 1;
  width: 100%;
  opacity: 0.85;
}

.map-legend {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-primary {
  background-color: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
}

.dot-success {
  background-color: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
}

/* SECTION BENEFITS */
.benefits-section {
  padding: 4rem 0 6rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.08);
  border: 1.5px solid rgba(6, 182, 212, 0.2);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(10deg);
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.benefit-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* FAQ SECTION */
.faq-section {
  padding: 4rem 0 6rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.faq-icon-wrapper {
  color: var(--text-light);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-content p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.faq-item.active {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(255, 255, 255, 0.55);
}

.faq-item.active .faq-question {
  color: var(--color-primary);
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-item.active .faq-content {
  max-height: 250px; /* arbitrary height to slide down */
  padding: 0 1.5rem 0.25rem 1.5rem;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4rem 2rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-info {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: inline-flex;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-light);
}

.footer-links-grid {
  display: flex;
  gap: 6rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-column-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 2px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-bottom-links a:hover {
  color: var(--text-main);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 0 4rem 0;
    text-align: center;
  }
  
  .bonus-tag {
    align-self: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-exchange-wrapper {
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
  }

  .logistics-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .map-illustration-container {
    order: -1;
  }

  .map-glass-card {
    max-width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .nav-container {
    padding: 0.5rem 1.25rem;
  }

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

  .menu-toggle {
    display: block;
    color: var(--text-main);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .select-row {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    gap: 3rem;
    flex-wrap: wrap;
  }
}
