/* Global Design System - Gen Alpha / Vivid Dark Mode (Gradient Edition) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

:root {
  /* Deep Black Base */
  --bg: #000000;
  --surface: #0a0a0a;
  --surface-alt: #111111;
  
  --text: #ffffff;
  --text-muted: #a3a3a3;
  
  --border: #262626;
  
  /* Solid Bases (for fallbacks/borders) */
  --lime: #ccff00;
  --pink: #d946ef;
  --cyan: #22d3ee;
  
  /* Gradients - The New Vibe */
  --grad-primary: linear-gradient(135deg, #ccff00 0%, #10b981 100%); /* Lime -> Emerald */
  --grad-pop: linear-gradient(135deg, #d946ef 0%, #f59e0b 100%); /* Pink -> Amber */
  --grad-fresh: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%); /* Cyan -> Blue */
  --grad-dark: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
  --grad-glow: conic-gradient(from 180deg at 50% 50%, #ccff00 0deg, #22d3ee 120deg, #d946ef 240deg, #ccff00 360deg);

  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 120px;
  
  /* Layout */
  --max-width: 1400px;
  --header-height: 80px;
  --radius: 24px;
  
  /* Typography */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

h1, h2 {
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--text-muted);
  max-width: 65ch;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* Utility */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
  width: 100%;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--grad-primary);
  color: black;
  padding: var(--space-2);
  z-index: 100;
  font-weight: 900;
  text-transform: uppercase;
}
.skip-link:focus {
  top: 0;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  min-height: 88px;
  height: auto;
  display: flex;
  align-items: center;
}

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

.brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text);
  text-transform: lowercase;
}

.brand-logo {
  height: 88px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-links {
  display: flex;
  gap: var(--space-2);
  background: rgba(255,255,255,0.03);
  padding: 6px 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-links a.active {
  color: black;
  background: var(--text);
}

.menu-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 99px;
  font-weight: 700;
  cursor: pointer;
}

/* Typography Scale */
.h-hero {
  font-size: clamp(64px, 8vw, 120px);
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-bottom: var(--space-3);
}

.h-section {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
}

.h-card {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.eyebrow {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
  display: inline-block;
  color: black;
  background: var(--grad-primary); /* Gradient background for eyebrow */
  padding: 6px 16px;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(204, 255, 0, 0.2);
}

/* Sections */
.section {
  padding: var(--space-7) 0;
  position: relative;
}

.hero-section {
  padding-top: calc(var(--space-7) + 40px);
}

.hero-visual img {
  max-height: 550px;
}

/* Gradient Blobs */
.blob {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.15) 0%, transparent 70%);
  opacity: 1;
  filter: blur(80px);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.blob-1 { top: -200px; right: -200px; background: radial-gradient(circle, rgba(204, 255, 0, 0.15) 0%, transparent 70%); }
.blob-2 { bottom: 0; left: -200px; background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%); }

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  border-radius: 999px;
}

.btn-primary {
  background: var(--grad-primary);
  color: black;
  border: none;
  box-shadow: 0 0 25px rgba(204, 255, 0, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(204, 255, 0, 0.5);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-dark);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
}

.btn-secondary:hover::before {
  opacity: 1;
}

/* Cards */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-3);
}

.card {
  padding: var(--space-4);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.8) 100%);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: var(--lime);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(30,30,30,0.5);
}

.card:hover::after {
  opacity: 1; /* Gradient Border Reveal */
}

