/* ==========================================================================
   BADEN BOWER | Luxury Guaranteed PR Agency Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --bg-primary: #060B14;
  --bg-secondary: #0B1526;
  --bg-surface: #101E35;
  --bg-card: rgba(16, 30, 53, 0.7);
  --bg-card-hover: rgba(22, 41, 71, 0.85);
  --bg-input: #0c182c;

  /* Gold & Accent Palettes */
  --gold-primary: #D4AF37;
  --gold-light: #F6E6A8;
  --gold-dark: #997D2C;
  --gold-gradient: linear-gradient(135deg, #F9E7B9 0%, #D4AF37 50%, #A67C1E 100%);
  --gold-gradient-glow: linear-gradient(135deg, rgba(246, 230, 168, 0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
  --gold-border: rgba(212, 175, 55, 0.25);
  --gold-border-hover: rgba(212, 175, 55, 0.6);

  /* Emerald / Guarantee Accents */
  --emerald: #10B981;
  --emerald-bg: rgba(16, 185, 129, 0.12);
  --emerald-border: rgba(16, 185, 129, 0.3);

  /* Typography Colors */
  --text-white: #FFFFFF;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-gold: #F1D483;

  /* Borders & Shadows */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 35px rgba(212, 175, 55, 0.2);

  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1240px;
  --header-height: 84px;
}

/* --- Liquid Glassmorphism Utilities --- */
.liquid-glass {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.12), 0 8px 32px rgba(0, 0, 0, 0.35);
  position: relative;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), rgba(255, 255, 255, 0.1), rgba(212, 175, 55, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.15), 0 16px 48px rgba(0, 0, 0, 0.5);
  position: relative;
}

.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(246, 230, 168, 0.7), rgba(212, 175, 55, 0.3), rgba(255, 255, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}


/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Ambient Background Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.4;
}
.ambient-glow-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
}
.ambient-glow-2 {
  width: 600px;
  height: 600px;
  top: 40%;
  left: -200px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.3), transparent 70%);
}
.ambient-glow-3 {
  width: 450px;
  height: 450px;
  bottom: 10%;
  right: -100px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
}

/* --- Container & Utilities --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-eyebrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}
.btn:hover svg {
  transform: translateX(3px);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #060B14;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.75s ease;
}
.btn-gold:hover::after {
  transform: rotate(30deg) translateY(100%);
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--gold-border);
  color: var(--text-gold);
}
.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-subtle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}
.btn-subtle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-medium);
  color: #FFFFFF;
}

.btn-block {
  width: 100%;
}

/* --- Header & Navigation --- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}
header.site-header.scrolled {
  background: rgba(6, 11, 20, 0.95);
  border-bottom-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-symbol {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 18px;
  color: #060B14;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFFFFF;
}
.logo-text span {
  color: var(--gold-primary);
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 8px;
  color: var(--text-primary);
  cursor: pointer;
}
.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 10%, rgba(22, 43, 77, 0.45) 0%, rgba(6, 11, 20, 1) 75%);
}

.hero-webgl-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--emerald-bg);
  border: 1px solid var(--emerald-border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: 13.5px;
  font-weight: 600;
  color: #34D399;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-micro-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
}

/* Hero Media Visual Showcase Card */
.hero-visual-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: transform var(--transition-smooth);
}
.hero-visual-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.card-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}
.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--emerald);
}
.contract-tag {
  font-size: 11px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}

.mock-article-preview {
  background: #091220;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.mock-masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mock-outlet-logo {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFFFFF;
}
.mock-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #38BDF8;
  font-weight: 600;
}
.mock-headline {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.4;
}
.mock-snippet {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}
.mock-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.live-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}
.metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 8px;
}
.metric-box .m-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
}
.metric-box .m-lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Floating Badges on Hero */
.floating-badge {
  position: absolute;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  z-index: 3;
  animation: floatAnim 4s ease-in-out infinite;
}
.floating-badge-1 {
  top: -15px;
  right: -20px;
}
.floating-badge-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- Infinite Masthead Marquee --- */
.marquee-wrapper {
  background: #040810;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  white-space: nowrap;
  transition: color var(--transition-fast);
}
.marquee-item:hover {
  color: var(--gold-light);
}
.marquee-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-primary);
}

