/* ============================================================
   INDONESIA GOLDEN VISAS — Design System
   Aman-inspired luxury aesthetic
   Deep Navy + Gold + White + Light Gray + Charcoal
   ============================================================ */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* ============================================================
   LIGHT MODE (Default) — Aman-Inspired Palette
   ============================================================ */
:root, [data-theme="light"] {
  /* Surfaces */
  --color-bg:             #FAFAF8;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F5F5F0;
  --color-surface-offset: #F0EDE8;
  --color-divider:        #E5E0D8;
  --color-border:         #D4CFC5;

  /* Text */
  --color-text:           #1B2A4A;
  --color-text-muted:     #5C6B84;
  --color-text-faint:     #9AA3B4;
  --color-text-inverse:   #FAFAF8;

  /* Primary — Deep Navy */
  --color-primary:        #1B2A4A;
  --color-primary-hover:  #152240;
  --color-primary-active: #0F1A33;

  /* Accent — Gold */
  --color-accent:         #C9A96E;
  --color-accent-hover:   #B8964D;
  --color-accent-active:  #A38340;
  --color-accent-light:   #F4EDE0;

  /* Charcoal */
  --color-charcoal:       #2D2D2D;

  /* Status Colors */
  --color-success:        #3D7A3E;
  --color-warning:        #B8864D;
  --color-error:          #A83232;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(27,42,74,0.06);
  --shadow-md: 0 4px 12px rgba(27,42,74,0.08);
  --shadow-lg: 0 12px 32px rgba(27,42,74,0.12);
  --shadow-xl: 0 24px 48px rgba(27,42,74,0.16);
}

/* ============================================================
   DARK MODE
   ============================================================ */
[data-theme="dark"] {
  --color-bg:             #0D1421;
  --color-surface:        #131C2E;
  --color-surface-2:      #182338;
  --color-surface-offset: #1A2540;
  --color-divider:        #243250;
  --color-border:         #2E3C5A;

  --color-text:           #E8E6E0;
  --color-text-muted:     #9AA3B8;
  --color-text-faint:     #5C6B84;
  --color-text-inverse:   #0D1421;

  --color-primary:        #E8E6E0;
  --color-primary-hover:  #D4D0C8;
  --color-primary-active: #C0BCB2;

  --color-accent:         #D4B87A;
  --color-accent-hover:   #C9A96E;
  --color-accent-active:  #B89650;
  --color-accent-light:   #1E2A42;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.6);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0D1421;
    --color-surface:        #131C2E;
    --color-surface-2:      #182338;
    --color-surface-offset: #1A2540;
    --color-divider:        #243250;
    --color-border:         #2E3C5A;
    --color-text:           #E8E6E0;
    --color-text-muted:     #9AA3B8;
    --color-text-faint:     #5C6B84;
    --color-text-inverse:   #0D1421;
    --color-primary:        #E8E6E0;
    --color-primary-hover:  #D4D0C8;
    --color-primary-active: #C0BCB2;
    --color-accent:         #D4B87A;
    --color-accent-hover:   #C9A96E;
    --color-accent-active:  #B89650;
    --color-accent-light:   #1E2A42;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.6);
  }
}

/* ============================================================
   GLOBAL STYLES
   ============================================================ */

/* Container */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* Section Spacing */
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

/* Typography */
.font-display {
  font-family: var(--font-display);
}
.font-body {
  font-family: var(--font-body);
}

/* Gold Separator */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  border: none;
}
.gold-line--center {
  margin-inline: auto;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
[data-theme="dark"] .site-header {
  background: rgba(13,20,33,0.92);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) {
  .header-inner { padding-inline: var(--space-8); }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-primary);
}
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo-text span {
  color: var(--color-accent);
}

/* Desktop Navigation */
.main-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: var(--space-2) 0;
  position: relative;
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.dropdown-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.dropdown-link:hover {
  background: var(--color-surface-2);
  color: var(--color-primary);
}

