@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Primary color palette */
  --primary: #1B4F72;
  --primary-dark: #0E3A5C;
  --primary-light: #D6EAF8;
  --primary-glow: rgba(27, 79, 114, 0.25);

  /* Accent colors */
  --accent: #00B894;
  --accent-dark: #00856A;
  --accent-light: #D5F5E3;

  /* Gold Highlight */
  --gold: #D4A745;
  --gold-light: #FDF2D0;

  /* Surfaces */
  --dark-bg: #0A1628;
  --dark-card: #132238;
  --light-bg: #F4F7FA;
  --light-card: #FFFFFF;

  /* Text */
  --text-dark: #FFFFFF;
  --text-light: #1A2332;
  --text-muted: #6B7C93;

  /* Borders */
  --border-light: #E2E8F0;
  --border-dark: #1E3350;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 16px 48px rgba(27, 79, 114, 0.12);
  --shadow-glow: 0 0 30px rgba(0, 184, 148, 0.15);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);

  /* Transition */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Font families */
  --font-primary: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
}

/* ═══════════════════════════════
   RESET & BASE
   ═══════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-primary);
  color: var(--text-light);
  background-color: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6, .brand-name {
  font-family: var(--font-secondary);
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: all 0.3s var(--ease); }

/* ═══════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem 5%;
  transition: all 0.3s var(--ease);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  height: auto;
  max-height: 56px; /* limit logo height */
}

.logo-img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.logo-mark {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-secondary);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
  font-family: var(--font-secondary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
}

/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 79, 114, 0.35);
  filter: brightness(1.08);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   HERO SECTION
   ═══════════════════════════════ */