/* Stats - Gradient Text */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.stat {
  padding: var(--space-4);
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.stat-val {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: var(--space-1);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Pill List */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pill {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 999px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: -1;
}

.pill:hover {
  color: black;
  border-color: transparent;
}

.pill:hover::before {
  opacity: 1;
}

/* Process */
.process-grid {
  display: grid;
  gap: var(--space-3);
}

.process-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  align-items: flex-start;
  transition: all 0.2s;
}

.process-item:hover {
  background: linear-gradient(90deg, rgba(204, 255, 0, 0.05) 0%, transparent 100%);
  border-color: var(--lime);
}

.process-num {
  font-size: 16px;
  font-weight: 800;
  background: var(--surface-alt);
  color: var(--text);
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.process-item:hover .process-num {
  background: var(--lime);
  color: black;
  border: none;
}

/* Footer (Updated) */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  padding-top: var(--space-6);
  padding-bottom: 0; /* Let huge text hit bottom */
  overflow: hidden;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links-group {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.footer-links a:hover {
  color: white;
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: auto;
}

/* Big Footer Text & Animation */
.footer-big-text-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 60px;
  user-select: none;
}

.footer-big-text {
  font-family: var(--font-serif);
  font-size: 22vw; /* Huge */
  line-height: 0.8;
  color: white;
  margin: 0;
  font-weight: 400; /* Regular weight for serif elegance */
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
  text-align: center;
}


/* Confetti / Dots */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
  animation: popConfetti 1s ease-out forwards;
}

@keyframes popConfetti {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Forms */
.form-group {
  margin-bottom: var(--space-3);
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--text);
  font-size: 14px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(204, 255, 0, 0.1);
}

.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: var(--radius);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.form-select:focus {
  outline: none;
  border-color: var(--lime);
}

/* Responsive */
/* Tablet and below (900px) */
@media (max-width: 900px) {
  /* Header - Tablet */
  header {
    height: auto;
    min-height: 75px;
    padding: 10px 0;
  }
  
  .brand {
    font-size: 22px;
  }
  
  .brand-logo {
    height: 65px;
  }
  
  .nav {
    flex-wrap: nowrap;
  }
  
  .nav-right {
    gap: var(--space-2);
    flex-shrink: 0;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 75px;
    left: var(--space-2);
    right: var(--space-2);
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-3);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    gap: var(--space-1);
    align-items: stretch;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  }
  
  .nav-links a {
    padding: 12px 16px;
    text-align: center;
    border-radius: 8px;
  }
  
  .nav-links.open { display: flex; }
  
  .menu-toggle { 
    display: block;
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .nav-cta { 
    display: none; 
  }
  
  /* Layout */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .h-hero { font-size: 64px; }
  
  .hero-visual img {
    max-height: 400px;
  }
  
  .process-header {
    position: static !important;
    margin-bottom: 40px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .footer-links-group {
    width: 100%;
    justify-content: center;
  }
  
  .footer-copyright {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  
  /* CEO Testimony Mobile Styles */
  .ceo-testimony-grid {
    gap: 40px !important;
    text-align: center;
  }
  
  .ceo-testimony-grid blockquote {
    text-align: left;
    width: 100%;
    max-width: 100%;
    padding: 20px 30px 30px 20px !important;
    overflow: visible !important;
    box-sizing: border-box;
  }
  
  .ceo-testimony-grid blockquote > div:first-child {
    text-align: left !important;
    margin-left: -26px !important;
    margin-top: -20px !important;
    position: relative;
    left: 0;
  }
  
  .ceo-testimony-grid blockquote > div:last-child {
    text-align: right !important;
    margin-right: -16px !important;
    margin-top: 40px !important;
    margin-bottom: -20px !important;
    position: relative;
    right: 0;
  }
  
  .ceo-image-wrapper {
    width: 350px !important;
    height: 350px !important;
    max-width: 100% !important;
  }
  
  /* UA Carousel - Vertical Layout on Tablet (like mobile) */
  #ua-carousel-container {
    flex-direction: column !important;
    gap: 15px;
    overflow: visible !important;
  }
  
  #ua-carousel-container .insight-card {
    min-width: 100% !important;
    width: 100% !important;
    height: auto;
    min-height: 120px;
    padding: 20px;
  }
  
  #ua-carousel-container .insight-card h3 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }
  
  #ua-carousel-container .insight-card p {
    font-size: 14px !important;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-align: left;
  }
  
  #ua-carousel-container .insight-card {
    text-align: left !important;
    align-items: flex-start !important;
  }
  
  .carousel-arrow {
    display: none !important;
  }
  
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* CEO Testimony Hover Effect */
.quote-open,
.quote-close {
  transition: all 0.3s ease;
}

