/* =====================================================
   OFFLINEMAPS — Premium Travel Magazine Style
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-bg-hover: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-blur: blur(24px);
  --dark: #060810;
  --dark-2: #0D1220;
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, 0.70);
  --white-40: rgba(255, 255, 255, 0.40);
  --white-15: rgba(255, 255, 255, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 80px;
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Selection ─── */
::selection { background: rgba(201, 168, 76, 0.3); color: #fff; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6, 8, 16, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo .logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-70);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.3s, background 0.3s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--white-15);
}
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 40px;
  transition: var(--transition);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 8, 16, 0.97);
  backdrop-filter: var(--glass-blur);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-70);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu-close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* =====================================================
   HERO — FULL VIEWPORT
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,8,16,0.45) 0%,
    rgba(6,8,16,0.25) 40%,
    rgba(6,8,16,0.65) 80%,
    rgba(6,8,16,0.92) 100%
  );
}
.hero-overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6,8,16,0.6) 0%,
    transparent 60%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: var(--nav-h);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 750px;
}
.hero-title em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.9);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--white-70);
  font-weight: 300;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 70px;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.4);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.55);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-secondary:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-3px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.12);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat { padding: 0 32px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--white-40);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--white-15);
  margin-right: 32px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0.6;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg { transform: none; }
.page-hero .hero-content {
  padding-bottom: 60px;
}
.page-hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.page-title em { font-style: italic; color: var(--gold-light); }
.page-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  margin-top: 16px;
  max-width: 520px;
  line-height: 1.6;
}

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 100px 0;
}
.section-sm { padding: 70px 0; }
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  line-height: 1.65;
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-tag { justify-content: center; }
.text-center .section-tag::before { display: none; }
.text-center .section-subtitle { margin: 0 auto; }

/* Dark sections */
.bg-dark { background: var(--dark); }
.bg-dark-2 { background: var(--dark-2); }
.bg-glass {
  background: linear-gradient(180deg, rgba(201,168,76,0.04) 0%, transparent 100%);
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* =====================================================
   GLASS CARDS
   ===================================================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.glass-card-inner {
  padding: 36px;
}

/* =====================================================
   FEATURE CARDS — INDEX
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2) 0%, rgba(201,168,76,0.05) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.feature-text {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.65;
}

/* =====================================================
   APP CARDS
   ===================================================== */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.app-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}
.app-card-header {
  padding: 28px 28px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--glass-border);
}
.app-logo {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.app-logo-img {
  width: 60px; height: 60px;
  border-radius: 16px;
  object-fit: cover;
}
.app-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.app-meta {
  font-size: 0.8rem;
  color: var(--white-40);
  display: flex;
  gap: 12px;
}
.app-rating {
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}
.app-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-free { background: rgba(34,197,94,0.18); color: #86efac; border: 1px solid rgba(34,197,94,0.25); }
.badge-paid { background: rgba(201,168,76,0.18); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.25); }
.badge-freemium { background: rgba(99,102,241,0.18); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.25); }
.badge-top {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  margin-left: auto;
  flex-shrink: 0;
}

.app-card-body {
  padding: 20px 28px;
  flex: 1;
}
.app-description {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.6;
  margin-bottom: 20px;
}
.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.app-feature-tag {
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-border);
  color: var(--white-70);
}
.app-platforms {
  display: flex;
  gap: 8px;
}
.platform-icon {
  font-size: 0.8rem;
  color: var(--white-40);
  display: flex;
  align-items: center;
  gap: 4px;
}

.app-card-footer {
  padding: 16px 28px 24px;
  display: flex;
  gap: 10px;
}
.btn-download {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 12px 20px;
  border-radius: 40px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
}
.btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white-70);
  transition: var(--transition);
  font-size: 1rem;
}
.btn-more:hover { background: var(--glass-bg-hover); color: var(--white); }

/* =====================================================
   APP COMPARISON TABLE
   ===================================================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table thead tr {
  background: linear-gradient(90deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.05) 100%);
}
.comparison-table th {
  padding: 18px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--glass-border);
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--white-70);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comparison-table td:first-child {
  text-align: left;
  color: var(--white);
  font-weight: 500;
}
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.04); }
.check { color: #86efac; font-size: 1rem; }
.cross { color: rgba(255,255,255,0.25); font-size: 1rem; }
.partial { color: var(--gold-light); font-size: 1rem; }

.table-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: auto;
}

/* =====================================================
   HOW TO STEPS
   ===================================================== */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 60px;
  bottom: 60px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--glass-border));
}
.step-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}
.step-item:last-child { border-bottom: none; }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.step-content {}
.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.step-text {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 16px;
}
.step-tip {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--gold-light);
  line-height: 1.5;
}
.step-tip-icon { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(201,168,76,0.35);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  transition: color 0.3s;
  user-select: none;
}
.faq-question:hover { color: var(--gold-light); }
.faq-item.open .faq-question { color: var(--gold-light); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
  color: var(--white-70);
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,8,16,0.88) 0%, rgba(6,8,16,0.70) 50%, rgba(201,168,76,0.15) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-subtitle {
  font-size: 1rem;
  color: var(--white-70);
  margin-bottom: 40px;
  line-height: 1.65;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   TESTIMONIAL / QUOTE
   ===================================================== */
.quote-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,8,16,0.82);
}
.quote-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 32px;
  display: block;
  opacity: 0.7;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 32px;
}
.quote-author {
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =====================================================
   BENEFITS GRID
   ===================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.benefit-item {
  background: var(--dark);
  padding: 44px 40px;
  transition: background 0.3s;
}
.benefit-item:hover { background: var(--dark-2); }
.benefit-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.4);
  line-height: 1;
  margin-bottom: 20px;
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.benefit-text {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.65;
}

/* =====================================================
   USE CASES
   ===================================================== */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.usecase-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.usecase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.usecase-card:hover .usecase-bg { transform: scale(1.08); }
.usecase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6,8,16,0.85) 100%
  );
}
.usecase-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}
.usecase-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.usecase-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.usecase-text {
  font-size: 0.8rem;
  color: var(--white-70);
  line-height: 1.5;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info { }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: var(--gold-light); }
.contact-item-label {
  font-size: 0.75rem;
  color: var(--white-40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

/* Form */
.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--white-70);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.09);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-40); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-logo .logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo .logo-icon svg { width: 18px; height: 18px; fill: white; }
.footer-logo span { color: var(--gold); }
.footer-desc {
  font-size: 0.875rem;
  color: var(--white-40);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-40);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold-light);
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--white-40);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--white-40);
}
.footer-copy span { color: var(--gold); }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--white-40);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--white-70); }

/* =====================================================
   INLINE BANNER STRIP
   ===================================================== */
.strip {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  text-align: center;
}
.strip a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Number counter */
.counter { display: inline; }

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-container { gap: 0; }

  .hero-title { font-size: 2.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-divider { margin: 0 16px; }
  .stat { padding-right: 16px; }
  .hero-stats { gap: 0; }
  .comparison-table th, .comparison-table td { padding: 12px 10px; font-size: 0.8rem; }
  .step-item { grid-template-columns: 50px 1fr; gap: 20px; }
  .steps-list::before { left: 24px; }
}

@media (max-width: 500px) {
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .hero-content { padding: 0 20px; padding-top: var(--nav-h); }
  .usecases-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