/* Header CTA */
.header-cta {
  display: none;
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent);
  color: #1B2A4A;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  letter-spacing: 0.02em;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .header-cta { display: inline-block; }
}
.header-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  overflow-y: auto;
  padding: var(--space-6) var(--space-4);
}
.mobile-nav.open {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-nav-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
  cursor: pointer;
}
.mobile-nav-link:hover {
  color: var(--color-accent);
}
.mobile-nav-cta {
  display: block;
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: var(--color-accent);
  color: #1B2A4A;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
}

/* Theme Toggle */
.theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  cursor: pointer;
}
.theme-toggle:hover {
  color: var(--color-accent);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(13,20,33,0.55) 0%, 
    rgba(13,20,33,0.7) 50%,
    rgba(13,20,33,0.85) 100%);
  z-index: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: var(--space-8) var(--space-4);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}
.hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
};
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) {
  .header-inner { padding-inline: var(--space-8); }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-primary);
}
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo-text span {
  color: var(--color-accent);
}

/* Desktop Navigation */
.main-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: var(--space-2) 0;
  position: relative;
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.dropdown-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.dropdown-link:hover {
  background: var(--color-surface-2);
  color: var(--color-primary);
}

/* Header CTA */
.header-cta {
  display: none;
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent);
  color: #1B2A4A;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  letter-spacing: 0.02em;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .header-cta { display: inline-block; }
}
.header-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  overflow-y: auto;
  padding: var(--space-6) var(--space-4);
}
.mobile-nav.open {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-nav-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
  cursor: pointer;
}
.mobile-nav-link:hover {
  color: var(--color-accent);
}
.mobile-nav-cta {
  display: block;
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: var(--color-accent);
  color: #1B2A4A;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
}

/* Theme Toggle */
.theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  cursor: pointer;
}
.theme-toggle:hover {
  color: var(--color-accent);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(13,20,33,0.55) 0%, 
    rgba(13,20,33,0.7) 50%,
    rgba(13,20,33,0.85) 100%);
  z-index: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: var(--space-8) var(--space-4);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}
.hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-8);
  cursor: pointer;
  border: none;
  min-height: 48px;
}
.btn-primary {
  background: var(--color-accent);
  color: #1B2A4A;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}
.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn-dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-dark:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-primary);
  padding: var(--space-8) var(--space-4);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: var(--content-wide);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(232,230,224,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-accent);
  font-size: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.service-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   INVESTMENT TABLE
   ============================================================ */
.invest-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.invest-table {
  min-width: 700px;
}
.invest-table thead {
  background: var(--color-primary);
}
.invest-table th {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  text-align: left;
}
.invest-table td {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-divider);
}
.invest-table tr:last-child td {
  border-bottom: none;
}
.invest-table tbody tr:hover {
  background: var(--color-surface-2);
}
.invest-table .highlight-cell {
  font-weight: 700;
  color: var(--color-accent);
}

/* ============================================================
   FEATURE / WHY US SECTION
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-item {
  text-align: center;
  padding: var(--space-6);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
}
.feature-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.feature-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 50ch;
  margin-inline: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.testimonial-stars {
  color: var(--color-accent);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-5);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-accent);
}
.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-primary);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-primary);
  text-align: center;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-4);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: var(--space-4);
}
.cta-banner p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.cta-banner .btn-primary {
  font-size: var(--text-sm);
}

/* ============================================================
   CONTENT PAGES — Pillar, Guide, Service, Blog
   ============================================================ */
.page-hero {
  padding: calc(72px + var(--space-12)) var(--space-4) var(--space-12);
  background: var(--color-primary);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: var(--space-4);
}
.page-hero p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin-inline: auto;
}
.page-hero .breadcrumb {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-4);
}
.page-hero .breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
}
.page-hero .breadcrumb a:hover {
  text-decoration: underline;
}
.page-meta {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-4);
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-12) var(--space-4);
}
@media (min-width: 1024px) {
  .content-layout {
    grid-template-columns: 260px 1fr;
    padding: var(--space-12) var(--space-8);
  }
}

