/* -------------------------------------------------------------
   Trivoy Corporate — Premium B2B SaaS Stylesheet
   Designed with Stripe/Ramp enterprise aesthetic.
   ------------------------------------------------------------- */

/* Custom Font Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Color Variables & Base Reset */
:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Theme Colors - Dark Green on White Spatial Theme */
  --bg-dark: #FFFFFF;             /* Pure White canvas */
  --bg-dark-accent: #f5f7f5;      /* Trivoy Light grey-green surface */
  --surface-dark: #FFFFFF;        /* Pure White Cards */
  --surface-dark-border: rgba(13, 44, 30, 0.08); /* Subtle dark green border */
  
  /* Text Dark Mode - Inverted to Dark Green */
  --text-dark-primary: #0d2c1e;   /* Trivoy Luxury Dark Emerald for main headings */
  --text-dark-secondary: #2e4f3f; /* Dark green-grey for body copy */
  --text-dark-muted: #5c6e64;     /* Sage grey for secondary copy */

  /* Accent Palette - Trivoy Green Brand */
  --accent-blue: #164e33;         /* Emerald Green Accent */
  --accent-blue-hover: #1e5f43;   /* Hover Lighter Green */
  --accent-blue-rgba: rgba(22, 78, 51, 0.15);
  --accent-green: #10B981;
  --accent-green-hover: #34D399;
  --accent-green-rgba: rgba(16, 185, 129, 0.12);
  --accent-red: #EF4444;

  /* Light Theme Blocks */
  --bg-light: #f5f7f5;            /* Alternating Light Grey-Green Section */
  --bg-light-accent: #FFFFFF;     
  --surface-light: #FFFFFF;
  --surface-light-border: rgba(13, 44, 30, 0.08);
  
  /* Text Light Mode */
  --text-light-primary: #0d2c1e;  
  --text-light-secondary: #2e4f3f; 
  --text-light-muted: #5c6e64;     

  /* Box Shadows */
  --shadow-sm: 0 2px 8px rgba(13, 44, 30, 0.04);
  --shadow-md: 0 12px 28px rgba(13, 44, 30, 0.06);
  --shadow-lg: 0 24px 48px rgba(13, 44, 30, 0.1);
  
  --shadow-light-md: 0 10px 30px rgba(13, 44, 30, 0.04), 0 1px 3px rgba(13, 44, 30, 0.02);
  --shadow-light-lg: 0 20px 40px rgba(13, 44, 30, 0.06), 0 1px 5px rgba(13, 44, 30, 0.03);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-dark-primary);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------------
   UTILITY CLASSES & GRID SYSTEM
   ------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.text-gradient {
  background: linear-gradient(135deg, #0d2c1e 0%, #1e5f43 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-blue-gradient {
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Spacing */
.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(22, 78, 51, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(22, 78, 51, 0.25);
}

.btn-secondary {
  background-color: rgba(13, 44, 30, 0.04);
  color: var(--text-dark-primary);
  border: 1px solid rgba(13, 44, 30, 0.12);
}

.btn-secondary:hover {
  background-color: rgba(13, 44, 30, 0.08);
  transform: translateY(-1px);
}

.btn-light-secondary {
  background-color: #FFFFFF;
  color: var(--text-light-primary);
  border: 1px solid var(--surface-light-border);
  box-shadow: var(--shadow-light-md);
}

.btn-light-secondary:hover {
  background-color: var(--bg-light-accent);
  transform: translateY(-1px);
}

/* Light Theme Block Wrapper */
.light-section {
  background-color: var(--bg-light);
  color: var(--text-light-primary);
}

.light-section .text-gradient {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--text-light-primary);
}

/* Scroll Animation classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------
   NAVIGATION BAR
   ------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  height: 80px;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  height: 64px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-dark-border);
  box-shadow: 0 8px 30px rgba(13, 44, 30, 0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateX(4px);
}

.logo-img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  filter: none;
}


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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark-secondary);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-dark-primary);
}

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

.btn-signin {
  text-decoration: none;
  color: var(--text-dark-secondary);
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.btn-signin:hover {
  color: var(--text-dark-primary);
}

/* Burger menu for Mobile */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark-primary);
  border-radius: 2px;
  transition: all 0.25s ease;
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark);
  z-index: 999;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid var(--surface-dark-border);
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--text-dark-primary);
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  border-top: 1px solid var(--surface-dark-border);
  padding-top: 30px;
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 78, 51, 0.04) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-content {
  text-align: left;
}