.ceo-testimony-grid:hover .quote-open,
.ceo-testimony-grid:hover .quote-close {
  background: linear-gradient(135deg, #ccff00 0%, #d946ef 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.3;
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
  /* Header - Mobile */
  header {
    min-height: 70px;
    padding: 8px 0;
  }
  
  .shell {
    padding: 0 var(--space-2);
  }
  
  .brand {
    font-size: 20px;
  }
  
  .brand-logo {
    height: 55px;
  }
  
  .nav {
    gap: 0;
  }
  
  .nav-right {
    gap: 8px;
  }
  
  .nav-links {
    top: 70px;
    left: var(--space-2);
    right: var(--space-2);
    padding: var(--space-2);
  }
  
  .nav-links a {
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .menu-toggle {
    padding: 6px 14px;
    font-size: 13px;
  }
  
  /* Layout */
  .stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .footer-big-text { font-size: 25vw; }
  
  #world-map {
    width: 100% !important;
    height: 350px !important;
    overflow: hidden;
  }
  
  #world-map svg {
    width: 100% !important;
    height: 100% !important;
  }
  
  /* CEO Image - Larger on Mobile */
  .ceo-image-wrapper {
    width: 300px !important;
    height: 300px !important;
    max-width: 90vw !important;
  }
}

/* Cookie Consent */
.cookie-consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.cookie-consent-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cookie-consent-modal {
  background: #ffffff;
  color: #000000;
  width: 90%;
  max-width: 400px; /* Reduced width for corner popup */
  border-radius: 12px;
  padding: 24px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  margin: 24px;
  pointer-events: auto;
}

.cookie-consent-close {
  position: absolute;
  right: 20px;
  top: unset;
  left: unset;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
  padding: 0;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.cookie-consent-close:hover {
  opacity: 1;
}

.cookie-consent-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  color: #000;
  font-family: var(--font-heading);
}

.cookie-consent-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 32px;
  line-height: 1.5;
  text-align: center;
}

.cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cookie-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cookie-btn {
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-accept {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  width: 100%;
}

.cookie-btn-deny {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.cookie-btn-deny:hover {
  border-color: #999;
}

.cookie-btn-prefs {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.cookie-btn-prefs:hover {
  border-color: #999;
}

.cookie-policy-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #666;
  text-decoration: underline;
  margin-top: 8px;
  cursor: pointer;
}

.cookie-policy-link:hover {
  color: #000;
}

/* UA Carousel */
#ua-carousel-container {
  display: flex !important;
  gap: 20px !important;
  position: relative;
  min-height: 200px;
  padding: 20px 0;
  overflow: visible;
  width: 100%;
}

/* Carousel Wrapper & Buttons */
#ua-carousel-wrapper {
  max-width: 100%;
  margin: 40px auto 0;
  position: relative;
  overflow: hidden;
}

.carousel-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.carousel-arrow:hover {
  background: var(--text);
  color: black;
  border-color: var(--text);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow.left {
  left: -20px;
}

.carousel-arrow.right {
  right: -20px;
}

@media (max-width: 1200px) {
  #ua-carousel-container .insight-card {
    min-width: 200px;
    flex: 0 0 auto;
  }
  #ua-carousel-container {
    overflow-x: auto;
    scroll-behavior: smooth;
  }
}

@media (max-width: 600px) {
  #ua-carousel-container {
    flex-direction: column !important;
    gap: 15px;
  }
  #ua-carousel-container .insight-card {
    min-width: 100% !important;
    width: 100% !important;
    height: auto;
    min-height: 120px;
    padding: 20px;
  }
  #ua-carousel-container .insight-card h3 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }
  #ua-carousel-container .insight-card p {
    font-size: 14px !important;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-align: left;
  }
  #ua-carousel-container .insight-card {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: -20px;
    transform: none;
  }
  .carousel-arrow:hover {
    transform: scale(1.1);
  }
  .carousel-arrow.left {
    left: 20%;
  }
  .carousel-arrow.right {
    right: 20%;
    left: auto;
  }
}


#ua-carousel-container .insight-card {
  flex: 1 0 auto;
  min-width: calc((100% - 60px) / 4);
  width: calc((100% - 60px) / 4);
  height: 180px;
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius, 8px);
  padding: 20px;
  box-sizing: border-box;
}