.hero {
  background: var(--dark-bg);
  color: var(--text-dark);

  /* Premium: tighter vertical rhythm so the page doesn't look “broken” */
  padding: 5.5rem 5% 3.25rem;
  min-height: clamp(520px, 62vh, 620px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -8%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.18;
  filter: blur(60px);
  animation: heroFloat 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.12;
  filter: blur(60px);
  animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content { flex: 1; }

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
}

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

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.hero-trust-list li {
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mock-card {
  width: 350px;
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  transform: perspective(1000px) rotateY(-12deg) rotateX(8deg);
  transition: transform 0.6s var(--ease);
}

.mock-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, var(--gold), #C9963A);
  border-radius: 6px;
}

.card-number {
  font-family: 'Space Grotesk', monospace;
  font-size: 1.3rem;
  letter-spacing: 3px;
}

/* ═══════════════════════════════
   SECTIONS & LAYOUT
   ═══════════════════════════════ */

section {
  padding: 4.5rem 5%;
}


.section-title {
  text-align: center;
  margin-bottom: 2.25rem;
  color: var(--text-light);
}

.section-title h2 {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ═══════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════ */
.feature-card {
  background: var(--light-card);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.feature-card:hover::before {
  opacity: 1;
}

.icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), #EBF5FB);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s var(--ease);
}

.feature-card:hover .icon-box {
  transform: scale(1.08);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.compare-card {
  background: var(--light-card);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.compare-card-subtitle {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.compare-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.compare-card-meta span {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.compare-card-meta strong {
  color: var(--text-light);
  display: block;
  margin-bottom: 0.35rem;
}

.compare-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.table-responsive {
  overflow-x: auto;
  margin-top: 2.5rem;
}

.product-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.product-comparison-table th,
.product-comparison-table td {
  border: 1px solid var(--border-light);
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
}

.product-comparison-table th {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
}

.product-comparison-table tbody tr:nth-child(even) {
  background: #f9fbfd;
}

.product-comparison-table td .btn {
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
}

.product-comparison-table td .btn-outline {
  white-space: nowrap;
}

.compare-card-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 184, 148, 0.18), var(--shadow-md);
}

.compare-select-btn.btn-selected {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.comparison-builder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0 0;
}

.comparison-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.comparison-action-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.comparison-message {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--light-card);
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
}

.comparison-empty {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  background: #f7fbff;
  border: 1px dashed var(--border-light);
  border-radius: 18px;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-result-table th,
.comparison-result-table td {
  border: 1px solid var(--border-light);
}

.comparison-result-table .comparison-row-label {
  font-weight: 700;
  width: 230px;
  min-width: 230px;
}

@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-card-meta {
    grid-template-columns: 1fr;
  }
}

.feature-list {
  list-style: none;
  margin: 1rem 0 1.3rem;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.promo-grid,
.advisory-grid,
.quick-links-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.advisory-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.quick-links-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.promo-card,
.advisory-card,
.business-card,
.quick-link-card {
  background: var(--light-card);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.promo-card:hover,
.advisory-card:hover,
.business-card:hover,
.quick-link-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.promo-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  color: var(--primary-dark);
  font-size: 1.75rem;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.advisory-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.advisory-badge {
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.text-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.cta-panel {
  background: linear-gradient(135deg, #0B1E3A, #122E53);
  color: white;
  border-radius: 28px;
  padding: 3rem 2rem;
  overflow: hidden;
}

.cta-panel .section-title {
  color: white;
}

.cta-panel .feature-list li::before {
  color: white;
}

.cta-panel .feature-list {
  color: rgba(255,255,255,0.84);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.cta-visual {
  padding: 2rem;
}

.cta-visual .feature-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: white;
  box-shadow: none;
}

.cta-visual .feature-card p,
.cta-visual .feature-card .feature-list,
.cta-visual .feature-card h3 {
  color: white;
}

.business-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.business-card h3 {
  margin-bottom: 0.75rem;
}

.business-card p {
  color: var(--text-muted);
}

.quick-link-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.quick-link-card .icon-box {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-light), #EBF5FB);
  color: var(--primary);
}

.quick-link-card h3 {
  margin-bottom: 0.7rem;
}

.quick-link-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Locator and search interface */
.locator-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.locator-filter button {
  border: 1px solid var(--border-light);
  background: var(--light-card);
  color: var(--text-light);
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}

.locator-filter button.active,
.locator-filter button:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.locator-card {
  background: var(--light-card);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.locator-card h3 {
  margin-bottom: 0.75rem;
}

.locator-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.locator-card p {
  margin: 1rem 0 0;
}

@media (max-width: 768px) {
  .promo-grid,
  .advisory-grid,
  .quick-links-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════
   SEARCH BAR
   ═══════════════════════════════ */
.search-container {
  max-width: 600px;
  margin: 0 auto 3rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  border: 2px solid var(--border-light);
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: all 0.3s var(--ease);
  background: var(--light-card);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border-radius: 25px;
  padding: 0 1.5rem;
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  background: white;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.nav-search-toggle:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 54, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  padding: 2rem;
}

.search-overlay.active {
  display: flex;
}

.search-overlay-inner {
  width: 100%;
  max-width: 780px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
}

.search-overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.search-overlay-inner h2,
.search-overlay-inner p {
  color: white;
}

.search-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.16);
}

.search-quick-link:hover {
  background: rgba(255,255,255,0.16);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 0.85rem 5%;
  transition: all 0.3s var(--ease);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.25s var(--ease);
}

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

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border-radius: 25px;
  padding: 0 1.5rem;
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
footer {
  background: var(--dark-bg);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }

.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s var(--ease);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* ═══════════════════════════════
   UTILITIES
   ═══════════════════════════════ */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ═══════════════════════════════
   FORMS
   ═══════════════════════════════ */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  background: var(--light-card);
  color: var(--text-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.error-msg {
  color: #E74C3C;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.form-control:invalid.touched + .error-msg {
  display: block;
}

/* ═══════════════════════════════
   DASHBOARD
   ═══════════════════════════════ */
.dashboard-layout {
  display: flex;
  /* keep a sane minimum; footer/header handled elsewhere */
  min-height: auto;
}


.sidebar {
  width: 250px;
  background: var(--light-card);
  border-right: 1px solid var(--border-light);
  padding: 2rem 0;
}

.sidebar-menu { list-style: none; }

.sidebar-menu li a,
.sidebar-menu li button {
  display: block;
  width: 100%;
  padding: 0.9rem 2rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: left;
  background: transparent;
  border: 0;
  transition: all 0.3s var(--ease);
  border-left: 3px solid transparent;
  cursor: pointer;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active,
.sidebar-menu li button:hover,
.sidebar-menu li button.active {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
}

.main-content {
  flex: 1;
  padding: 2rem;
  background: var(--light-bg);
}

.dash-card {
  background: var(--light-card);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s var(--ease);
}

.dash-card:hover {
  box-shadow: var(--shadow-md);
}

/* Prevent Chart.js canvases from expanding endlessly on layout reflow */
.dash-card canvas#spendingChart {
  height: 220px !important;
  width: 100% !important;
  display: block;
}


.dashboard-hero {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
}

.dashboard-hero-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(11, 26, 54, 0.98), rgba(0, 184, 148, 0.9));
  color: white;
  box-shadow: var(--shadow-lg);
}

.dashboard-hero-card h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 1rem 0 0.75rem;
}

.dashboard-hero-card p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.dashboard-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.dash-user-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.dash-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--accent), #00d2b8);
}

.dash-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  background: var(--light-card);
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.dash-action-btn:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.dash-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
}

.dash-transactions {
  display: grid;
  gap: 0.75rem;
}

.dash-tx-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--light-card);
  border: 1px solid var(--border-light);
}

.dash-tx-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.2rem;
}

.dash-tx-info {
  flex: 1;
}