/* --- Stats Counter Section --- */
.stats-section {
  padding: 70px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-card {
  text-align: center;
  padding: 24px;
  background: rgba(16, 30, 53, 0.4);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all var(--transition-normal);
}
.stat-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-card .stat-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-card .stat-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- Interactive Publication Explorer --- */
.publications-section {
  padding: 100px 0;
  position: relative;
}

.pub-controls {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 36px;
  backdrop-filter: blur(16px);
}

.pub-search-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.search-input-wrapper {
  position: relative;
  flex: 1;
}
.search-input-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}
.search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 15px;
  font-family: var(--font-sans);
  transition: border-color var(--transition-fast);
}
.search-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.pub-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-chip:hover {
  border-color: var(--gold-border);
  color: var(--text-white);
}
.filter-chip.active {
  background: var(--gold-gradient);
  color: #060B14;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.pub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.pub-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.pub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.pub-card:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pub-card:hover::before {
  opacity: 1;
}

.pub-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.pub-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
}
.pub-badge-tier {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  text-transform: uppercase;
}

.pub-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}
.pub-meta-row {
  display: flex;
  justify-content: space-between;
}
.da-bar-wrapper {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 4px;
}
.da-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 100px;
}

.pub-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 12.5px;
}
.turnaround-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #34D399;
  font-weight: 600;
}
.pub-select-btn {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.pub-select-btn:hover {
  background: var(--gold-primary);
  color: #060B14;
}

/* --- PR ROI & Earned Media Value Calculator --- */
.calculator-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, #0c182c 0%, #060B14 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.calc-inputs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(20px);
}

.calc-group {
  margin-bottom: 28px;
}
.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.calc-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
}
.calc-value-badge {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--gold-border);
}

/* Custom Range Slider */
input[type="range"].custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: background var(--transition-fast);
}
input[type="range"].custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  border: 2px solid #FFFFFF;
  transition: transform var(--transition-fast);
}
input[type="range"].custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results-card {
  background: linear-gradient(145deg, rgba(16, 30, 53, 0.9), rgba(11, 21, 38, 0.95));
  border: 2px solid var(--gold-primary);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  text-align: center;
  position: relative;
}
.calc-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #060B14;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 18px;
  border-radius: 100px;
}

.emv-headline {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.emv-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 24px;
}

.calc-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  margin-bottom: 28px;
  font-size: 13.5px;
}
.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-breakdown-row span:last-child {
  font-weight: 700;
  color: #FFFFFF;
}

/* --- Pricing Section --- */
.pricing-section {
  padding: 100px 0;
  position: relative;
}

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}
.pricing-toggle-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
}
.pricing-toggle-label.active {
  color: #FFFFFF;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  cursor: pointer;
  padding: 3px;
  transition: background var(--transition-fast);
}
.toggle-knob {
  width: 24px;
  height: 24px;
  background: var(--gold-gradient);
  border-radius: 50%;
  transition: transform var(--transition-normal);
}
.toggle-switch.monthly .toggle-knob {
  transform: translateX(28px);
}

.pricing-discount-pill {
  background: var(--emerald-bg);
  border: 1px solid var(--emerald-border);
  color: #34D399;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  backdrop-filter: blur(16px);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(180deg, rgba(22, 41, 71, 0.8) 0%, rgba(11, 21, 38, 0.9) 100%);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.card-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #060B14;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.card-plan-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.card-plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 42px;
}

.card-pricing-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  vertical-align: top;
  position: relative;
  top: 6px;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
}
.price-cadence {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.feature-list {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  font-size: 14.5px;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-primary);
  margin-top: 2px;
}

/* --- 4-Step Process Section --- */
.process-section {
  padding: 100px 0;
  position: relative;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 32px 24px;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
}

.process-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #090D16;
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 20px;
}

.process-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.process-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- 6 Strategic Goals Section --- */
.goals-section {
  padding: 100px 0;
  position: relative;
}

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

.goal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.goal-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
}

.goal-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.goal-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.goal-icon-badge svg {
  width: 22px;
  height: 22px;
}
.goal-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.goal-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.goal-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.goal-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 600;
}
.goal-action-row svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}
.goal-card:hover .goal-action-row svg {
  transform: translateX(4px);
}

/* --- Comparison Matrix Section --- */
.comparison-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
}
.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14.5px;
}
.comparison-table th {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  background: #081120;
}
.comparison-table th.col-highlight {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.2) 0%, rgba(16, 30, 53, 0.95) 100%);
  color: var(--gold-light);
  border-left: 1px solid var(--gold-border);
  border-right: 1px solid var(--gold-border);
}
.comparison-table td.col-highlight {
  background: rgba(212, 175, 55, 0.04);
  border-left: 1px solid var(--gold-border);
  border-right: 1px solid var(--gold-border);
  font-weight: 600;
  color: #FFFFFF;
}

.check-yes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #34D399;
  font-weight: 700;
}
.check-no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #EF4444;
}