/* Table of Contents Sidebar */
.toc-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .toc-sidebar {
    display: block;
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}
.toc-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.toc-list {
  list-style: none;
  padding: 0;
}
.toc-list li {
  margin-bottom: var(--space-1);
}
.toc-list a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.toc-list a:hover,
.toc-list a.active {
  color: var(--color-primary);
  border-left-color: var(--color-accent);
  background: var(--color-surface-2);
}

/* Article Content */
.article-content {
  max-width: 72ch;
}
.article-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}
.article-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.article-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.article-content p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}
.article-content ul,
.article-content ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}
.article-content li {
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.article-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--color-text-muted);
}
.article-content .info-box {
  background: var(--color-accent-light);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin: var(--space-6) 0;
}
.article-content .info-box h4 {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}
.article-content .info-box p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* FAQ Accordion */
.faq-section {
  margin-top: var(--space-10);
}
.faq-item {
  border-bottom: 1px solid var(--color-divider);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  gap: var(--space-4);
}
.faq-question::after {
  content: '+';
  font-size: var(--text-lg);
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  display: none;
  padding-bottom: var(--space-5);
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   ELIGIBILITY CALCULATOR
   ============================================================ */
.calculator-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  max-width: 600px;
  margin-inline: auto;
}
.calc-field {
  margin-bottom: var(--space-5);
}
.calc-field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.calc-field select,
.calc-field input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text);
  appearance: none;
}
.calc-field select:focus,
.calc-field input:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.calc-result {
  background: var(--color-accent-light);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-top: var(--space-4);
  display: none;
}
.calc-result.show {
  display: block;
  animation: fadeIn 0.3s ease;
}
.calc-result h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.calc-result p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact-form {
  max-width: 560px;
}
.form-group {
  margin-bottom: var(--space-5);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-16) var(--space-4) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: var(--content-wide);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand .logo-text {
  color: #FFFFFF;
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}
.footer-brand .logo-text span {
  color: var(--color-accent);
}
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: var(--space-1) 0;
  cursor: pointer;
}
.footer-col a:hover {
  color: #FFFFFF;
}
.footer-bottom {
  max-width: var(--content-wide);
  margin-inline: auto;
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.footer-bottom p,
.footer-bottom a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--color-accent);
}

/* ============================================================
   FLOATING CTA + WHATSAPP
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-end;
}
.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.6rem;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-3) var(--space-4);
}
@media (max-width: 767px) {
  .mobile-sticky-cta { display: block; }
}
.mobile-sticky-cta .btn {
  width: 100%;
}

/* ============================================================
   TRUST / MEDIA BAR
   ============================================================ */
.media-bar {
  padding: var(--space-8) var(--space-4);
  background: var(--color-surface-2);
  text-align: center;
}
.media-bar-title {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-6);
}
.media-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  opacity: 0.5;
}
.media-logos span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 800px;
  margin-inline: auto;
}
.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-5);
  align-items: start;
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--color-accent-light);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent);
  flex-shrink: 0;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.step-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.comparison-table {
  min-width: 600px;
}
.comparison-table th {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: left;
  background: var(--color-surface-2);
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
}
.comparison-table td {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-divider);
}
.comparison-table .winner {
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================================
   PAGE TRANSITIONS & SCROLL REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hide all pages, show active */
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  .hero h1 { font-size: var(--text-2xl); }
  .section-title { font-size: var(--text-xl); }
  .stats-bar { padding: var(--space-6) var(--space-4); }
  .stat-number { font-size: var(--text-xl); }
  body { padding-bottom: 60px; }
}

/* ============================================================
   SCROLL INDICATOR FOR HERO
   ============================================================ */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   GEO CARDS
   ============================================================ */
.geo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .geo-grid { grid-template-columns: repeat(4, 1fr); }
}
.geo-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.geo-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.geo-flag {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}
.geo-card h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin-inline: auto;
}
.newsletter-form input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: var(--text-sm);
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}
.newsletter-form .btn-primary {
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}
/* ============================================================
   INDONESIA GOLDEN VISAS — Design System
   Aman-inspired luxury aesthetic
   Deep Navy + Gold + White + Light Gray + Charcoal
   ============================================================ */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* ============================================================
   LIGHT MODE (Default) — Aman-Inspired Palette
   ============================================================ */