@media (max-width: 991px) {
  .hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-blue);
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 17.5px;
  color: var(--text-dark-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
}

.hero-trust {
  font-size: 13px;
  color: var(--text-dark-muted);
}

/* Hero Dashboard Visual Mockup */
.hero-visual {
  position: relative;
  width: 100%;
}

.dashboard-wrapper {
  background: var(--bg-dark-accent);
  border: 1px solid var(--surface-dark-border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

/* Dashboard Mockup Grid styling */
.db-header {
  height: 52px;
  border-bottom: 1px solid var(--surface-dark-border);
  background: rgba(13, 44, 30, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.db-dots {
  display: flex;
  gap: 6px;
}

.db-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-dark-muted);
  opacity: 0.5;
}

.db-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
}

.db-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .db-body {
    grid-template-columns: 1fr;
  }
}

.db-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.db-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Inner SaaS Widgets */
.db-widget {
  background: #FFFFFF;
  border: 1px solid rgba(13, 44, 30, 0.08);
  border-radius: 10px;
  padding: 16px;
}

.db-widget h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.db-trip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(13, 44, 30, 0.08);
  margin-bottom: 10px;
}

.db-trip-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.db-trip-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.db-trip-dest {
  font-size: 13px;
  font-weight: 600;
}

.db-trip-dates {
  font-size: 11px;
  color: var(--text-dark-muted);
}

.db-badge-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  text-transform: uppercase;
}

.db-badge-success {
  background-color: var(--accent-green-rgba);
  color: var(--accent-green);
}

.db-badge-pending {
  background-color: rgba(251, 191, 36, 0.12);
  color: #FBBF24;
}

/* Spend Graph Mockup */
.db-spend-total {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.db-bar-graph {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding-top: 10px;
}

.db-bar {
  flex: 1;
  background-color: var(--accent-blue);
  opacity: 0.3;
  border-radius: 3px 3px 0 0;
  transition: height 1s ease-out;
}

.db-bar.active {
  opacity: 0.95;
  background: linear-gradient(180deg, #34D399 0%, #10B981 100%);
}

/* Floating Metrics Badges */
.floating-card {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 44, 30, 0.08);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(13, 44, 30, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatAnim 6s ease-in-out infinite;
}

.fc-1 {
  top: 12%;
  left: -8%;
}

.fc-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 2s;
}

.fc-3 {
  bottom: -5%;
  left: 10%;
  animation-delay: 4s;
}

@media (max-width: 1200px) {
  .fc-1 { left: -2%; }
  .fc-2 { right: -2%; }
}

@media (max-width: 991px) {
  .floating-card {
    display: none; /* Hide floating widgets on mobile to keep layout clean */
  }
}

.fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-blue-rgba);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.fc-green .fc-icon {
  background: var(--accent-green-rgba);
  color: var(--accent-green);
}

.fc-info {
  display: flex;
  flex-direction: column;
}

.fc-val {
  font-size: 14px;
  font-weight: 700;
}

.fc-lbl {
  font-size: 11px;
  color: var(--text-dark-muted);
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* -------------------------------------------------------------
   TRUST / METRICS SECTION
   ------------------------------------------------------------- */
.metrics {
  background-color: var(--bg-dark-accent);
  border-top: 1px solid var(--surface-dark-border);
  border-bottom: 1px solid var(--surface-dark-border);
  padding: 48px 0;
}

.metrics-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .metrics-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

.metric-box {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  position: relative;
}

.metric-box::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: var(--surface-dark-border);
}