/* LLM / AEO Badge Tag */
.badge-aeo {
  font-size: 10.5px;
  background: rgba(56, 189, 248, 0.12);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.pub-price-tag {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
}

/* --- Concierge & Unlisted Network Section --- */
.concierge-section {
  padding: 100px 0;
  position: relative;
}

.concierge-card {
  background: linear-gradient(135deg, rgba(16, 30, 53, 0.9), rgba(6, 11, 20, 0.95));
  border: 2px solid var(--gold-border);
  border-radius: 20px;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.concierge-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: #FFFFFF;
  margin-bottom: 16px;
}
.concierge-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.concierge-form {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 30px;
}

/* Guarantee Escrow Seal */
.guarantee-escrow-box {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(16, 30, 53, 0.7), rgba(6, 11, 20, 0.9));
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.escrow-icon-shield {
  width: 64px;
  height: 64px;
  background: var(--gold-gradient-glow);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.escrow-icon-shield svg {
  width: 32px;
  height: 32px;
}
.escrow-text h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.escrow-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* --- Authority & Visa Support Section --- */
.authority-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.auth-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 32px;
  transition: all var(--transition-normal);
}
.auth-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}
.auth-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.auth-icon-wrapper svg {
  width: 24px;
  height: 24px;
}
.auth-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.auth-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Client Results & Case Studies --- */
.cases-section {
  padding: 100px 0;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-client-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #060B14;
}
.client-info h5 {
  font-size: 15px;
  color: #FFFFFF;
  font-weight: 600;
}
.client-info span {
  font-size: 12.5px;
  color: var(--text-muted);
}
.case-quote {
  font-size: 14px;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 20px;
}
.case-placements {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-badge {
  font-size: 11.5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--gold-light);
}

/* --- FAQ Accordion Section --- */
.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item.active {
  border-color: var(--gold-border);
}
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  font-size: 16.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
}
.faq-question:hover {
  color: var(--gold-light);
}
.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  padding: 0 26px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 22px;
}

/* --- CTA Banner --- */
.cta-banner-section {
  padding: 90px 0;
  position: relative;
}
.cta-banner-card {
  background: linear-gradient(135deg, #0B1930 0%, #162C4E 50%, #0B1930 100%);
  border: 2px solid var(--gold-border);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.cta-banner-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #FFFFFF;
  margin-bottom: 16px;
}
.cta-banner-card p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
}

/* --- Global Offices & Footer --- */
footer.site-footer {
  background: #03070E;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 30px;
  color: var(--text-secondary);
}

.footer-world-clocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border-light);
}
.clock-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clock-city {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}
.clock-sub {
  font-size: 12px;
  color: var(--text-muted);
}
.clock-time {
  font-family: monospace;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-light);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Multi-Step Booking Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  width: 100%;
  max-width: 620px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition-smooth);
}
.modal-overlay.open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 24px 30px;
  background: #0A1424;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #FFFFFF;
}
.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: color var(--transition-fast);
}
.modal-close-btn:hover {
  color: #FFFFFF;
}
.modal-close-btn svg {
  width: 22px;
  height: 22px;
}

.modal-step-indicator {
  display: flex;
  padding: 16px 30px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}
.step-dot {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: background var(--transition-fast);
}
.step-dot.active {
  background: var(--gold-gradient);
}

.modal-body {
  padding: 30px;
  max-height: 70vh;
  overflow-y: auto;
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeInStep var(--transition-normal);
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 14.5px;
  font-family: var(--font-sans);
  transition: border-color var(--transition-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.selectable-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.goal-chip {
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-align: center;
}
.goal-chip:hover {
  border-color: var(--gold-border);
  color: #FFFFFF;
}
.goal-chip.selected {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  font-weight: 600;
}

.modal-footer {
  padding: 20px 30px;
  background: #0A1424;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Success Confirmation State */
.modal-success-state {
  text-align: center;
  padding: 40px 20px;
}
.success-icon-badge {
  width: 70px;
  height: 70px;
  background: var(--emerald-bg);
  border: 2px solid var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34D399;
  margin: 0 auto 20px;
}
.success-icon-badge svg {
  width: 36px;
  height: 36px;
}
.modal-success-state h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.modal-success-state p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .trust-micro-badges {
    justify-content: center;
  }
  .hero-visual-card {
    max-width: 540px;
    margin: 0 auto;
    transform: none;
  }
  .hero-visual-card:hover {
    transform: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid, .auth-cards-grid, .cases-grid {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .footer-world-clocks {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guarantee-escrow-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .escrow-icon-shield {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #060B14;
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
  }
  .nav-menu.open {
    display: block;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-actions .btn {
    display: none;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .selectable-chips-grid {
    grid-template-columns: 1fr;
  }
}