:root, [data-theme="light"] {
  /* Surfaces */
  --color-bg:             #FAFAF8;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F5F5F0;
  --color-surface-offset: #F0EDE8;
  --color-divider:        #E5E0D8;
  --color-border:         #D4CFC5;

  /* Text */
  --color-text:           #1B2A4A;
  --color-text-muted:     #5C6B84;
  --color-text-faint:     #9AA3B4;
  --color-text-inverse:   #FAFAF8;

  /* Primary — Deep Navy */
  --color-primary:        #1B2A4A;
  --color-primary-hover:  #152240;
  --color-primary-active: #0F1A33;

  /* Accent — Gold */
  --color-accent:         #C9A96E;
  --color-accent-hover:   #B8964D;
  --color-accent-active:  #A38340;
  --color-accent-light:   #F4EDE0;

  /* Charcoal */
  --color-charcoal:       #2D2D2D;

  /* Status Colors */
  --color-success:        #3D7A3E;
  --color-warning:        #B8864D;
  --color-error:          #A83232;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(27,42,74,0.06);
  --shadow-md: 0 4px 12px rgba(27,42,74,0.08);
  --shadow-lg: 0 12px 32px rgba(27,42,74,0.12);
  --shadow-xl: 0 24px 48px rgba(27,42,74,0.16);
}

/* ============================================================
   DARK MODE
   ============================================================ */
[data-theme="dark"] {
  --color-bg:             #0D1421;
  --color-surface:        #131C2E;
  --color-surface-2:      #182338;
  --color-surface-offset: #1A2540;
  --color-divider:        #243250;
  --color-border:         #2E3C5A;

  --color-text:           #E8E6E0;
  --color-text-muted:     #9AA3B8;
  --color-text-faint:     #5C6B84;
  --color-text-inverse:   #0D1421;

  --color-primary:        #E8E6E0;
  --color-primary-hover:  #D4D0C8;
  --color-primary-active: #C0BCB2;

  --color-accent:         #D4B87A;
  --color-accent-hover:   #C9A96E;
  --color-accent-active:  #B89650;
  --color-accent-light:   #1E2A42;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.6);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0D1421;
    --color-surface:        #131C2E;
    --color-surface-2:      #182338;
    --color-surface-offset: #1A2540;
    --color-divider:        #243250;
    --color-border:         #2E3C5A;
    --color-text:           #E8E6E0;
    --color-text-muted:     #9AA3B8;
    --color-text-faint:     #5C6B84;
    --color-text-inverse:   #0D1421;
    --color-primary:        #E8E6E0;
    --color-primary-hover:  #D4D0C8;
    --color-primary-active: #C0BCB2;
    --color-accent:         #D4B87A;
    --color-accent-hover:   #C9A96E;
    --color-accent-active:  #B89650;
    --color-accent-light:   #1E2A42;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.6);
  }
}

/* ============================================================
   GLOBAL STYLES
   ============================================================ */

/* Container */
.igv-container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) {
  .igv-container { padding-inline: var(--space-8); }
}

/* Section Spacing */
.igv-section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

/* Typography */
.font-display {
  font-family: var(--font-display);
}
.font-body {
  font-family: var(--font-body);
}

/* Gold Separator */
.igv-gold-line {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  border: none;
}
.igv-gold-line--center {
  margin-inline: auto;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.igv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
[data-theme="dark"] .igv-header {
  background: rgba(13,20,33,0.92);
}
.igv-header.scrolled {
  box-shadow: var(--shadow-md);
}

.igv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) {
  .igv-header-inner { padding-inline: var(--space-8); }
}

.igv-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-primary);
}
.igv-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.igv-logo-text span {
  color: var(--color-accent);
}

/* Desktop Navigation */
.igv-nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .igv-nav-desktop { display: flex; }
}