.metric-box:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .metric-box::after {
    display: none;
  }
  .metric-box {
    flex: none;
    width: 45%;
  }
}

.metric-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--text-dark-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-lbl {
  font-size: 13.5px;
  color: var(--text-dark-secondary);
  font-weight: 500;
}

/* -------------------------------------------------------------
   PRODUCT VALUE SECTION
   ------------------------------------------------------------- */
.product-value {
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-header p {
  font-size: 16.5px;
  color: var(--text-dark-secondary);
  line-height: 1.55;
}

/* Tabs layout */
.value-tabs-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .value-tabs-container {
    grid-template-columns: 1fr;
  }
}

.value-tab-selectors {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 991px) {
  .value-tab-selectors {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

.value-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 18px 24px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  outline: none;
}

@media (max-width: 991px) {
  .value-tab-btn {
    flex: 1;
    min-width: 180px;
  }
}

.value-tab-btn h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark-secondary);
  transition: color 0.2s;
}

.value-tab-btn p {
  font-size: 12px;
  color: var(--text-dark-muted);
  line-height: 1.4;
}

.value-tab-btn:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.value-tab-btn.active {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: var(--surface-dark-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.value-tab-btn.active h4 {
  color: var(--text-dark-primary);
}

.value-tab-panel {
  background: var(--surface-dark);
  border: 1px solid var(--surface-dark-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: fadeInUpSmooth 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 576px) {
  .value-tab-panel {
    padding: 24px;
  }
}

.val-panel-header {
  margin-bottom: 24px;
}

.val-panel-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.val-panel-header p {
  font-size: 15px;
  color: var(--text-dark-secondary);
  line-height: 1.6;
}

.val-panel-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 576px) {
  .val-panel-feature-list {
    grid-template-columns: 1fr;
  }
}

.val-feat-item {
  display: flex;
  gap: 12px;
  align-items: start;
}

.val-feat-icon {
  width: 22px;
  height: 22px;
  background-color: var(--accent-blue-rgba);
  color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.val-feat-info h5 {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.val-feat-info p {
  font-size: 12.5px;
  color: var(--text-dark-secondary);
  line-height: 1.4;
}

@keyframes fadeInUpSmooth {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------------------------------------------
   FEATURE SHOWCASE (ALTERNATING GRID)
   ------------------------------------------------------------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 991px) {
  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
}

.feat-content h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.feat-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feat-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-bullet-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
}

.feat-bullet-list li i {
  color: var(--accent-blue);
  margin-top: 4px;
}

.light-section .feat-bullet-list li i {
  color: var(--accent-blue);
}

.feat-visual {
  background: var(--surface-dark);
  border: 1px solid var(--surface-dark-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 16px;
}

.light-section .feat-visual {
  background: #F1F5F9;
  border-color: #E2E8F0;
  box-shadow: var(--shadow-light-lg);
}

/* Internal Mockup Elements */
.booking-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px 18px;
}

.light-section .mockup-bar {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.mockup-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mockup-icon {
  width: 36px;
  height: 36px;
  background-color: var(--accent-blue-rgba);
  color: var(--accent-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.mockup-details h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.mockup-details p {
  font-size: 11px;
  margin: 0;
  opacity: 0.6;
}

/* Policy Mockup */
/* Ultra-Premium Policy Engine Mockup */
.feat-visual.feat-visual-policy {
  background: #ffffff;
  border: 1px solid rgba(22, 78, 51, 0.16);
  border-radius: 22px;
  box-shadow: 0 24px 60px -15px rgba(12, 46, 31, 0.12), 0 0 0 1px rgba(22, 78, 51, 0.04);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.policy-mockup {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
}

.policy-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #faf8f5;
  border-bottom: 1px solid #ebe5dc;
}

.policy-header-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #164e33;
  display: block;
  margin-bottom: 3px;
}

.policy-header-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 800;
  color: #0c2e1f;
  margin: 0;
  letter-spacing: -0.01em;
}

.policy-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 750;
  color: #164e33;
  background: #e2f5ea;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(22, 78, 51, 0.18);
  box-shadow: 0 2px 6px rgba(22, 78, 51, 0.06);
}

.policy-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 8px #16a34a;
  animation: pulseDot 2s infinite;
}

.policy-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(22, 78, 51, 0.12);
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(12, 46, 31, 0.03);
}

.policy-row:hover {
  border-color: rgba(22, 78, 51, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 46, 31, 0.08);
}

.policy-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.policy-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.policy-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #f4efeb;
  border: 1px solid rgba(22, 78, 51, 0.1);
  color: #0c2e1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.policy-row:hover .policy-icon-box {
  background: #0c2e1f;
  color: #ffffff;
}

