/* ============================================================
   Asia-Pacific Texas International Style
   Sunset Gold (#d97706) + Asia-Pacific Blue (#1e40af)
   Light Theme with Bold Gold & Blue Accents
   ============================================================ */

/* --- CSS Variables / Root --- */
:root {
  --gold: #d97706;
  --gold-light: #f59e0b;
  --gold-dark: #b45309;
  --gold-bg: #fffbeb;
  --blue: #1e40af;
  --blue-light: #2563eb;
  --blue-dark: #1e3a8a;
  --blue-bg: #eff6ff;
  --gradient-gb: linear-gradient(135deg, #d97706 0%, #f59e0b 30%, #1e40af 70%, #2563eb 100%);
  --gradient-gold: linear-gradient(135deg, #b45309, #d97706, #f59e0b);
  --gradient-blue: linear-gradient(135deg, #1e3a8a, #1e40af, #2563eb);
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 14px rgba(217,119,6,0.25);
  --shadow-blue: 0 4px 14px rgba(30,64,175,0.25);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

/* --- Base Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Navbar --- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid rgba(217,119,6,0.15);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.5rem; font-weight: 800;
  background: var(--gradient-gb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.nav-logo i { font-size: 1.8rem; -webkit-text-fill-color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  display: block; padding: 0.5rem 1rem;
  color: var(--text-dark); text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 60%; }
.nav-cta {
  background: var(--gradient-gold) !important;
  color: #fff !important; padding: 0.5rem 1.25rem !important;
  border-radius: 2rem !important;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,119,6,0.4) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 1.25rem; font-weight: 700;
  color: var(--text-dark); text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); background: var(--gold-bg); }
.mobile-menu .mobile-cta {
  background: var(--gradient-gold); color: #fff;
  border-radius: 2rem; box-shadow: var(--shadow-gold);
}

/* --- Hero Section --- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-bg) 0%, #fff 50%, var(--gold-bg) 100%);
  min-height: 600px; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute;
  top: -50%; right: -20%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(217,119,6,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -30%; left: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,64,175,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; padding: 3rem 1.5rem;
  position: relative; z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-bg); color: var(--gold-dark);
  padding: 0.4rem 1rem; border-radius: 2rem;
  font-weight: 600; font-size: 0.85rem;
  border: 1px solid rgba(217,119,6,0.2);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: 3rem; font-weight: 900; line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-title .gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .blue-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--text-gray);
  margin-bottom: 2rem; max-width: 500px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; text-decoration: none; border-radius: 2rem; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-gold { background: var(--gradient-gold); color: #fff; padding: 0.85rem 2rem; box-shadow: var(--shadow-gold); font-size: 1rem; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(217,119,6,0.45); }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); padding: 0.85rem 2rem; background: transparent; font-size: 1rem; }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-blue); }

/* Hero Map / Geographic Element */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.geo-map {
  position: relative;
  width: 100%; max-width: 500px; aspect-ratio: 1;
}
.map-globe {
  width: 100%; height: 100%;
  background: radial-gradient(circle at 40% 35%, rgba(217,119,6,0.15), rgba(30,64,175,0.10), transparent 70%);
  border-radius: 50%; position: relative;
  border: 3px solid rgba(217,119,6,0.25);
  box-shadow: 0 0 60px rgba(217,119,6,0.12), 0 0 120px rgba(30,64,175,0.08);
  animation: float-globe 6s ease-in-out infinite;
}
.map-globe::before {
  content: ''; position: absolute; inset: 15%;
  border-radius: 50%;
  border: 1px dashed rgba(30,64,175,0.3);
  animation: spin-slow 20s linear infinite;
}
.map-globe::after {
  content: ''; position: absolute; inset: 30%;
  border-radius: 50%;
  border: 1px dashed rgba(217,119,6,0.3);
  animation: spin-slow 15s linear infinite reverse;
}
.map-dots { position: absolute; inset: 0; }
.map-dot {
  position: absolute; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(217,119,6,0.6);
}
.map-dot:nth-child(1) { top: 30%; left: 65%; animation-delay: 0s; }
.map-dot:nth-child(2) { top: 25%; left: 70%; animation-delay: 0.4s; background: var(--blue); box-shadow: 0 0 8px rgba(30,64,175,0.6); width: 10px; height: 10px; }
.map-dot:nth-child(3) { top: 40%; left: 60%; animation-delay: 0.8s; }
.map-dot:nth-child(4) { top: 50%; left: 72%; animation-delay: 0.3s; background: var(--blue); box-shadow: 0 0 8px rgba(30,64,175,0.6); width: 6px; height: 6px; }
.map-dot:nth-child(5) { top: 35%; left: 35%; animation-delay: 0.6s; }
.map-dot:nth-child(6) { top: 55%; left: 40%; animation-delay: 0.2s; background: var(--blue); box-shadow: 0 0 8px rgba(30,64,175,0.6); }
.map-dot:nth-child(7) { top: 20%; left: 45%; animation-delay: 0.7s; }
.map-dot:nth-child(8) { top: 60%; left: 55%; animation-delay: 0.5s; background: var(--blue); box-shadow: 0 0 8px rgba(30,64,175,0.6); width: 12px; height: 12px; }
.map-lines {
  position: absolute; inset: 0; border-radius: 50%;
}
.map-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(217,119,6,0.15);
}
.map-ring:nth-child(1) { inset: 5%; }
.map-ring:nth-child(2) { inset: 25%; }
.map-ring:nth-child(3) { inset: 45%; border-style: dashed; }
.hero-img-bg {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden; opacity: 0.15;
}
.hero-img-bg img { width: 100%; height: 100%; object-fit: cover; }

@keyframes float-globe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0.5; }
}

/* --- Section Common --- */
.section { padding: 5rem 1.5rem; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  background: var(--blue-bg); color: var(--blue);
  padding: 0.3rem 1rem; border-radius: 2rem;
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.section-title {
  font-size: 2.25rem; font-weight: 800;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.section-title .gold { color: var(--gold); }
.section-title .blue { color: var(--blue); }
.section-subtitle {
  font-size: 1.05rem; color: var(--text-gray); max-width: 600px;
  margin: 0 auto;
}

/* --- Features Section --- */
.features { background: #fafbfc; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.feature-card {
  background: #fff; padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  position: relative; overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  opacity: 0; transition: opacity 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217,119,6,0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: all 0.35s ease;
}
.feature-icon.gold-bg {
  background: var(--gold-bg); color: var(--gold);
  border: 2px solid rgba(217,119,6,0.2);
}
.feature-icon.blue-bg {
  background: var(--blue-bg); color: var(--blue);
  border: 2px solid rgba(30,64,175,0.2);
}
.feature-card:hover .feature-icon.gold-bg {
  background: var(--gold); color: #fff;
  box-shadow: var(--shadow-gold);
}
.feature-card:hover .feature-icon.blue-bg {
  background: var(--blue); color: #fff;
  box-shadow: var(--shadow-blue);
}
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.65; }
.gold-border-card {
  border: 2px solid rgba(217,119,6,0.25);
}
.gold-border-card:hover {
  border-color: var(--gold);
}

/* --- Stats Section --- */
.stats { background: var(--gradient-gb); position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats .section-label { background: rgba(255,255,255,0.15); color: #fff; }
.stats .section-title { color: #fff; }
.stats .section-subtitle { color: rgba(255,255,255,0.8); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center; padding: 2rem 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.35s ease;
}
.stat-item:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
}
.stat-number { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.4rem; }
.stat-plus { font-size: 1.5rem; color: var(--gold-light); }
.stat-label { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* --- Testimonials --- */
.testimonials { background: #fff; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
  background: #fff; padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid #f0f0f0;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
}
.testimonial-card::after {
  content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 2rem; color: rgba(217,119,6,0.1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217,119,6,0.2);
}
.testimonial-card .stars { color: var(--gold-light); margin-bottom: 0.75rem; font-size: 0.9rem; }
.testimonial-card .stars i { margin-right: 2px; }
.testimonial-card .test-text { color: var(--text-gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-card .test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-gb);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
}
.test-author-info h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.15rem; }
.test-author-info span { font-size: 0.8rem; color: var(--text-gray); }

/* --- FAQ Section --- */
.faq { background: #fafbfc; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: var(--radius);
  margin-bottom: 0.75rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(217,119,6,0.25);
}
.faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.faq-question {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 700; font-size: 1rem;
  color: var(--text-dark);
  user-select: none;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-marker {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  background: var(--blue-bg); color: var(--blue);
  border: 2px solid rgba(30,64,175,0.2);
  transition: all 0.3s ease;
}
.faq-item.active .faq-marker {
  background: var(--gold); color: #fff;
  border-color: var(--gold);
}
.faq-flag { font-size: 1rem; }
.faq-toggle {
  margin-left: auto; transition: transform 0.35s ease;
  color: var(--text-gray);
}
.faq-item.active .faq-toggle { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 1.25rem 1.25rem 4rem;
  color: var(--text-gray); font-size: 0.95rem; line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--gradient-gb); position: relative; overflow: hidden;
  padding: 4rem 1.5rem; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { font-size: 2.25rem; font-weight: 900; color: #fff; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--blue);
  padding: 1rem 2.5rem; font-weight: 800; font-size: 1.1rem;
  border-radius: 3rem; text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
}
.btn-cta:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.btn-cta i { color: var(--gold); }

/* --- Download Page --- */
.download-hero {
  background: linear-gradient(135deg, var(--blue-bg) 0%, #fff 50%, var(--gold-bg) 100%);
  padding: 4rem 1.5rem; text-align: center;
}
.download-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.75rem; }
.download-hero h1 .gold { color: var(--gold); }
.download-hero p { color: var(--text-gray); font-size: 1.1rem; }
.download-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding: 2rem 1.5rem 4rem;
  max-width: 1100px; margin: 0 auto;
}
.download-card {
  background: #fff; padding: 2.5rem 1.5rem; text-align: center;
  border-radius: var(--radius-xl);
  border: 2px solid #e5e7eb;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
}
.download-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.download-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  position: relative;
}
.download-card.featured::after {
  content: 'POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-gold); color: #fff;
  padding: 0.25rem 1.25rem; border-radius: 2rem;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
}
.download-icon {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 2rem;
  background: var(--gold-bg); color: var(--gold);
  border: 2px solid rgba(217,119,6,0.2);
  transition: all 0.35s ease;
}
.download-card:hover .download-icon {
  background: var(--gold); color: #fff;
  box-shadow: var(--shadow-gold);
}
.download-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.download-card p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 1.5rem; }
.btn-download {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient-gold); color: #fff;
  padding: 0.8rem 2rem; font-weight: 700; font-size: 1rem;
  border-radius: 2rem; text-decoration: none;
  box-shadow: var(--shadow-gold); transition: all 0.3s ease;
}
.btn-download:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(217,119,6,0.4); }