.igv-nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: var(--space-2) 0;
  position: relative;
  cursor: pointer;
}
.igv-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.igv-nav-link:hover,
.igv-nav-link.active {
  color: var(--color-primary);
}
.igv-nav-link:hover::after,
.igv-nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.igv-dropdown-menu {
  position: relative;
}
.igv-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.igv-dropdown-menu:hover .igv-dropdown-menu {
  display: block;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.igv-dropdown-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.igv-dropdown-link:hover {
  background: var(--color-surface-2);
  color: var(--color-primary);
}

/* Header CTA */
.igv-header-cta {
  display: none;
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent);
  color: #1B2A4A;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  letter-spacing: 0.02em;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .igv-header-cta { display: inline-block; }
}
.igv-header-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
/* Mobile Menu Toggle */
.igv-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .igv-mobile-toggle { display: none; }
}
.igv-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}
.igv-mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.igv-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.igv-mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.igv-nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  overflow-y: auto;
  padding: var(--space-6) var(--space-4);
}
.igv-nav-mobile.open {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.igv-mobile-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
  cursor: pointer;
}
.igv-mobile-link:hover {
  color: var(--color-accent);
}
.igv-mobile-cta {
  display: block;
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: var(--color-accent);
  color: #1B2A4A;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
}

/* Theme Toggle */
.igv-theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  cursor: pointer;
}
.igv-theme-toggle:hover {
  color: var(--color-accent);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.igv-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
}
.igv-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(13,20,33,0.55) 0%, 
    rgba(13,20,33,0.7) 50%,
    rgba(13,20,33,0.85) 100%);
  z-index: 1;
}
.igv-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.igv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: var(--space-8) var(--space-4);
}
.igv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.igv-hero-section h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}
.igv-hero-section h1 em {
  font-style: italic;
  color: var(--color-accent);
}
.igv-hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.igv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
};
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) {
  .igv-header-inner { padding-inline: var(--space-8); }
}

.igv-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-primary);
}
.igv-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.igv-logo-text span {
  color: var(--color-accent);
}

/* Desktop Navigation */
.igv-nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .igv-nav-desktop { display: flex; }
}

.igv-nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: var(--space-2) 0;
  position: relative;
  cursor: pointer;
}
.igv-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.igv-nav-link:hover,
.igv-nav-link.active {
  color: var(--color-primary);
}
.igv-nav-link:hover::after,
.igv-nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.igv-dropdown-menu {
  position: relative;
}
.igv-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.igv-dropdown-menu:hover .igv-dropdown-menu {
  display: block;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.igv-dropdown-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.igv-dropdown-link:hover {
  background: var(--color-surface-2);
  color: var(--color-primary);
}

/* Header CTA */
.igv-header-cta {
  display: none;
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent);
  color: #1B2A4A;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  letter-spacing: 0.02em;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .igv-header-cta { display: inline-block; }
}
.igv-header-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.igv-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .igv-mobile-toggle { display: none; }
}
.igv-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}
.igv-mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.igv-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.igv-mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.igv-nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  overflow-y: auto;
  padding: var(--space-6) var(--space-4);
}
.igv-nav-mobile.open {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.igv-mobile-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-divider);
  cursor: pointer;
}
.igv-mobile-link:hover {
  color: var(--color-accent);
}
.igv-mobile-cta {
  display: block;
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: var(--color-accent);
  color: #1B2A4A;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
}

/* Theme Toggle */
.igv-theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  cursor: pointer;
}
.igv-theme-toggle:hover {
  color: var(--color-accent);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.igv-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
}
.igv-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(13,20,33,0.55) 0%, 
    rgba(13,20,33,0.7) 50%,
    rgba(13,20,33,0.85) 100%);
  z-index: 1;
}
.igv-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.igv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: var(--space-8) var(--space-4);
}
.igv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.igv-hero-section h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}
.igv-hero-section h1 em {
  font-style: italic;
  color: var(--color-accent);
}
.igv-hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.igv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.igv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-8);
  cursor: pointer;
  border: none;
  min-height: 48px;
}
.btn-primary {
  background: var(--color-accent);
  color: #1B2A4A;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}
.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn-dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-dark:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.igv-stats-bar {
  background: var(--color-primary);
  padding: var(--space-8) var(--space-4);
}
.igv-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: var(--content-wide);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .igv-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.igv-stat-item {
  text-align: center;
}
.igv-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.igv-stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(232,230,224,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.igv-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .igv-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .igv-services-grid { grid-template-columns: repeat(3, 1fr); }
}

.igv-service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.igv-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.igv-service-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-accent);
  font-size: 1.5rem;
}
.igv-service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.igv-service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.igv-service-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.igv-section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}
.igv-section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.igv-section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.igv-section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   INVESTMENT TABLE
   ============================================================ */
