/*
 * Tailwind CSS - Compiled styles for Mortgage Pro Theme
 * 
 * This file contains the compiled Tailwind CSS styles that match
 * the React application's design system.
 * 
 * IMPORTANT: All colors use HEX format. Do NOT use hsl() wrappers.
 */

/* =============================================================================
   BASE LAYER - CSS VARIABLES & TOKENS (HEX FORMAT)
   ============================================================================= */

:root {
  /* Deep navy & gold - Trust & Premium */
  --background: #f5f6f8;
  --foreground: #1a2638;

  --card: #ffffff;
  --card-foreground: #1a2638;

  --popover: #ffffff;
  --popover-foreground: #1a2638;

  /* Navy primary */
  --primary: #1e3a5f;
  --primary-foreground: #fef9f3;

  /* Light blue secondary */
  --secondary: #e8eef4;
  --secondary-foreground: #1e3a5f;

  --muted: #e5eaef;
  --muted-foreground: #6b7a8a;

  /* Gold accent */
  --accent: #f5b942;
  --accent-foreground: #1a2638;

  --destructive: #ef4444;
  --destructive-foreground: #ffffff;

  --border: #d8dde5;
  --input: #d8dde5;
  --ring: #f5b942;

  --radius: 0.75rem;

  /* Custom design tokens - HEX - Matching React exactly */
  --gold: #f5b942;
  --gold-light: #ffd480;
  --gold-dark: #6b4a0f;
  --gold-text: #5c3d08;
  
  --navy-50: #f5f6f8;
  --navy-100: #e5e8ed;
  --navy-200: #c7cdd8;
  --navy-300: #8a99b3;
  --navy-400: #4d6280;
  --navy-500: #2d4a6b;
  --navy-600: #1e3a5f;
  --navy-700: #1e3a5f;
  --navy-800: #152a45;
  --navy-900: #0f1f33;

  /* Amber colors for gradients */
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;

  /* Gradients - Matching React exactly */
  --gradient-hero: linear-gradient(135deg, #152a45 0%, #1e3a5f 50%, #3b5a7d 100%);
  --gradient-gold: linear-gradient(135deg, #f5b942 0%, #6b4a0f 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

  /* Shadows - HEX */
  --shadow-sm: 0 1px 2px 0 rgba(26, 38, 56, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(26, 38, 56, 0.1), 0 2px 4px -2px rgba(26, 38, 56, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(26, 38, 56, 0.1), 0 4px 6px -4px rgba(26, 38, 56, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(26, 38, 56, 0.1), 0 8px 10px -6px rgba(26, 38, 56, 0.1);
  --shadow-gold: 0 10px 40px -10px rgba(245, 185, 66, 0.4);
  --shadow-card: 0 4px 20px -4px rgba(26, 38, 56, 0.08);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

.dark {
  --background: #0a1929;
  --foreground: #e8eef4;

  --card: #152a45;
  --card-foreground: #e8eef4;

  --popover: #152a45;
  --popover-foreground: #e8eef4;

  --primary: #f5b942;
  --primary-foreground: #0f1f33;

  --secondary: #1e3a5f;
  --secondary-foreground: #e8eef4;

  --muted: #1e3a5f;
  --muted-foreground: #8a99b3;

  --accent: #f5b942;
  --accent-foreground: #0f1f33;

  --destructive: #7f1d1d;
  --destructive-foreground: #fafafa;

  --border: #2d4a6b;
  --input: #2d4a6b;
  --ring: #f5b942;
}

/* =============================================================================
   BASE STYLES
   ============================================================================= */

*, *::before, *::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-feature-settings: normal;
  font-variation-settings: normal;
}

body {
  margin: 0;
  line-height: inherit;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* Screen reader only - accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Content links - Blog posts, service pages, general content */
.entry-content a,
.post-content a,
.blog-content a,
article a:not(.btn):not(.button):not([class*="nav"]),
.service-content a:not(.btn):not(.button) {
  color: #1e3a5f;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.entry-content a:hover,
.post-content a:hover,
.blog-content a:hover,
article a:not(.btn):not(.button):not([class*="nav"]):hover,
.service-content a:hover {
  color: #d4a012;
}

/* Gold accent links */
a.text-gold,
.text-gold a {
  color: #F5C842;
}

a.text-gold:hover,
.text-gold a:hover {
  color: #d4a012;
}

/* Navy links */
a.text-navy,
a.text-primary {
  color: #1e3a5f;
}

a.text-navy:hover,
a.text-primary:hover {
  color: #152a45;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* =============================================================================
   TABLE STYLES - Blog posts & content areas
   ============================================================================= */

/* Reset border-width override for tables - CRITICAL to show borders */
table,
table thead,
table tbody,
table tfoot,
table tr,
table th,
table td {
  border-width: 1px !important;
  border-style: solid !important;
  border-color: #e2e8f0 !important;
}

table {
  width: 100% !important;
  min-width: 400px;
  border-collapse: collapse !important;
  table-layout: auto !important;
  margin: 1.5rem 0;
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: visible;
  display: table !important;
}

thead {
  background: #f1f5f9;
  display: table-header-group !important;
}

tbody {
  display: table-row-group !important;
}

tr {
  display: table-row !important;
}

th {
  padding: 0.75rem 1rem !important;
  text-align: left;
  font-weight: 600;
  color: #1e293b !important;
  font-family: var(--font-body);
  display: table-cell !important;
  min-width: 80px;
  word-break: break-word;
  visibility: visible !important;
  opacity: 1 !important;
}

td {
  padding: 0.75rem 1rem !important;
  color: #374151 !important;
  display: table-cell !important;
  min-width: 80px;
  word-break: break-word;
  visibility: visible !important;
  opacity: 1 !important;
}

tbody tr:nth-child(even) {
  background: #f8fafc;
}

tbody tr:hover {
  background: #f1f5f9;
}

/* WordPress Block Editor table - ensure proper display */
.wp-block-table,
figure.wp-block-table {
  display: block !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  max-width: 100%;
}

.wp-block-table table,
figure.wp-block-table table {
  display: table !important;
  table-layout: auto !important;
  width: 100% !important;
  min-width: 400px;
  margin: 0;
  border-collapse: collapse !important;
}

.wp-block-table td,
.wp-block-table th,
figure.wp-block-table td,
figure.wp-block-table th {
  display: table-cell !important;
  min-width: 80px;
  padding: 0.75rem 1rem !important;
  border: 1px solid #e2e8f0 !important;
  word-break: break-word;
  visibility: visible !important;
  opacity: 1 !important;
  color: #374151 !important;
}

.wp-block-table th,
figure.wp-block-table th {
  color: #1e293b !important;
  font-weight: 600;
  background: #f1f5f9;
}

/* Responsive table wrapper - Professional styling */
.table-responsive,
.table-wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.table-responsive table,
.table-wrapper table {
  margin: 0;
  border: none !important;
  border-radius: 0 !important;
}

/* Blog content specific table styles - Modern professional design */
.blog-content table,
.entry-content table,
.post-content table,
article table {
  width: 100% !important;
  min-width: 500px;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  table-layout: auto !important;
  margin: 2rem 0;
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  display: table !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Table caption styling */
.blog-content table caption,
.entry-content table caption,
.post-content table caption,
article table caption {
  padding: 1rem;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  font-size: 1rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

/* Table header styling - Premium look */
.blog-content table thead,
.entry-content table thead,
.post-content table thead,
article table thead {
  background: linear-gradient(180deg, #1e3a5f 0%, #152a45 100%);
}

.blog-content table th,
.entry-content table th,
.post-content table th,
article table th {
  padding: 1rem 1.25rem !important;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff !important;
  background: transparent;
  border: none !important;
  border-bottom: 2px solid #f5b942 !important;
  display: table-cell !important;
  min-width: 100px;
  word-break: normal;
  white-space: nowrap;
  visibility: visible !important;
  opacity: 1 !important;
}

.blog-content table th:first-child,
.entry-content table th:first-child,
.post-content table th:first-child,
article table th:first-child {
  border-top-left-radius: 0.75rem;
}

.blog-content table th:last-child,
.entry-content table th:last-child,
.post-content table th:last-child,
article table th:last-child {
  border-top-right-radius: 0.75rem;
}

/* Table body styling */
.blog-content table tbody,
.entry-content table tbody,
.post-content table tbody,
article table tbody {
  display: table-row-group !important;
}

.blog-content table td,
.entry-content table td,
.post-content table td,
article table td {
  padding: 1rem 1.25rem !important;
  color: #374151 !important;
  border: none !important;
  border-bottom: 1px solid #e2e8f0 !important;
  display: table-cell !important;
  min-width: 100px;
  word-break: normal;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 0.9375rem;
  line-height: 1.5;
  vertical-align: top;
}

/* Last row - no bottom border */
.blog-content table tbody tr:last-child td,
.entry-content table tbody tr:last-child td,
.post-content table tbody tr:last-child td,
article table tbody tr:last-child td {
  border-bottom: none !important;
}

/* Alternating row colors - Subtle zebra striping */
.blog-content table tbody tr:nth-child(even),
.entry-content table tbody tr:nth-child(even),
.post-content table tbody tr:nth-child(even),
article table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.blog-content table tbody tr:nth-child(odd),
.entry-content table tbody tr:nth-child(odd),
.post-content table tbody tr:nth-child(odd),
article table tbody tr:nth-child(odd) {
  background: #ffffff;
}

/* Hover effect - Professional highlight */
.blog-content table tbody tr:hover,
.entry-content table tbody tr:hover,
.post-content table tbody tr:hover,
article table tbody tr:hover {
  background: #f0f7ff !important;
  transition: background-color 0.15s ease;
}

/* First column emphasis - Often labels */
.blog-content table td:first-child,
.entry-content table td:first-child,
.post-content table td:first-child,
article table td:first-child {
  font-weight: 500;
  color: #1e293b !important;
}

/* Numeric/data columns - Right align when appropriate */
.blog-content table td[data-type="number"],
.entry-content table td[data-type="number"],
.post-content table td[data-type="number"],
article table td[data-type="number"] {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Bold text in cells */
.blog-content table strong,
.entry-content table strong,
.post-content table strong,
article table strong {
  color: #1e293b;
  font-weight: 600;
}

/* Links in tables */
.blog-content table a,
.entry-content table a,
.post-content table a,
article table a {
  color: #1e3a5f !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-content table a:hover,
.entry-content table a:hover,
.post-content table a:hover,
article table a:hover {
  color: #b8860b !important;
}

/* Mobile responsiveness for tables */
@media (max-width: 768px) {
  /* Keep the table semantics intact; only make the container scrollable. */
  .blog-content,
  .entry-content,
  .post-content,
  article {
    overflow-x: visible;
  }

  /* Prefer wrapping the table (wp-block-table / table-wrapper) instead of forcing table display:block */
  .table-responsive,
  .table-wrapper,
  .wp-block-table,
  figure.wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  /* Ensure the table can scroll horizontally if needed */
  .blog-content table,
  .entry-content table,
  .post-content table,
  article table {
    width: max-content;
    min-width: 100%;
    font-size: 0.875rem;
  }

  .blog-content table th,
  .entry-content table th,
  .post-content table th,
  article table th {
    padding: 0.75rem 0.875rem !important;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .blog-content table td,
  .entry-content table td,
  .post-content table td,
  article table td {
    padding: 0.75rem 0.875rem !important;
    font-size: 0.875rem;
    min-width: auto;
  }

  .table-responsive,
  .table-wrapper {
    margin: 1.5rem -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* Scroll indicator for mobile */
.table-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.9));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.table-wrapper.has-scroll::after {
  opacity: 1;
}

/* WordPress block table overrides */
.wp-block-table,
figure.wp-block-table {
  margin: 0 !important;
  overflow: visible;
}

.wp-block-table figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

/* =============================================================================
   ACCESSIBILITY UTILITIES
   ============================================================================= */

/* Screen reader only - visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Remove sr-only when focused */
.focus\:not-sr-only:focus {
  position: absolute;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.focus\:absolute:focus { position: absolute; }
.focus\:top-4:focus { top: 1rem; }
.focus\:left-4:focus { left: 1rem; }
.focus\:z-\[100\]:focus { z-index: 100; }
.focus\:px-4:focus { padding-left: 1rem; padding-right: 1rem; }
.focus\:py-2:focus { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.focus\:bg-navy-800:focus { background-color: #152a45; }
.focus\:text-white:focus { color: #ffffff; }
.focus\:rounded-md:focus { border-radius: 0.375rem; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--gold); }
.focus\:ring-gold:focus { --tw-ring-color: #f5b942; }

/* =============================================================================
   CONTAINER
   ============================================================================= */

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* =============================================================================
   DISPLAY UTILITIES
   ============================================================================= */

.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.inline-grid { display: inline-grid; }
.contents { display: contents; }

/* Flex utilities */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col-reverse { flex-direction: column-reverse; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.self-auto { align-self: auto; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }

/* Grid utilities */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

/* Responsive grid columns - md (768px+) */
@media (min-width: 768px) {
  .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}

/* Responsive grid columns - lg (1024px+) */
@media (min-width: 1024px) {
  .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}

.grid-rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)); }
.grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)); }
.grid-rows-3 { grid-template-rows: repeat(3, minmax(0, 1fr)); }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-full { grid-column: 1 / -1; }

/* Order utilities for flex/grid */
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-first { order: -9999; }
.order-last { order: 9999; }
.order-none { order: 0; }

.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }
.row-span-3 { grid-row: span 3 / span 3; }

/* Gap utilities */
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-24 { gap: 6rem; }

.gap-x-0 { column-gap: 0; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-x-12 { column-gap: 3rem; }
.gap-x-16 { column-gap: 4rem; }
.gap-x-24 { column-gap: 6rem; }

.gap-y-0 { row-gap: 0; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }
.gap-y-12 { row-gap: 3rem; }
.gap-y-16 { row-gap: 4rem; }

/* =============================================================================
   TYPOGRAPHY UTILITIES
   ============================================================================= */

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }

.italic { font-style: italic; }
.underline { text-decoration-line: underline; }
.no-underline { text-decoration-line: none; }

/* Text transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* Line clamp utilities */
.line-clamp-1 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.line-clamp-4 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }

/* Text overflow */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-ellipsis { text-overflow: ellipsis; }
.text-clip { text-overflow: clip; }

.resize-none { resize: none; }

/* =============================================================================
   COLOR UTILITIES (HEX - NO hsl() wrappers)
   ============================================================================= */

.bg-background { background-color: var(--background); }
.bg-foreground { background-color: var(--foreground); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-muted { background-color: var(--muted); }
.bg-accent { background-color: var(--accent); }
.bg-gold { background-color: var(--gold); }
.bg-navy-50 { background-color: var(--navy-50); }
.bg-navy-100 { background-color: var(--navy-100); }
.bg-navy-600 { background-color: var(--navy-600); }
.bg-navy-700 { background-color: var(--navy-700); }
.bg-navy-800 { background-color: var(--navy-800); }
.bg-navy-900 { background-color: var(--navy-900); }
.bg-white { background-color: #ffffff; }
.bg-transparent { background-color: transparent; }

/* Slate backgrounds */
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-slate-700 { background-color: #334155; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }

/* Blue backgrounds (for category badges) */
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-200 { background-color: #bfdbfe; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }

/* Green backgrounds (for category badges) */
.bg-green-100 { background-color: #dcfce7; }
.bg-green-200 { background-color: #bbf7d0; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }

/* Purple backgrounds (for category badges) */
.bg-purple-100 { background-color: #f3e8ff; }
.bg-purple-200 { background-color: #e9d5ff; }
.bg-purple-500 { background-color: #a855f7; }
.bg-purple-600 { background-color: #9333ea; }

/* Orange backgrounds (for category badges) */
.bg-orange-100 { background-color: #ffedd5; }
.bg-orange-200 { background-color: #fed7aa; }

/* Pink backgrounds (for category badges) */
.bg-pink-100 { background-color: #fce7f3; }
.bg-pink-200 { background-color: #fbcfe8; }

/* Radial gradients */
.bg-gradient-radial { background-image: radial-gradient(var(--tw-gradient-stops)); }
.from-gold\/5 { --tw-gradient-from: rgba(245, 185, 66, 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-transparent { --tw-gradient-to: transparent; }

/* Amber backgrounds for gradients */
.bg-amber-300 { background-color: var(--amber-300); }
.bg-amber-400 { background-color: var(--amber-400); }
.bg-amber-500 { background-color: var(--amber-500); }
.bg-amber-600 { background-color: var(--amber-600); }
.bg-amber-700 { background-color: var(--amber-700); }

.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-secondary-foreground { color: var(--secondary-foreground); }
.text-gold { color: var(--gold); }
.text-gold-dark { color: var(--gold-dark); }
.text-navy-700 { color: var(--navy-700); }
.text-navy-800 { color: var(--navy-800); }
.text-navy-900 { color: var(--navy-900); }
.text-white { color: #ffffff; }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-red-500 { color: #ef4444; }
.text-green-500 { color: #22c55e; }

/* Fill utilities for SVGs */
.fill-gold { fill: var(--gold); }
.fill-current { fill: currentColor; }

/* Amber text colors */
.text-amber-300 { color: var(--amber-300); }
.text-amber-400 { color: var(--amber-400); }
.text-amber-500 { color: var(--amber-500); }
.text-amber-600 { color: var(--amber-600); }
.text-amber-700 { color: var(--amber-700); }

/* Slate text colors */
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }

/* Blue text colors (for category badges) */
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }

/* Green text colors (for category badges) */
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }

/* Purple text colors (for category badges) */
.text-purple-700 { color: #7c3aed; }
.text-purple-800 { color: #6b21a8; }

/* Orange text colors (for category badges) */
.text-orange-700 { color: #c2410c; }
.text-orange-800 { color: #9a3412; }

/* Pink text colors (for category badges) */
.text-pink-700 { color: #be185d; }
.text-pink-800 { color: #9d174d; }

.border-border { border-color: var(--border); }
.border-border\/50 { border-color: rgba(216, 221, 229, 0.5); }
.border-gold { border-color: var(--gold); }
.border-gold\/20 { border-color: rgba(245, 185, 66, 0.2); }
.border-gold\/30 { border-color: rgba(245, 185, 66, 0.3); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }

/* Slate border colors */
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-300 { border-color: #cbd5e1; }

/* Border utilities */
.border-y { border-top-width: 1px; border-bottom-width: 1px; }

.text-gold\/20 { color: rgba(245, 185, 66, 0.2); }

/* Opacity variants - using rgba */
.bg-gold\/5 { background-color: rgba(245, 185, 66, 0.05); }
.bg-gold\/10 { background-color: rgba(245, 185, 66, 0.1); }
.bg-gold\/20 { background-color: rgba(245, 185, 66, 0.2); }
.bg-navy-900\/80 { background-color: rgba(15, 31, 51, 0.8); }
.bg-navy-900\/90 { background-color: rgba(15, 31, 51, 0.9); }
.bg-navy-900\/95 { background-color: rgba(15, 31, 51, 0.95); }
.bg-navy-900\/98 { background-color: rgba(15, 31, 51, 0.98); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-background\/95 { background-color: rgba(245, 246, 248, 0.95); }
.bg-muted\/30 { background-color: rgba(229, 234, 239, 0.3); }
.bg-muted\/50 { background-color: rgba(229, 234, 239, 0.5); }
.bg-slate-300 { background-color: #cbd5e1; }

/* Primary opacity variants - navy #1e3a5f */
.bg-primary\/5 { background-color: rgba(30, 58, 95, 0.05); }
.bg-primary\/10 { background-color: rgba(30, 58, 95, 0.1); }
.bg-primary\/20 { background-color: rgba(30, 58, 95, 0.2); }
.bg-primary\/80 { background-color: rgba(30, 58, 95, 0.8); }
.bg-primary\/90 { background-color: rgba(30, 58, 95, 0.9); }

/* Text opacity variants */
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

/* Hover states */
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }

/* =============================================================================
   GRADIENT UTILITIES (HEX)
   ============================================================================= */

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

.bg-hero-gradient {
  background: var(--gradient-hero);
}

.bg-gradient-gold {
  background: var(--gradient-gold);
}

/* Amber gradient utilities */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-bl { background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops)); }
.bg-gradient-to-tl { background-image: linear-gradient(to top left, var(--tw-gradient-stops)); }

/* Primary gradient utilities - navy #1e3a5f */
.from-primary { --tw-gradient-from: #1e3a5f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 95, 0)); }
.to-primary { --tw-gradient-to: #1e3a5f; }
.to-primary\/80 { --tw-gradient-to: rgba(30, 58, 95, 0.8); }

.from-amber-300 { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); }
.from-amber-400 { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); }
.from-amber-500 { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); }
.from-amber-600 { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-amber-400 { --tw-gradient-to: #fbbf24; }
.to-amber-500 { --tw-gradient-to: #f59e0b; }
.to-amber-600 { --tw-gradient-to: #d97706; }
.to-amber-700 { --tw-gradient-to: #b45309; }

/* Gold gradient shorthand */
.bg-gradient-gold-button {
  background: linear-gradient(to right, #fcd34d, #b45309);
  box-shadow: 0 10px 40px -10px rgba(217, 119, 6, 0.4);
}

/* Navy gradient stops */
.from-navy-700 { --tw-gradient-from: #1e3a5f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-navy-800 { --tw-gradient-from: #152a45; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-navy-900 { --tw-gradient-from: #0f1f33; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-navy-700 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a5f, var(--tw-gradient-to, transparent); }
.via-navy-800 { --tw-gradient-stops: var(--tw-gradient-from), #152a45, var(--tw-gradient-to, transparent); }
.to-navy-600 { --tw-gradient-to: #1e3a5f; }
.to-navy-700 { --tw-gradient-to: #1e3a5f; }
.to-navy-800 { --tw-gradient-to: #152a45; }
.to-navy-900 { --tw-gradient-to: #0f1f33; }

/* Slate gradient stops */
.from-slate-50 { --tw-gradient-from: #f8fafc; --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-slate-100 { --tw-gradient-from: #f1f5f9; --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-slate-700 { --tw-gradient-from: #334155; --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-slate-800 { --tw-gradient-from: #1e293b; --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-slate-900 { --tw-gradient-from: #0f172a; --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-slate-700 { --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), #334155, var(--tw-gradient-to); }
.via-slate-800 { --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), #1e293b, var(--tw-gradient-to); }
.to-slate-700 { --tw-gradient-to: #334155; }
.to-slate-800 { --tw-gradient-to: #1e293b; }
.to-slate-900 { --tw-gradient-to: #0f172a; }

/* Gold gradient stops */
.from-gold { --tw-gradient-from: #f5b942; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-gold\/20 { --tw-gradient-from: rgba(245, 185, 66, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-gold-dark { --tw-gradient-from: #9a6a14; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-gold { --tw-gradient-to: #f5b942; }
.to-gold-dark { --tw-gradient-to: #9a6a14; }
.to-gold\/70 { --tw-gradient-to: rgba(245, 185, 66, 0.7); }
.to-transparent { --tw-gradient-to: transparent; }
/* =============================================================================
   SHADOW UTILITIES
   ============================================================================= */

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-gold { box-shadow: var(--shadow-gold); }
.shadow-card { box-shadow: var(--shadow-card); }

/* =============================================================================
   SPACING UTILITIES
   ============================================================================= */

.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-0 { margin-top: 0; margin-bottom: 0; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.-mt-8 { margin-top: -2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.ml-auto { margin-left: auto; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pl-4 { padding-left: 1rem; }
.pl-8 { padding-left: 2rem; }
.pr-4 { padding-right: 1rem; }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.-space-x-2 > * + * { margin-left: -0.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* =============================================================================
   LAYOUT UTILITIES
   ============================================================================= */

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }
.grow-0 { flex-grow: 0; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Column span utilities */
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-full { grid-column: 1 / -1; }

/* =============================================================================
   SIZING UTILITIES
   ============================================================================= */

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }

.h-auto { height: auto; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }

.min-h-screen { min-height: 100vh; }
.min-h-\[40vh\] { min-height: 40vh; }
.min-h-\[600px\] { min-height: 600px; }
.min-h-\[90vh\] { min-height: 90vh; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.aspect-video { aspect-ratio: 16 / 9; }

/* =============================================================================
   POSITION UTILITIES
   ============================================================================= */

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-10 { top: 2.5rem; }
.top-20 { top: 5rem; }
.right-10 { right: 2.5rem; }
.bottom-20 { bottom: 5rem; }
.left-10 { left: 2.5rem; }
.-top-2 { top: -0.5rem; }
.-top-6 { top: -1.5rem; }
.-left-2 { left: -0.5rem; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.-z-10 { z-index: -10; }

/* =============================================================================
   BORDER & ROUNDED UTILITIES
   ============================================================================= */

.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }

.rounded { border-radius: var(--radius); }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: calc(var(--radius) + 8px); }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* =============================================================================
   EFFECTS UTILITIES
   ============================================================================= */

.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-visible { overflow: visible; }

.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

.blur-sm { filter: blur(4px); }
.blur { filter: blur(8px); }
.blur-md { filter: blur(12px); }
.blur-lg { filter: blur(16px); }
.blur-xl { filter: blur(24px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }

/* =============================================================================
   TRANSITION UTILITIES
   ============================================================================= */

.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Transform utilities */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.translate-y-0 { --tw-translate-y: 0px; }
.translate-y-1 { --tw-translate-y: 0.25rem; }
.-translate-y-1 { --tw-translate-y: -0.25rem; }

.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

/* =============================================================================
   CURSOR & INTERACTION
   ============================================================================= */

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.select-none { user-select: none; }
.select-text { user-select: text; }

/* =============================================================================
   OBJECT FIT
   ============================================================================= */

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }

/* =============================================================================
   LIST UTILITIES
   ============================================================================= */

.list-none { list-style-type: none; }
.list-disc { list-style-type: disc; }

/* =============================================================================
   GLASS EFFECTS - with fallbacks for older iOS Safari
   ============================================================================= */

.glass {
  background: rgba(255, 255, 255, 0.85); /* Fallback for no backdrop-filter support */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: var(--gradient-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@supports not ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .glass {
    background: rgba(255, 255, 255, 0.95);
  }
}

.glass-dark {
  background: rgba(15, 31, 51, 0.95); /* Fallback */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(15, 31, 51, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@supports not ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .glass-dark {
    background-color: rgba(15, 31, 51, 0.95);
  }
}

/* =============================================================================
   RESPONSIVE UTILITIES
   ============================================================================= */

@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:inline-flex { display: inline-flex; }
  .md\:grid { display: grid; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:h-48 { height: 12rem; }
  .md\:h-56 { height: 14rem; }
  .md\:h-64 { height: 16rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:w-1\/4 { width: 25%; }
  .md\:w-3\/4 { width: 75%; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:grid { display: grid; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:w-1\/3 { width: 33.333333%; }
  .lg\:w-2\/3 { width: 66.666667%; }
  .lg\:w-10 { width: 2.5rem; }
  .lg\:w-12 { width: 3rem; }
  .lg\:w-28 { width: 7rem; }
  .lg\:h-10 { height: 2.5rem; }
  .lg\:h-12 { height: 3rem; }
  .lg\:h-28 { height: 7rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* =============================================================================
   HOVER STATES (HEX - NO hsl() wrappers)
   ============================================================================= */

.hover\:bg-gold:hover { background-color: var(--gold); }
.hover\:bg-gold-dark:hover { background-color: var(--gold-dark); }
.hover\:bg-secondary:hover { background-color: var(--secondary); }
.hover\:bg-primary\/90:hover { background-color: rgba(30, 58, 95, 0.9); }
.hover\:bg-white\/15:hover { background-color: rgba(255, 255, 255, 0.15); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }

.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-amber-300:hover { color: #fcd34d; }
.hover\:text-amber-400:hover { color: #fbbf24; }

.hover\:border-gold:hover { border-color: var(--gold); }
.hover\:border-white\/40:hover { border-color: rgba(255, 255, 255, 0.4); }

.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }
.hover\:shadow-gold:hover { box-shadow: var(--shadow-gold); }
.hover\:shadow-amber-500\/25:hover { box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.25); }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }

/* Group hover utilities */
.group:hover .group-hover\:text-gold { color: var(--gold); }
.group:hover .group-hover\:text-primary { color: var(--primary); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

/* =============================================================================
   FOCUS STATES (HEX - NO hsl() wrappers)
   ============================================================================= */

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--ring); }
.focus\:ring-primary:focus { box-shadow: 0 0 0 2px var(--primary); }
.focus\:ring-gold\/50:focus { box-shadow: 0 0 0 2px rgba(245, 185, 66, 0.5); }
.focus\:border-gold:focus { border-color: var(--gold); }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px var(--ring); }

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

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

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-shimmer { animation: shimmer 2s linear infinite; background-size: 200% 100%; }
.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
.animate-fade-in-left { animation: fadeInLeft 0.6s ease-out forwards; }
.animate-fade-in-right { animation: fadeInRight 0.6s ease-out forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease-out forwards; }
.animate-slide-up { animation: slideUp 0.7s ease-out forwards; }

/* =============================================================================
   BUTTON COMPONENTS (HEX - NO hsl() wrappers)
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s ease;
  cursor: pointer;
  outline: none;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Button Variants */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: rgba(30, 58, 95, 0.9);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: rgba(232, 238, 244, 0.8);
}

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

.btn-outline:hover {
  background-color: var(--secondary);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: var(--secondary);
}

.btn-gold {
  background: linear-gradient(135deg, #f5c842 0%, #d4a012 50%, #b8860b 100%);
  color: #1e3a5f;
  border: none;
  font-weight: 600;
  box-shadow: 0 10px 40px -10px rgba(212, 160, 18, 0.5);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 50px -10px rgba(212, 160, 18, 0.6);
  filter: brightness(1.05);
}

.btn-hero {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

@supports not ((-webkit-backdrop-filter: blur(4px)) or (backdrop-filter: blur(4px))) {
  .btn-hero {
    background-color: rgba(255, 255, 255, 0.3);
  }
}

.btn-hero:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Button Sizes */
.btn-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  border-radius: calc(var(--radius) - 2px);
}

.btn-md {
  height: 2.5rem;
  padding: 0 1rem;
}

.btn-lg {
  height: 2.75rem;
  padding: 0 2rem;
  border-radius: calc(var(--radius) - 2px);
}

.btn-xl {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

/* =============================================================================
   CARD COMPONENT (HEX - NO hsl() wrappers)
   ============================================================================= */

.card {
  background-color: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  padding: 1.5rem;
}

.card-content {
  padding: 1.5rem;
  padding-top: 0;
}

.card-footer {
  padding: 1.5rem;
  padding-top: 0;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  font-family: var(--font-heading);
}

.card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* =============================================================================
   FORM COMPONENTS (HEX - NO hsl() wrappers)
   ============================================================================= */

.input {
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--input);
  background-color: var(--background);
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(245, 185, 66, 0.2);
}

.input::placeholder {
  color: var(--muted-foreground);
}

.input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.textarea {
  display: flex;
  min-height: 5rem;
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--input);
  background-color: var(--background);
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  resize: vertical;
}

.textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(245, 185, 66, 0.2);
}

.label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--foreground);
}

/* =============================================================================
   SECTION COMPONENTS (HEX - NO hsl() wrappers)
   ============================================================================= */

.section {
  padding: 5rem 0;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: rgba(245, 185, 66, 0.1);
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  line-height: 1.6;
}

/* =============================================================================
   HERO SECTION (HEX - NO hsl() wrappers)
   ============================================================================= */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(21, 42, 69, 0.92) 0%, 
    rgba(30, 58, 95, 0.85) 50%, 
    rgba(59, 90, 125, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-features {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

@supports not ((-webkit-backdrop-filter: blur(4px)) or (backdrop-filter: blur(4px))) {
  .hero-feature {
    background: rgba(255, 255, 255, 0.25);
  }
}

.hero-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--gradient-gold);
  flex-shrink: 0;
}

.hero-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy-900);
}

.hero-feature-title {
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.hero-feature-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================================================
   SERVICE CARDS (HEX - NO hsl() wrappers)
   ============================================================================= */

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 2rem;
  text-align: center;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  background: var(--gradient-gold);
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--navy-900);
}

.service-rate {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: rgba(245, 185, 66, 0.1);
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.service-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* =============================================================================
   TESTIMONIAL CARDS (HEX - NO hsl() wrappers)
   ============================================================================= */

.testimonials {
  background-color: var(--muted);
  padding: 5rem 0;
}

.testimonial-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: var(--gold);
}

.testimonial-stars svg {
  fill: currentColor;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* =============================================================================
   CALCULATOR SECTION (HEX - NO hsl() wrappers)
   ============================================================================= */

.calculator-section {
  background: var(--gradient-hero);
  padding: 5rem 0;
  color: white;
}

.calculator-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
}

@supports not ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .calculator-card {
    background: rgba(255, 255, 255, 0.25);
  }
}

.calculator-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: calc(var(--radius) - 2px);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  width: 100%;
}

.calculator-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245, 185, 66, 0.2);
}

.calculator-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.calculator-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  display: block;
}

.calculator-result {
  background: var(--gradient-gold);
  color: var(--navy-900);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
}

.calculator-result-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

/* =============================================================================
   HEADER & NAVIGATION (HEX - NO hsl() wrappers)
   ============================================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(15, 31, 51, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
}

.site-logo img {
  height: 2.5rem;
  width: auto;
}

.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
  }
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 31, 51, 0.98);
  backdrop-filter: blur(12px);
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-link {
  display: block;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu-link:hover {
  color: var(--gold);
}

/* =============================================================================
   FOOTER (HEX - NO hsl() wrappers)
   ============================================================================= */

.site-footer {
  background-color: var(--navy-900);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 20rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 2rem;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy-900);
}

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* =============================================================================
   CONTACT SECTION (HEX - NO hsl() wrappers)
   ============================================================================= */

.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: rgba(245, 185, 66, 0.1);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold-dark);
}

.contact-info-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-form {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

/* =============================================================================
   BLOG SECTION (HEX - NO hsl() wrappers)
   ============================================================================= */

.blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  overflow: hidden;
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: rgba(245, 185, 66, 0.1);
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* =============================================================================
   HOW IT WORKS SECTION (HEX - NO hsl() wrappers)
   ============================================================================= */

.how-it-works {
  background-color: var(--muted);
  padding: 5rem 0;
}

.steps-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* =============================================================================
   QUIZ FORM (HEX - NO hsl() wrappers)
   ============================================================================= */

.quiz-container {
  max-width: 32rem;
  margin: 0 auto;
}

.quiz-step {
  display: none;
}

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

.quiz-progress {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.quiz-progress-bar {
  flex: 1;
  height: 0.25rem;
  background-color: var(--border);
  border-radius: 9999px;
  overflow: hidden;
}

.quiz-progress-bar.active {
  background-color: var(--gold);
}

.quiz-progress-bar.completed {
  background: var(--gradient-gold);
}

.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

.quiz-options {
  display: grid;
  gap: 0.75rem;
}

.quiz-option {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.quiz-option:hover {
  border-color: var(--gold);
  background-color: rgba(245, 185, 66, 0.05);
}

.quiz-option.selected {
  border-color: var(--gold);
  background-color: rgba(245, 185, 66, 0.1);
}

.quiz-option-label {
  font-weight: 500;
  color: var(--foreground);
}

.quiz-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all 0.2s;
}

.quiz-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245, 185, 66, 0.2);
}

/* =============================================================================
   SCREEN READER UTILITIES
   ============================================================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =============================================================================
   SVG ICON SIZES
   ============================================================================= */

svg.w-4 { width: 1rem; height: 1rem; }
svg.w-5 { width: 1.25rem; height: 1.25rem; }
svg.w-6 { width: 1.5rem; height: 1.5rem; }
svg.w-8 { width: 2rem; height: 2rem; }
svg.w-10 { width: 2.5rem; height: 2.5rem; }
svg.w-12 { width: 3rem; height: 3rem; }

svg.h-4 { height: 1rem; width: 1rem; }
svg.h-5 { height: 1.25rem; width: 1.25rem; }
svg.h-6 { height: 1.5rem; width: 1.5rem; }
svg.h-8 { height: 2rem; width: 2rem; }
svg.h-10 { height: 2.5rem; height: 2.5rem; }
svg.h-12 { height: 3rem; width: 3rem; }

/* =============================================================================
   ADDITIONAL TEXT UTILITIES
   ============================================================================= */

/* White text with opacity */
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

/* Primary foreground opacity */
.text-primary-foreground\/80 { color: rgba(254, 249, 243, 0.8); }

/* Appearance */
.appearance-none { appearance: none; -webkit-appearance: none; }

/* Fill */
.fill-current { fill: currentColor; }

/* Resize */
.resize-none { resize: none; }

/* Accent color */
.accent-primary { accent-color: var(--primary); }

/* Antialiased */
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Invert for dark logo - standard selectors */
.logo-dark img { filter: brightness(0); }
.logo-invert img { filter: invert(1); }

/* =============================================================================
   SLATE COLORS
   ============================================================================= */

.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-200 { background-color: #e2e8f0; }
.bg-slate-300 { background-color: #cbd5e1; }
.bg-slate-400 { background-color: #94a3b8; }
.bg-slate-500 { background-color: #64748b; }
.bg-slate-600 { background-color: #475569; }
.bg-slate-700 { background-color: #334155; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }

.text-slate-50 { color: #f8fafc; }
.text-slate-100 { color: #f1f5f9; }
.text-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }

.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-300 { border-color: #cbd5e1; }

/* =============================================================================
   AMBER COLORS
   ============================================================================= */

.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-500\/20 { background-color: rgba(245, 158, 11, 0.2); }

/* =============================================================================
   TEXT CLIPPING FOR GRADIENTS
   ============================================================================= */

.bg-clip-text { background-clip: text; -webkit-background-clip: text; }
.text-transparent { color: transparent; -webkit-text-fill-color: transparent; }

/* =============================================================================
   RANGE SLIDER STYLES (HEX - NO hsl() wrappers)
   ============================================================================= */

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: var(--muted);
  border-radius: 9999px;
  cursor: pointer;
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  background: var(--muted);
  border-radius: 9999px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
  box-shadow: 0 2px 6px rgba(245, 185, 66, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(245, 185, 66, 0.5);
}

input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(0.95);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8px;
  background: var(--muted);
  border-radius: 9999px;
  border: none;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(245, 185, 66, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(245, 185, 66, 0.5);
}

input[type="range"]::-moz-range-progress {
  background: var(--gold);
  border-radius: 9999px;
  height: 8px;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.3), 0 2px 6px rgba(245, 185, 66, 0.4);
}

input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.3), 0 2px 6px rgba(245, 185, 66, 0.4);
}

/* =============================================================================
   LINE CLAMP UTILITIES
   ============================================================================= */

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

/* =============================================================================
   PROSE TYPOGRAPHY (Legal Pages) (HEX - NO hsl() wrappers)
   ============================================================================= */

.prose {
  color: var(--muted-foreground);
  max-width: 65ch;
}

.prose h2 {
  font-family: var(--font-heading);
  color: var(--navy-800);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose h3 {
  font-family: var(--font-heading);
  color: var(--navy-700);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.prose p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose li {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.prose strong {
  color: var(--navy-700);
  font-weight: 600;
}

.prose a {
  color: #1e3a5f;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.prose a:hover {
  color: #d4a012;
  text-decoration: underline;
}

/* Dark background links */
.bg-navy-800 a:not(.btn),
.bg-navy-900 a:not(.btn),
[style*="background"][style*="#152a45"] a:not(.btn),
[style*="background"][style*="#0f1f33"] a:not(.btn) {
  color: #F5C842;
}

.bg-navy-800 a:not(.btn):hover,
.bg-navy-900 a:not(.btn):hover {
  color: #fcd34d;
}

.prose-lg {
  font-size: 1.125rem;
}

.prose-lg h2 {
  font-size: 1.75rem;
}

.prose-lg h3 {
  font-size: 1.375rem;
}

/* =============================================================================
   FOOTER STYLES
   ============================================================================= */

.site-footer {
  background: linear-gradient(135deg, #0f1f33 0%, #152a45 100%);
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #F5C842;
}

.site-footer .footer-heading {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.site-footer .footer-link {
  display: block;
  padding: 0.375rem 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-link:hover {
  color: #F5C842;
  transform: translateX(4px);
}

.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.site-footer .footer-social a:hover {
  background: #F5C842;
  color: #1e3a5f;
  transform: translateY(-3px);
}

/* =============================================================================
   SIDEBAR STYLES
   ============================================================================= */

.sidebar,
.widget-area,
aside.lg\:col-span-1 {
  color: var(--foreground);
}

.sidebar a,
.widget-area a,
aside a:not(.btn):not(.button) {
  color: #1e3a5f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar a:hover,
.widget-area a:hover,
aside a:not(.btn):not(.button):hover {
  color: #d4a012;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #F5C842;
}

.sidebar-list a {
  display: block;
  padding: 0.5rem 0;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
}

.sidebar-list a:hover {
  color: #1e3a5f;
  padding-left: 0.5rem;
}

.sidebar-list li:last-child a {
  border-bottom: none;
}

/* =============================================================================
   MID-SECTION CTA STYLES
   ============================================================================= */

.mid-cta,
.article-cta,
.content-cta {
  background: linear-gradient(135deg, #152a45 0%, #1e3a5f 100%);
  border: 2px solid #F5C842;
  border-radius: 1rem;
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.mid-cta h3,
.article-cta h3,
.content-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.mid-cta p,
.article-cta p,
.content-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.mid-cta .btn,
.article-cta .btn,
.content-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f5c842 0%, #d4a012 50%, #b8860b 100%);
  color: #1e3a5f;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 10px 40px -10px rgba(212, 160, 18, 0.5);
  transition: all 0.3s ease;
}

.mid-cta .btn:hover,
.article-cta .btn:hover,
.content-cta .btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 50px -10px rgba(212, 160, 18, 0.6);
}

/* Alternate CTA style - Gold border variant */
.mid-cta-alt {
  background: #f8fafc;
  border: 2px solid #F5C842;
  border-radius: 1rem;
  padding: 2rem;
  margin: 2.5rem 0;
}

.mid-cta-alt h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.75rem;
}

.mid-cta-alt p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Inline CTA for blog posts */
.inline-cta {
  background: linear-gradient(135deg, rgba(21, 42, 69, 0.05) 0%, rgba(30, 58, 95, 0.08) 100%);
  border-left: 4px solid #F5C842;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
}

.inline-cta p {
  color: #1e3a5f;
  font-weight: 500;
  margin-bottom: 1rem;
}

.inline-cta a {
  color: #d4a012;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inline-cta a:hover {
  color: #b8860b;
}

/* Newsletter CTA in sidebar */
.newsletter-cta {
  background: linear-gradient(135deg, #152a45 0%, #1e3a5f 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.newsletter-cta h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.newsletter-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.newsletter-cta input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.newsletter-cta input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-cta input[type="email"]:focus {
  outline: none;
  border-color: #F5C842;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-cta button {
  width: 100%;
  background: linear-gradient(135deg, #f5c842 0%, #d4a012 100%);
  color: #1e3a5f;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-cta button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(212, 160, 18, 0.5);
}

/* =============================================================================
   ENHANCED ANIMATIONS (Matching React Site)
   ============================================================================= */

/* Scroll-triggered fade-in animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.4, 0.25, 1), 
              transform 0.7s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.animate-on-scroll.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Fade in animation */
.animate-fade-in {
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.4, 0.25, 1) forwards;
}

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

/* Floating shapes animation */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.floating-shape-1 {
  animation: floatShape1 4s ease-in-out infinite;
}

.floating-shape-2 {
  animation: floatShape2 5s ease-in-out infinite;
}

.floating-shape-3 {
  animation: floatShape3 4s ease-in-out infinite;
}

/* Respect user's motion preferences - WCAG 2.2.2 */
@media (prefers-reduced-motion: reduce) {
  .floating-shape,
  .floating-shape-1,
  .floating-shape-2,
  .floating-shape-3 {
    animation: none;
  }
}

@keyframes floatShape1 {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

@keyframes floatShape2 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(15px) translateX(10px);
  }
}

@keyframes floatShape3 {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-30px);
    opacity: 0.8;
  }
}

/* Button shimmer effect */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.btn-shimmer:hover::before {
  transform: translateX(100%);
}

/* Card hover lift effect */
.card-hover {
  transition: transform 0.3s cubic-bezier(0.25, 0.4, 0.25, 1),
              box-shadow 0.3s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.card-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px -12px rgba(26, 38, 56, 0.15);
}

/* Icon hover animation */
.icon-hover {
  transition: transform 0.3s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.icon-hover:hover,
.group:hover .icon-hover {
  transform: scale(1.1) rotate(5deg);
}

/* Testimonial slide animations */
.testimonial-slide-enter {
  animation: slideIn 0.3s ease-out forwards;
}

.testimonial-slide-exit {
  animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100px);
  }
}

/* Star rating animation */
.star-animate {
  opacity: 0;
  transform: scale(0);
  animation: starPop 0.3s ease-out forwards;
}

.star-animate:nth-child(1) { animation-delay: 0.1s; }
.star-animate:nth-child(2) { animation-delay: 0.2s; }
.star-animate:nth-child(3) { animation-delay: 0.3s; }
.star-animate:nth-child(4) { animation-delay: 0.4s; }
.star-animate:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Dot indicator animation */
.dot-indicator {
  transition: width 0.2s ease, background-color 0.2s ease;
}

/* Image hover zoom */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.1);
}

/* Quote icon animation */
.quote-icon-animate {
  animation: quoteIconIn 0.5s ease-out 0.4s forwards;
  opacity: 0;
  transform: scale(0) rotate(-45deg);
}

@keyframes quoteIconIn {
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* =============================================================================
   VISIBILITY UTILITIES
   ============================================================================= */

.visible { visibility: visible; }
.invisible { visibility: hidden; }
.collapse { visibility: collapse; }

/* =============================================================================
   HIDDEN BREAKPOINT UTILITIES
   ============================================================================= */

.hidden { display: none; }
.flex { display: flex; }

/* Small breakpoint (640px) */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
}

/* Medium breakpoint (768px) */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:inline-flex { display: inline-flex; }
}

/* Large breakpoint (1024px) - CRITICAL FOR DESKTOP NAV */
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:inline-flex { display: inline-flex; }
}

/* XL breakpoint (1280px) */
@media (min-width: 1280px) {
  .xl\:block { display: block; }
  .xl\:flex { display: flex; }
  .xl\:hidden { display: none; }
}

/* =============================================================================
   QUIZ FORM STYLES
   ============================================================================= */

.quiz-radio-options {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
}

@media (max-width: 640px) {
  .quiz-radio-options {
    grid-template-columns: 1fr !important;
  }
}

.quiz-radio-option {
  display: flex !important;
  align-items: center !important;
  padding: 1rem !important;
  border: 2px solid var(--border) !important;
  border-radius: 0.75rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  background: var(--card) !important;
}

.quiz-radio-option:hover {
  border-color: var(--gold) !important;
  background: #fffbeb !important;
}

.quiz-radio-option.selected,
.quiz-radio-option:has(input:checked) {
  border-color: var(--gold) !important;
  background: linear-gradient(135deg, #fffbeb, #fef3c7) !important;
}

.quiz-radio-option input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
  border: 2px solid var(--border) !important;
  border-radius: 50% !important;
  margin-right: 0.75rem !important;
  flex-shrink: 0 !important;
  position: relative !important;
  transition: all 0.2s ease !important;
  background: #ffffff !important;
}

.quiz-radio-option input[type="radio"]:checked {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
}

.quiz-radio-option input[type="radio"]:checked::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 0.5rem !important;
  height: 0.5rem !important;
  background: #ffffff !important;
  border-radius: 50% !important;
}

.quiz-radio-option label,
.quiz-radio-option span {
  cursor: pointer !important;
  font-weight: 500 !important;
  color: var(--foreground) !important;
}

/* Quiz Button Styles */
.quiz-btn-gold,
button.quiz-btn-gold,
.quiz-form button[type="submit"],
.quiz-form .btn-next,
.quiz-form .btn-submit,
#quiz-btn-next,
#quiz-btn-submit {
  background: linear-gradient(135deg, #f5c842 0%, #d4a012 50%, #b8860b 100%) !important;
  color: #1e3a5f !important;
  font-weight: 600 !important;
  padding: 0.875rem 2rem !important;
  border-radius: 0.5rem !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.3) !important;
}

.quiz-btn-gold:hover,
button.quiz-btn-gold:hover,
.quiz-form button[type="submit"]:hover,
.quiz-form .btn-next:hover,
.quiz-form .btn-submit:hover,
#quiz-btn-next:hover,
#quiz-btn-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4) !important;
  filter: brightness(1.05) !important;
}

.quiz-btn-gold:disabled,
button.quiz-btn-gold:disabled,
.quiz-form button[type="submit"]:disabled,
.quiz-form .btn-next:disabled,
.quiz-form .btn-submit:disabled,
#quiz-btn-next:disabled,
#quiz-btn-submit:disabled {
  background: #9fb3c8 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Progress bar gold */
.quiz-progress-bar,
.progress-fill,
.quiz-progress-fill {
  background: linear-gradient(90deg, #f5c842, #d4a012) !important;
}

/* Quiz step title header */
.quiz-step-title,
.quiz-form .step-title {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800)) !important;
  color: #ffffff !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0.75rem 0.75rem 0 0 !important;
  font-weight: 600 !important;
  text-align: center !important;
}

/* ========================================
   Prose / Typography Styles (for legal pages)
   ======================================== */
.prose {
  color: var(--foreground);
  max-width: 65ch;
  line-height: 1.75;
}

.prose h2 {
  color: var(--navy-800);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose h3 {
  color: var(--navy-700);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose ul li {
  margin-bottom: 0.5rem;
}

.prose strong {
  font-weight: 600;
  color: var(--navy-800);
}

.prose a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.prose a:hover {
  color: var(--gold);
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.8;
}

.prose-lg h2 {
  font-size: 1.75rem;
}

.prose-lg h3 {
  font-size: 1.375rem;
}

/* =============================================================================
   RANGE INPUT SLIDER STYLING
   ============================================================================= */

/* Base range input reset */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
}

/* WebKit (Chrome, Safari, Edge) track */
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 9999px;
}

/* WebKit thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #f5c842 0%, #d4a012 100%);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
  box-shadow: 0 2px 6px rgba(212, 160, 18, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(212, 160, 18, 0.5);
}

/* Firefox track */
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 9999px;
  border: none;
}

/* Firefox thumb */
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #f5c842 0%, #d4a012 100%);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(212, 160, 18, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(212, 160, 18, 0.5);
}

/* Focus state */
input[type="range"]:focus {
  outline: none;
}

input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.3), 0 2px 6px rgba(212, 160, 18, 0.4);
}

input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.3), 0 2px 6px rgba(212, 160, 18, 0.4);
}

/* Calculator Slider - visible amber track */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #f59e0b 0%, #f59e0b 50%, #e2e8f0 50%, #e2e8f0 100%);
  border-radius: 9999px;
  height: 8px;
}

.calc-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  background: transparent;
  border-radius: 9999px;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #f5c842 0%, #d4a012 100%);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(212, 160, 18, 0.5);
  margin-top: -7px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(212, 160, 18, 0.6);
}

.calc-slider::-moz-range-track {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 9999px;
}

.calc-slider::-moz-range-progress {
  background: #f59e0b;
  height: 8px;
  border-radius: 9999px;
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #f5c842 0%, #d4a012 100%);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(212, 160, 18, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(212, 160, 18, 0.6);
}

.calc-slider:focus {
  outline: none;
}

.calc-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.3), 0 2px 8px rgba(212, 160, 18, 0.5);
}

.calc-slider:focus::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.3), 0 2px 8px rgba(212, 160, 18, 0.5);
}

/* Checkbox styling for calculators */
input[type="checkbox"].rounded {
  -webkit-appearance: none;
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #cbd5e1;
  border-radius: 0.25rem;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

input[type="checkbox"].rounded:checked {
  background-color: #f59e0b;
  border-color: #f59e0b;
}

input[type="checkbox"].rounded:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="checkbox"].rounded:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.3);
}