.policy-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.policy-title {
  font-size: 14px;
  font-weight: 750;
  color: #0c2e1f;
  letter-spacing: -0.01em;
}

.policy-sub-desc {
  font-size: 12px;
  color: #556b5f;
  line-height: 1.35;
}

/* Rate Pill */
.policy-rate-badge {
  font-weight: 800;
  font-size: 13.5px;
  color: #ffffff;
  background: #0c2e1f;
  border: 1px solid #0c2e1f;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 10px rgba(12, 46, 31, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.policy-rate-badge .rate-unit {
  font-weight: 600;
  font-size: 11px;
  opacity: 0.85;
}

/* Rate Controls */
.policy-rate-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid #f2ede6;
}

.policy-rate-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-step-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #faf8f5;
  border: 1.5px solid #d8cfc2;
  color: #0c2e1f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 850;
  font-size: 15px;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.policy-step-btn:hover {
  background: #0c2e1f;
  color: #ffffff;
  border-color: #0c2e1f;
  transform: scale(1.05);
}

.policy-slider-input {
  flex: 1;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #e8e2d8;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

.policy-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0c2e1f;
  border: 2.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(12, 46, 31, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.policy-slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Preset Buttons */
.policy-presets {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.preset-pill {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid #e0d8cc;
  background: #faf8f5;
  color: #4b5f52;
  cursor: pointer;
  transition: all 0.15s ease;
}

.preset-pill:hover {
  border-color: #0c2e1f;
  color: #0c2e1f;
}

.preset-pill.active {
  background: #0c2e1f;
  color: #ffffff;
  border-color: #0c2e1f;
}

/* Luxury Toggle Switch */
.policy-toggle-btn {
  width: 48px;
  height: 26px;
  border-radius: 999px;
  background-color: #d1dbd4;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 2px;
  flex-shrink: 0;
  transition: background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.policy-toggle-btn.active {
  background-color: #0c2e1f;
}

.policy-toggle-knob {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.22);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-toggle-btn.active .policy-toggle-knob {
  transform: translateX(22px);
}

/* Policy Compliance Impact Footer */
.policy-impact-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px;
  background: #faf8f5;
  border: 1px solid #ebe5dc;
  border-radius: 16px;
  margin-top: 4px;
}

.policy-impact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}

.policy-impact-title {
  color: #0c2e1f;
  font-weight: 750;
  display: flex;
  align-items: center;
  gap: 6px;
}

.policy-impact-score {
  font-weight: 850;
  color: #164e33;
  background: #e2f5ea;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.policy-impact-track {
  width: 100%;
  height: 8px;
  background: #e8e2d8;
  border-radius: 999px;
  overflow: hidden;
}

.policy-impact-fill {
  height: 100%;
  background: linear-gradient(90deg, #0c2e1f 0%, #16a34a 100%);
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-impact-meta {
  font-size: 11px;
  color: #5c6e64;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.policy-impact-score {
  font-weight: 800;
  color: #164e33;
}

.policy-impact-track {
  width: 100%;
  height: 6px;
  background: #ebe5dc;
  border-radius: 999px;
  overflow: hidden;
}

.policy-impact-fill {
  height: 100%;
  background: linear-gradient(90deg, #164e33, #16a34a);
  border-radius: 999px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Analytics Mockup */
.analytics-mockup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.analytics-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 14px;
}

.light-section .analytics-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.analytics-card h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-bottom: 4px;
}

.analytics-card .val {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-display);
}

/* -------------------------------------------------------------
   INTEGRATIONS SECTION
   ------------------------------------------------------------- */


/* -------------------------------------------------------------
   SAVINGS CALCULATOR
   ------------------------------------------------------------- */
.calculator-section {
  background: radial-gradient(circle at 80% 20%, rgba(22, 78, 51, 0.03) 0%, transparent 60%), var(--bg-dark);
  border-top: 1px solid var(--surface-dark-border);
  border-bottom: 1px solid var(--surface-dark-border);
}

.calc-box {
  background: var(--bg-dark-accent);
  border: 1px solid var(--surface-dark-border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .calc-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 30px;
  }
}

.calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-slider-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-slider-hdr {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.calc-slider-lbl {
  color: var(--text-dark-secondary);
}

.calc-slider-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-blue-hover);
}

.calc-input {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: var(--surface-dark);
  border: 1px solid rgba(255,255,255,0.04);
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--accent-blue);
}

.calc-output {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.calc-result-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-result-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark-muted);
  font-weight: 700;
}