.igv-invest-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.igv-invest-table {
  min-width: 700px;
}
.igv-invest-table thead {
  background: var(--color-primary);
}
.igv-invest-table th {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  text-align: left;
}
.igv-invest-table td {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-divider);
}
.igv-invest-table tr:last-child td {
  border-bottom: none;
}
.igv-invest-table tbody tr:hover {
  background: var(--color-surface-2);
}
.igv-invest-table .igv-highlight-cell {
  font-weight: 700;
  color: var(--color-accent);
}

/* ============================================================
   FEATURE / WHY US SECTION
   ============================================================ */
.igv-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .igv-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .igv-features-grid { grid-template-columns: repeat(3, 1fr); }
}
.igv-feature-item {
  text-align: center;
  padding: var(--space-6);
}
.igv-feature-icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
}
.igv-feature-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.igv-feature-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 50ch;
  margin-inline: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.igv-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .igv-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.igv-testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.igv-testimonial-stars {
  color: var(--color-accent);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  letter-spacing: 0.1em;
}
.igv-testimonial-text {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-5);
}
.igv-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.igv-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-accent);
}
.igv-testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-primary);
}
.igv-testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.igv-cta-banner {
  background: var(--color-primary);
  text-align: center;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-4);
}
.igv-cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: var(--space-4);
}
.igv-cta-banner p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.igv-cta-banner .btn-primary {
  font-size: var(--text-sm);
}

/* ============================================================
   CONTENT PAGES — Pillar, Guide, Service, Blog
   ============================================================ */
.igv-page-hero {
  padding: calc(72px + var(--space-12)) var(--space-4) var(--space-12);
  background: var(--color-primary);
  text-align: center;
}
.igv-page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: var(--space-4);
}
.igv-page-hero p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin-inline: auto;
}
.igv-page-hero .breadcrumb {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-4);
}
.igv-page-hero .breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
}
.igv-page-hero .breadcrumb a:hover {
  text-decoration: underline;
}
.igv-page-meta {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-4);
}

.igv-content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-12) var(--space-4);
}
@media (min-width: 1024px) {
  .igv-content-layout {
    grid-template-columns: 260px 1fr;
    padding: var(--space-12) var(--space-8);
  }
}

/* Table of Contents Sidebar */
.igv-toc-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .igv-toc-sidebar {
    display: block;
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}
.igv-toc-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.igv-toc-list {
  list-style: none;
  padding: 0;
}
.igv-toc-list li {
  margin-bottom: var(--space-1);
}
.igv-toc-list a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.igv-toc-list a:hover,
.igv-toc-list a.active {
  color: var(--color-primary);
  border-left-color: var(--color-accent);
  background: var(--color-surface-2);
}