.dash-tx-info strong {
  display: block;
  margin-bottom: 0.35rem;
}

.dash-tx-amount {
  font-weight: 700;
  white-space: nowrap;
}

.dash-tx-amount.positive {
  color: var(--accent);
}

.dash-tx-amount.negative {
  color: #E74C3C;
}

.dashboard-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 3rem;
  /* allow normal flow so it doesn’t “keep going” */
  min-height: unset;
}

.sidebar {
  min-width: 240px;
  background: var(--light-card);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.main-content {
  flex: 1;
  padding: 0;
  background: transparent;
}


@media (max-width: 1024px) {
  .dashboard-layout {
    flex-direction: column;
    min-height: auto;
  }
}

/* ═══════════════════════════════
   ANIMATIONS
   ═══════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: fadeInUp 0.7s var(--ease) forwards;
}

/* ═══════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════ */
.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  background: var(--dark-card);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-video-play {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 24px var(--primary-glow);
  font-size: 1.2rem;
}

.mock-video-play:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px var(--primary-glow);
}

/* ═══════════════════════════════
   ACCORDION
   ═══════════════════════════════ */
.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: var(--light-card);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}

.accordion-item:hover {
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-card);
  transition: background 0.3s var(--ease);
  font-size: 0.98rem;
}

.accordion-header:hover {
  background: var(--primary-light);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.accordion-item.active .accordion-content {
  padding: 1.2rem 1.5rem;
  max-height: 500px;
  border-top: 1px solid var(--border-light);
}

/* ═══════════════════════════════
   MULTI-STEP FORM
   ═══════════════════════════════ */
.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
}

.step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light-card);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--ease);
  font-family: 'Space Grotesk', sans-serif;
}

.step.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.step.completed {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.5s var(--ease);
}

.input-field {
  width: 100%;
  min-height: 3rem;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: var(--light-card);
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 79, 114, 0.12);
}

.field-error {
  display: block;
  margin-top: 0.5rem;
  color: #E74C3C;
  font-size: 0.85rem;
  min-height: 1.2rem;
}

.loan-result p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-answer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background: var(--light-card);
  color: var(--text-light);
  min-width: 150px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  margin: 0.35rem;
  text-align: center;
}

.quiz-answer-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.quiz-result {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
}

.download-resources {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.resource-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.download-resource-btn {
  width: fit-content;
}

/* ═══════════════════════════════
   MOBILE NAV
   ═══════════════════════════════ */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 0.25rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light-card);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid var(--primary-light);
  }

  /* Reduce homepage hero height on mobile */
  .hero{
    padding: 3.75rem 5% 2.25rem;
    min-height: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .dashboard-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .mock-card {
    width: 280px;
    height: 180px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.service-grid,
.security-grid,
.testimonial-grid,
.stats-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card,
.security-card,
.testimonial-card,
.stat-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover,
.security-card:hover,
.testimonial-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card h3,
.security-card h3,
.testimonial-card h3,
.stat-card h3 {
  margin-bottom: 1rem;
}

.service-card p,
.security-card p,
.testimonial-card p {
  color: var(--text-muted);
}

.service-card .text-link,
.security-card .text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 600;
}

.security-card {
  min-height: 240px;
}

.security-card .icon-box,
.service-card .icon-box {
  margin-bottom: 1rem;
}

.testimonial-section {
  background: var(--light-card);
  border-radius: 28px;
  padding: 3rem 2rem;
}

.testimonial-section h2,
.testimonial-section h3 {
  color: var(--text-light);
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.14), rgba(27, 79, 114, 0.08));
  border-color: rgba(0, 184, 148, 0.18);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: var(--shadow-md);
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-contact {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-contact p,
.footer-contact a {
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .service-grid,
  .security-grid,
  .testimonial-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════
   SCROLL-REVEAL SUPPORT
   ═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Compare page safety: ensures nothing blocks clicking compare buttons */
.comparison-builder {
  position: relative;
  z-index: 120;
}

.compare-select-btn,
.compare-clear-btn,
.compare-run-btn {
  position: relative;
  z-index: 121;
}


/* ═══════════════════════════════
   VIRTUAL TOUR / EXPERIENCE CENTER (VIDEO SECTION)
   ═══════════════════════════════ */
.experience-center{
  position: relative;
  background: var(--dark-bg);
  color: white;
  padding: 5rem 5%;
  overflow: hidden;
}

.experience-center-bg{
  position:absolute;
  inset:-40% -20% auto -20%;
  height: 650px;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 20%, rgba(27,79,114,0.55) 0%, transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0,184,148,0.40) 0%, transparent 60%),
    radial-gradient(circle at 50% 90%, rgba(212,167,69,0.22) 0%, transparent 55%);
  filter: blur(30px);
  opacity: 0.55;
  animation: experienceGlowFloat 9s ease-in-out infinite;
}