.calc-result-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark-primary);
  line-height: 1.1;
}

.calc-result-val.highlight {
  color: var(--accent-green);
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.calc-disclaimer {
  font-size: 11px;
  color: var(--text-dark-muted);
  line-height: 1.4;
  margin-top: 10px;
}

/* -------------------------------------------------------------
   CORPORATE CONTROL SECTION
   ------------------------------------------------------------- */
.control-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .control-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.control-card {
  background: var(--surface-dark);
  border: 1px solid var(--surface-dark-border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.control-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.control-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--accent-blue-rgba);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.control-card h4 {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.control-card p {
  font-size: 13.5px;
  color: var(--text-dark-secondary);
  line-height: 1.5;
}

/* -------------------------------------------------------------
   SUPPORT BANNER SECTION
   ------------------------------------------------------------- */
.support {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-accent) 100%);
}

.support-box {
  background: radial-gradient(circle at 10% 50%, rgba(22, 78, 51, 0.03) 0%, transparent 60%), var(--surface-dark);
  border: 1px solid var(--surface-dark-border);
  border-radius: 20px;
  padding: 60px 48px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .support-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    text-align: center;
  }
}

.support-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  z-index: 2;
}

@media (max-width: 991px) {
  .support-content {
    align-items: center;
  }
}

.support-eyebrow {
  color: var(--accent-blue-hover);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.support-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
}

.support-content p {
  font-size: 15.5px;
  color: var(--text-dark-secondary);
  line-height: 1.6;
}

/* Support Visual Map Simulation */
.support-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 240px;
}

.map-svg {
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.map-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--accent-blue);
  border-radius: 50%;
}

.map-pulse::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  border: 2px solid var(--accent-blue);
  animation: pulseAnim 2s infinite ease-out;
  opacity: 0;
}

.mp-1 { top: 30%; left: 25%; }
.mp-2 { top: 40%; left: 65%; animation-delay: 0.6s; }
.mp-3 { top: 60%; left: 45%; animation-delay: 1.2s; }