/* Article Content */
.article-content {
  max-width: 72ch;
}
.article-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}
.article-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.article-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.article-content p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}
.article-content ul,
.article-content ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}
.article-content li {
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.article-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--color-text-muted);
}
.article-content .igv-info-box {
  background: var(--color-accent-light);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin: var(--space-6) 0;
}
.article-content .igv-info-box h4 {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}
.article-content .igv-info-box p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* FAQ Accordion */
.igv-faq {
  margin-top: var(--space-10);
}
.igv-faq-item {
  border-bottom: 1px solid var(--color-divider);
}
.igv-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  gap: var(--space-4);
}
.igv-faq-question::after {
  content: '+';
  font-size: var(--text-lg);
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.igv-faq-item.open .igv-faq-question::after {
  content: '−';
}
.igv-faq-answer {
  display: none;
  padding-bottom: var(--space-5);
}
.igv-faq-item.open .igv-faq-answer {
  display: block;
}
.igv-faq-answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   ELIGIBILITY CALCULATOR
   ============================================================ */
.calculator-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  max-width: 600px;
  margin-inline: auto;
}
.calc-field {
  margin-bottom: var(--space-5);
}
.calc-field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.calc-field select,
.calc-field input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text);
  appearance: none;
}
.calc-field select:focus,
.calc-field input:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.calc-result {
  background: var(--color-accent-light);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-top: var(--space-4);
  display: none;
}
.calc-result.show {
  display: block;
  animation: fadeIn 0.3s ease;
}
.calc-result h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.calc-result p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.igv-contact-form {
  max-width: 560px;
}
.igv-form-group {
  margin-bottom: var(--space-5);
}
.igv-form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.igv-form-group input,
.igv-form-group textarea,
.igv-form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}
.igv-form-group input:focus,
.igv-form-group textarea:focus,
.igv-form-group select:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.igv-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.igv-footer {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-16) var(--space-4) var(--space-8);
}
.igv-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: var(--content-wide);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .igv-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand .igv-logo-text {
  color: #FFFFFF;
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}
.footer-brand .igv-logo-text span {
  color: var(--color-accent);
}
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: var(--space-1) 0;
  cursor: pointer;
}
.footer-col a:hover {
  color: #FFFFFF;
}
.igv-footer-bottom {
  max-width: var(--content-wide);
  margin-inline: auto;
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.igv-footer-bottom p,
.igv-footer-bottom a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}
.igv-footer-bottom a {
  text-decoration: none;
}
.igv-footer-bottom a:hover {
  color: var(--color-accent);
}

/* ============================================================
   FLOATING CTA + WHATSAPP
   ============================================================ */
.igv-floating-cta {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-end;
}
.igv-wa-float {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.6rem;
}
.igv-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

/* Mobile Sticky CTA */
.igv-mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-3) var(--space-4);
}
@media (max-width: 767px) {
  .igv-mobile-sticky-cta { display: block; }
}
.igv-mobile-sticky-cta .igv-btn {
  width: 100%;
}

/* ============================================================
   TRUST / MEDIA BAR
   ============================================================ */
.igv-media-bar {
  padding: var(--space-8) var(--space-4);
  background: var(--color-surface-2);
  text-align: center;
}
.igv-media-bar-title {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-6);
}
.igv-media-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  opacity: 0.5;
}
.igv-media-logos span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.igv-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 800px;
  margin-inline: auto;
}
.igv-step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-5);
  align-items: start;
}
.igv-step-number {
  width: 64px;
  height: 64px;
  background: var(--color-accent-light);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent);
  flex-shrink: 0;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.step-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.igv-comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.igv-comparison-table {
  min-width: 600px;
}
.igv-comparison-table th {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: left;
  background: var(--color-surface-2);
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
}
.igv-comparison-table td {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-divider);
}
.igv-comparison-table .winner {
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================================
   PAGE TRANSITIONS & SCROLL REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hide all pages, show active */
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  .igv-hero-section h1 { font-size: var(--text-2xl); }
  .igv-section-title { font-size: var(--text-xl); }
  .igv-stats-bar { padding: var(--space-6) var(--space-4); }
  .igv-stat-number { font-size: var(--text-xl); }
  body { padding-bottom: 60px; }
}

/* ============================================================
   SCROLL INDICATOR FOR HERO
   ============================================================ */
.igv-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   GEO CARDS
   ============================================================ */
.igv-geo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .igv-geo-grid { grid-template-columns: repeat(4, 1fr); }
}
.igv-geo-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.igv-geo-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.igv-geo-flag {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}
.igv-geo-card h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.igv-newsletter-form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin-inline: auto;
}
.igv-newsletter-form input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: var(--text-sm);
}
.igv-newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}
.igv-newsletter-form .btn-primary {
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .igv-newsletter-form {
    flex-direction: column;
  }
}