@keyframes experienceGlowFloat{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(16px,-14px,0) scale(1.02); }
}

.experience-center .container{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.experience-center-heading{
  text-align: center;
  margin-bottom: 2.25rem;
}

.experience-center-heading .section-title h2{
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: rgb(11, 10, 10);
  margin-bottom: 1rem;
}

.experience-center-subtitle{
  color: rgba(7, 7, 7, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

.experience-center-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.experience-video-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.experience-video-card::after{
  content:'';
  position:absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,79,114,0.0), rgba(0,184,148,0.22));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.experience-video-card:hover{
  transform: translateY(-8px);
  border-color: rgba(214,234,248,0.7);
  box-shadow: 0 18px 60px rgba(0,0,0,0.5), var(--shadow-glow);
}

.experience-video-card:hover::after{ opacity: 1; }

.experience-video-card-inner{
  position: relative;
  z-index: 1;
}

.experience-video-media{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #07131f;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(0,184,148,0.10);
}

.experience-video-media iframe,
.experience-video-media video{
  display:block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* YouTube lazy placeholder */
.youtube-lazy{
  width:100%;
  aspect-ratio: 16/9;
  display:flex;
  align-items:center;
  justify-content:center;
}

.experience-video-fallback{
  padding: 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  text-align:center;
}

.experience-play-overlay{
  position:absolute;
  inset:0;
  display:none;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  gap: 0.7rem;
  background: rgba(0,0,0,0.25);
  border: 0;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), opacity 0.35s var(--ease);
  outline: none;
}

.experience-play-overlay:focus-visible{
  box-shadow: 0 0 0 4px rgba(0,184,148,0.28);
}

.experience-play-icon{
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,79,114,0.95), rgba(0,184,148,0.95));
  display:flex;
  align-items:center;
  justify-content:center;
  color: white;
  font-size: 1.35rem;
  box-shadow: 0 14px 45px rgba(0,184,148,0.25);
  transform: translateY(0);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.experience-play-text{
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-secondary);
}

.experience-video-media:hover .experience-play-overlay{
  background: rgba(0,0,0,0.15);
}

.experience-video-media:hover .experience-play-icon{
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 18px 55px rgba(0,184,148,0.35);
}

.experience-play-overlay[aria-hidden="true"]{ pointer-events:none; }

/* --- Improve video overlay persistence & text contrast ---
   These overrides ensure the overlay is always visually present, but doesn’t block playback. */
.experience-play-overlay{
  /* keep it visible even after play starts (we’ll toggle opacity via JS) */
  z-index: 5;
  background: rgba(0,0,0,0.35);
}

/* When playing, keep the play overlay subtle but present */
.experience-video-media.is-playing .experience-play-overlay{
  opacity: 0.55;
  background: rgba(0,0,0,0.25);
}

/* Hide helper meta momentarily while playing for cleaner look */
.experience-video-media.is-playing + .experience-video-meta,
.experience-video-media.is-playing ~ .experience-video-meta{
  opacity: 0;
}

.experience-video-meta{
  /* ensure meta text is readable on dark */
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
}


.experience-video-meta{
  padding: 1.1rem 0.2rem 0.2rem;
  text-align: center;
}

.experience-video-label{
  font-weight: 800;
  font-family: var(--font-secondary);
  color: rgba(255,255,255,0.95);
  margin-bottom: 0.35rem;
}

.experience-video-description{
  color: rgba(255,255,255,0.72);
  font-size: 0.98rem;
}

/* Mobile: stacked layout */
@media (max-width: 900px){
  .experience-center{ padding: 4rem 5%; }
  .experience-center-grid{ grid-template-columns: 1fr; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .experience-center-bg{ animation: none; }
  .experience-video-card{ transition: none; }
}

/* ═══════════════════════════════
   DEMO DISCLAIMER BANNER
   ═══════════════════════════════ */
.demo-disclaimer {

  width: 100%;
  background: linear-gradient(135deg, rgba(212, 167, 69, 0.18), rgba(27, 79, 114, 0.10));
  border-bottom: 1px solid rgba(212, 167, 69, 0.35);
  padding: 0.9rem 5%;
  color: rgba(26, 35, 50, 0.92);
  position: relative;
  z-index: 999;
}

.demo-disclaimer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  justify-content: space-between;
}

.demo-disclaimer-title {
  font-weight: 800;
  color: var(--primary-dark);
  font-family: var(--font-secondary);
  white-space: nowrap;
}

.demo-disclaimer-text {
  color: rgba(26, 35, 50, 0.88);
  font-weight: 600;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .demo-disclaimer-inner {
    flex-direction: column;
  }
  .demo-disclaimer-title {
    white-space: normal;
  }
}