@keyframes pulseAnim {
  0% { transform: scale(0.2); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* -------------------------------------------------------------
   FINAL CALL TO ACTION (CTA)
   ------------------------------------------------------------- */
.final-cta {
  text-align: center;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(22, 78, 51, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.final-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.final-cta-content p {
  font-size: 16.5px;
  color: var(--text-dark-secondary);
  line-height: 1.6;
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

.final-cta-sub {
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-top: 10px;
}

/* -------------------------------------------------------------
   ENTERPRISE FOOTER (Unified Classic Footer)
   ------------------------------------------------------------- */
.footer.classic-footer {
  --color-highlight: #3b82f6;
  --font-serif: 'Times New Roman MT', 'Times New Roman', Times, Georgia, serif;
  background: #071810;
  color: #e4ebe6;
  padding: 56px 0 36px;
  border-top: 3px solid var(--color-highlight);
  position: relative;
  overflow: hidden;
}

.footer-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 2. Classic 6-Column Navigation Grid */
.classic-footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}

.classic-col-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.classic-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-highlight);
}

.classic-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.classic-footer-links a {
  color: #b0c4b6;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.classic-footer-links a:hover {
  color: var(--color-highlight);
  transform: translateX(3px);
  text-decoration: none;
}

/* 4. Bottom Copyright & Trust Bar */
.classic-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.classic-bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.classic-bottom-left .footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
}

.footer-logo-link .footer-logo-voy-blur {
  filter: blur(1.5px);
  opacity: 0.65;
  display: inline-block;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.footer-logo-link:hover .footer-logo-voy-blur {
  filter: blur(0px);
  opacity: 1;
}

.classic-bottom-left .footer-logo-img,
.footer-logo-img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1) !important;
}

#footer-copyright {
  font-size: 13px;
  color: #8aa494;
  margin-left: auto;
  text-align: right;
}

.classic-trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #a8c0b2;
  font-weight: 500;
}

.payment-icons-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  color: #b0c4b6;
}

.payment-icons-group i {
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.payment-icons-group i:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.trust-badge i {
  color: var(--color-highlight);
  font-size: 15px;
}

/* Responsive Classic Footer */
@media (max-width: 1024px) {
  .classic-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .classic-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .classic-footer-grid {
    grid-template-columns: 1fr;
  }
  .classic-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  #footer-copyright {
    margin-left: 0;
    text-align: left;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(13, 44, 30, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(13, 44, 30, 0.15);
  z-index: 9999;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  opacity: 0;
  box-sizing: border-box;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.cookie-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  text-align: left;
}

.cookie-link {
  color: #0d2c1e;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-save {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: #0d2c1e;
  color: #ffffff;
}

.btn-cookie-accept:hover,
.btn-cookie-save:hover {
  background: #071810;
  transform: translateY(-1px);
}

.btn-cookie-manage,
.btn-cookie-back {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(13, 44, 30, 0.2);
  background: transparent;
  color: #0d2c1e;
}

.btn-cookie-manage:hover,
.btn-cookie-back:hover {
  background: rgba(13, 44, 30, 0.05);
}

/* Preference Options */
.cookie-pref-title {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin: 0;
  text-align: left;
  letter-spacing: -0.01em;
}

.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.cookie-pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(13, 44, 30, 0.08);
}

.cookie-pref-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.cookie-pref-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.cookie-pref-desc {
  font-size: 11.5px;
  color: #5c6e64;
}

.cookie-pref-status-always {
  font-size: 12px;
  font-weight: 700;
  color: #0d2c1e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Switch styling */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: #0d2c1e;
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}

/* Form inputs for Corporate Portal */
.corp-input {
  width: 100%;
  background: var(--bg-dark) !important;
  border: 1px solid var(--surface-dark-border) !important;
  padding: 12px 14px;
  border-radius: 8px;
  color: #FFFFFF !important;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.corp-input:focus {
  border-color: var(--accent-green) !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18) !important;
}

@keyframes toastSlideInTopRight {
  from {
    opacity: 0;
    transform: translateX(45px) translateY(-10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