/* Guide Steps */
.guide-section { background: #fafbfc; padding: 4rem 1.5rem; }
.guide-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.guide-step {
  text-align: center; padding: 2rem 1rem; position: relative;
}
.guide-step-num {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 900; font-size: 1.25rem;
  background: var(--gradient-gold); color: #fff;
  box-shadow: var(--shadow-gold);
}
.guide-step h4 { font-weight: 700; margin-bottom: 0.4rem; }
.guide-step p { color: var(--text-gray); font-size: 0.9rem; }
.guide-connector {
  display: none;
}
@media (min-width: 768px) {
  .guide-step { position: relative; }
  .guide-step::after {
    content: ''; position: absolute; top: 25px; right: -12px;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
  }
  .guide-step:last-child::after { display: none; }
}

/* Download Note */
.download-note {
  text-align: center; padding: 0 1.5rem 4rem;
  color: var(--text-gray); font-size: 0.95rem;
}
.download-note i { color: var(--gold); margin-right: 0.4rem; }

/* --- About Page --- */
.about-hero {
  background: linear-gradient(135deg, var(--blue-bg) 0%, #fff 50%, var(--gold-bg) 100%);
  padding: 4rem 1.5rem; text-align: center;
}
.about-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.75rem; }
.about-hero h1 .gold { color: var(--gold); }
.about-hero p { color: var(--text-gray); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.about-content { max-width: 1000px; margin: 0 auto; padding: 3rem 1.5rem; }
.about-block { margin-bottom: 3rem; }
.about-block h2 {
  font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.about-block h2 i { color: var(--gold); }
.about-block p { color: var(--text-gray); line-height: 1.8; font-size: 1rem; }
.value-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-top: 2rem;
}
.value-card {
  text-align: center; padding: 1.75rem 1rem;
  background: #fff; border-radius: var(--radius-lg);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

/* --- Contact Page --- */
.contact-hero {
  background: linear-gradient(135deg, var(--blue-bg) 0%, #fff 50%, var(--gold-bg) 100%);
  padding: 4rem 1.5rem; text-align: center;
}
.contact-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.75rem; }
.contact-hero h1 .gold { color: var(--gold); }
.contact-hero p { color: var(--text-gray); font-size: 1.1rem; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem;
  max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 4rem;
}
.contact-info-side { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: #fff; padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid #f0f0f0;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  border-color: rgba(217,119,6,0.25);
  box-shadow: var(--shadow-sm);
}
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: var(--gold-bg); color: var(--gold);
  border: 2px solid rgba(217,119,6,0.2);
}
.contact-info-text h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-info-text span { color: var(--text-gray); font-size: 0.9rem; }
.contact-form-side {
  background: #fff; padding: 2rem;
  border-radius: var(--radius-xl);
  border: 2px solid #e5e7eb;
  box-shadow: var(--shadow-md);
}
.contact-form-side h3 {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem;
}
.contact-form-side h3 i { color: var(--gold); margin-right: 0.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 2px solid #e5e7eb; border-radius: 0.6rem;
  font-size: 0.95rem; font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.btn-submit {
  background: var(--gradient-gold); color: #fff;
  padding: 0.85rem 2.5rem; font-weight: 700; font-size: 1rem;
  border-radius: 2rem; border: none; cursor: pointer;
  box-shadow: var(--shadow-gold); transition: all 0.3s ease;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(217,119,6,0.4); }

/* --- Footer --- */
.footer {
  background: #0f172a; color: #cbd5e1;
  padding: 4rem 1.5rem 2rem;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-gb);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  position: relative; z-index: 1;
}
.footer-col h4 {
  color: #fff; font-size: 1.1rem; font-weight: 700;
  margin-bottom: 1.25rem; position: relative; padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: #94a3b8; text-decoration: none;
  font-size: 0.9rem; transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-col ul li a i { font-size: 0.7rem; color: var(--gold); }
.footer-contact-item {
  display: flex; gap: 0.6rem; align-items: flex-start;
  margin-bottom: 0.75rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; }
.footer-contact-item span { font-size: 0.9rem; color: #94a3b8; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  position: relative; z-index: 1;
}
.footer-bottom p { font-size: 0.85rem; color: #64748b; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Page Header (for non-index pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--blue-bg) 0%, #fff 50%, var(--gold-bg) 100%);
  padding: 4rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-header h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.page-header p { color: var(--text-gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .download-cards { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-visual { min-height: 280px; }
  .geo-map { max-width: 300px; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-title { font-size: 1.75rem; }
  .cta-banner h2 { font-size: 1.75rem; }

  .download-cards { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .guide-steps { grid-template-columns: 1fr; }
  .guide-step::after { display: none; }

  .faq-answer-inner { padding-left: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1rem; }
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }

/* Gold shimmer effect for map */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
