/* ============================================
   SIMTHEORY WEBSITE - MAIN STYLESHEET
   Clean, modern, enterprise-credible design
   ============================================ */

/* CSS Variables */
:root {
  /* Colors */
  --primary-blue: #2563eb;
  --primary-blue-hover: #1d4ed8;
  --dark-bg: #0f172a;
  --dark-bg-lighter: #1e293b;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --border-color: #e2e8f0;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

.website-page {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.website-page a {
  color: inherit;
  text-decoration: none;
}

.website-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.website-page button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.website-page ul,
.website-page ol {
  list-style: none;
}

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

.website-page h1,
.website-page h2,
.website-page h3,
.website-page h4,
.website-page h5,
.website-page h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

.website-page h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

.website-page h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.website-page h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  letter-spacing: -0.01em;
}

.website-page h4 {
  font-size: 1.25rem;
}

.website-page p {
  color: var(--text-secondary);
}

/* Accent font for headlines */
.website-page .accent-serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* Gradient text effect - Navy to Blue */
.website-page .gradient-highlight {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  padding: 0.15em 0.1em 0.25em 0.1em;
  margin: -0.15em -0.1em -0.25em -0.1em;
  overflow: visible;
}

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

.website-page .container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.website-page .container-narrow {
  max-width: var(--container-narrow);
}

.website-page section {
  padding: var(--section-padding) 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--dark-bg);
  color: white;
}

.btn-dark:hover {
  background: var(--dark-bg-lighter);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

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

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--gray-50);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* Primary button - Navy gradient */
.website-page .btn-gradient {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  color: white;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.25);
}

.website-page .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.website-page .btn-soft {
  background: white;
  color: #1e293b;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.website-page .btn-soft:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.website-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.website-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.website-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.website-header .logo img {
  height: 21px;
  width: auto;
}

.website-header .logo img.logo-light {
  display: block;
}

.website-header .logo img.logo-dark {
  display: none;
}

.website-header .nav-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.website-header .nav-item {
  position: relative;
}

.website-header .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.website-header .nav-link:hover {
  color: var(--text-primary);
  background: var(--gray-50);
}

.website-header .nav-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.website-header .nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.website-header .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.website-header .nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.website-header .dropdown-item {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.website-header .dropdown-item:hover {
  background: var(--gray-50);
}

.website-header .dropdown-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.website-header .dropdown-item-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.website-header .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.website-header .login-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.website-header .login-link:hover {
  color: var(--text-primary);
}

/* Mobile menu toggle */
.website-header .mobile-menu-toggle {
  display: none;
  padding: 8px;
  color: var(--text-primary);
}

.website-header .mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   HERO SECTION - NEW DESIGN
   ============================================ */

.website-page .hero-new {
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern */
.website-page .hero-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Floating orbs for visual interest - Blue tones */
.website-page .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.website-page .hero-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  top: -100px;
  right: -100px;
}

.website-page .hero-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  bottom: 0;
  left: -50px;
}

.website-page .hero-new .container {
  position: relative;
  z-index: 1;
}

.website-page .hero-new-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Eyebrow / tag */
.website-page .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.website-page .hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
}

/* Main headline */
.website-page .hero-new h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 24px;
}

.website-page .hero-new h1 br {
  display: block;
}

.website-page .hero-subtitle-new {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #64748b;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.website-page .hero-ctas-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

/* ============================================
   FLOATING UI SHOWCASE
   ============================================ */

.website-page .hero-showcase {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 500px;
}

/* Main browser window */
.website-page .showcase-main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  background: white;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.08),
    0 25px 50px -12px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  z-index: 10;
}

.website-page .showcase-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.website-page .showcase-dots {
  display: flex;
  gap: 6px;
}

.website-page .showcase-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.website-page .showcase-dot.red {
  background: #ef4444;
}

.website-page .showcase-dot.yellow {
  background: #f59e0b;
}

.website-page .showcase-dot.green {
  background: #22c55e;
}

.website-page .showcase-url {
  flex: 1;
  margin-left: 12px;
  padding: 8px 16px;
  background: white;
  border-radius: 8px;
  font-size: 13px;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}

.website-page .showcase-content {
  padding: 24px;
  background: #0f172a;
  min-height: 320px;
}

/* Chat interface mockup */
.website-page .showcase-chat {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.website-page .showcase-message {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.website-page .showcase-message.user {
  background: #1e293b;
  color: #e2e8f0;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.website-page .showcase-message.ai {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.website-page .showcase-message .label {
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 6px;
  font-weight: 500;
}

.website-page .showcase-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #1e293b;
  border-radius: 12px;
  margin-top: 8px;
}

.website-page .showcase-input span {
  color: #64748b;
  font-size: 14px;
}

/* Floating cards */
.website-page .floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.08),
    0 10px 40px -10px rgba(15, 23, 42, 0.2);
  padding: 16px;
  z-index: 5;
}

.website-page .floating-card-models {
  left: -30px;
  top: 60px;
  transform: rotate(-3deg);
  width: 180px;
}

.website-page .floating-card-models .card-title {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.website-page .model-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.website-page .model-pill {
  padding: 6px 10px;
  background: #f1f5f9;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #475569;
}

.website-page .model-pill.active {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
}

.website-page .floating-card-task {
  right: -40px;
  top: 80px;
  transform: rotate(2deg);
  width: 220px;
}

.website-page .task-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.website-page .task-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #059669, #10b981);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.website-page .task-title {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.website-page .task-status {
  font-size: 11px;
  color: #10b981;
}

.website-page .task-progress {
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.website-page .task-progress-bar {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #059669, #10b981);
  border-radius: 2px;
}

.website-page .floating-card-connect {
  left: 20px;
  bottom: 40px;
  transform: rotate(-2deg);
  width: 200px;
}

.website-page .connect-title {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.website-page .connect-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.website-page .connect-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #475569;
}

.website-page .connect-item-icon {
  font-size: 16px;
}

.website-page .connect-item-status {
  margin-left: auto;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
}

.website-page .floating-card-assistant {
  right: 10px;
  bottom: 60px;
  transform: rotate(3deg);
  width: 190px;
}

.website-page .assistant-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.website-page .assistant-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.website-page .assistant-desc {
  font-size: 12px;
  color: #64748b;
}

/* ============================================
   SOCIAL PROOF STATS
   ============================================ */

.website-page .social-proof {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.website-page .proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.website-page .proof-item {
  padding: 16px;
}

.website-page .proof-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary-blue), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.website-page .proof-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   TRUST BAR
   ============================================ */

.website-page .trust-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--white);
}

.website-page .trust-bar-inner {
  text-align: center;
}

.website-page .trust-bar-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.website-page .trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.website-page .trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0f172a;
  font-size: 18px;
  opacity: 1;
  filter: none;
  transition: all var(--transition-base);
}

.website-page .trust-logo.coming-soon {
  font-weight: 500;
  color: #94a3b8;
  font-size: 16px;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.website-page .section-header-new {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.website-page .section-tag-new {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2563eb;
  margin-bottom: 16px;
}

.website-page .section-header-new h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 16px;
}

.website-page .section-header-new p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

/* ============================================
   FOUR PILLARS - NEW DESIGN
   ============================================ */

.website-page .pillars-new {
  padding: 120px 0;
  background: white;
}

.website-page .pillars-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.website-page .pillar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.website-page .pillar-card:hover {
  background: white;
  border-color: #cbd5e1;
  box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.website-page .pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 20px;
}

.website-page .pillar-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.website-page .pillar-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ============================================
   SHADOW AI SECTION - NEW DESIGN
   ============================================ */

.website-page .shadow-section-new {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.website-page .shadow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.website-page .shadow-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 24px;
}

.website-page .shadow-content h2 .accent-serif {
  color: #1e40af;
}

.website-page .shadow-content>p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 16px;
}

.website-page .shadow-content>p.emphasis {
  color: #1e293b;
  font-weight: 500;
}

.website-page .shadow-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.website-page .shadow-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #475569;
  transition: all 0.2s ease;
}

.website-page .shadow-feature-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.website-page .shadow-feature-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #059669, #10b981);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

/* Comparison visual */
.website-page .shadow-visual-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.website-page .comparison-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}

.website-page .comparison-card.bad {
  background: #fef2f2;
  border-color: #fecaca;
}

.website-page .comparison-card.good {
  background: #eff6ff;
  border-color: #bfdbfe;
  box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.15);
}

.website-page .comparison-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.website-page .comparison-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.website-page .comparison-card.bad .comparison-icon {
  background: #fee2e2;
}

.website-page .comparison-card.good .comparison-icon {
  background: #dbeafe;
}

.website-page .comparison-title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.website-page .comparison-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.website-page .comparison-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #475569;
}

.website-page .comparison-item-icon {
  font-size: 14px;
}

.website-page .comparison-card.bad .comparison-item-icon {
  color: #ef4444;
}

.website-page .comparison-card.good .comparison-item-icon {
  color: #2563eb;
}

/* ============================================
   DATA UNLOCK SECTION - NEW DESIGN
   ============================================ */

.website-page .data-section-new {
  padding: 120px 0;
  background: white;
}

.website-page .data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.website-page .data-visual-new {
  position: relative;
  padding: 40px;
}

/* Animated connection lines */
.website-page .data-hub {
  position: relative;
  width: 100%;
  height: 350px;
}

.website-page .data-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 20px 40px -10px rgba(30, 64, 175, 0.4);
  z-index: 10;
}

.website-page .data-center-icon {
  font-size: 32px;
  margin-bottom: 4px;
}

.website-page .data-center-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}

.website-page .data-node {
  position: absolute;
  width: 70px;
  height: 70px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.website-page .data-node:hover {
  transform: scale(1.1);
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.website-page .data-node-label {
  font-size: 9px;
  font-weight: 600;
  color: #64748b;
  margin-top: 2px;
}

.website-page .data-node-1 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.website-page .data-node-2 {
  top: 80px;
  right: 20px;
}

.website-page .data-node-3 {
  bottom: 80px;
  right: 20px;
}

.website-page .data-node-4 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.website-page .data-node-5 {
  bottom: 80px;
  left: 20px;
}

.website-page .data-node-6 {
  top: 80px;
  left: 20px;
}

.website-page .data-node-1:hover,
.website-page .data-node-4:hover {
  transform: translateX(-50%) scale(1.1);
}

.website-page .data-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 24px;
}

.website-page .data-content>p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 16px;
}

.website-page .data-content>p.emphasis {
  color: #1e293b;
  font-weight: 500;
  font-size: 18px;
}

/* ============================================
   MODELS SECTION - NEW DESIGN
   ============================================ */

.website-page .models-section-new {
  padding: 120px 0;
  background: #f8fafc;
}

.website-page .models-grid-new {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.website-page .model-card-new {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.website-page .model-card-new:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.website-page .model-logo-new {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.website-page .model-name {
  font-size: 12px;
  color: #94a3b8;
}

/* ============================================
   INTEGRATIONS SECTION - NEW DESIGN
   ============================================ */

.website-page .integrations-section-new {
  padding: 120px 0;
  background: white;
}

.website-page .integrations-grid-new {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.website-page .integration-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s ease;
}

.website-page .integration-pill:hover {
  background: white;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.website-page .integration-icon {
  font-size: 18px;
}

/* ============================================
   QUOTE SECTION - NEW DESIGN
   ============================================ */

.website-page .quote-section-new {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.website-page .quote-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.website-page .quote-inner-new {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.website-page .quote-mark-new {
  font-size: 80px;
  line-height: 1;
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.website-page .quote-text-new {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.6;
  color: white;
  margin-bottom: 32px;
}

.website-page .quote-author-new {
  font-size: 16px;
  color: #93c5fd;
}

.website-page .quote-author-new strong {
  color: white;
  font-weight: 500;
}

/* ============================================
   SECURITY SECTION - NEW DESIGN
   ============================================ */

.website-page .security-section-new {
  padding: 120px 0;
  background: #f8fafc;
}

.website-page .security-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.website-page .security-card-new {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.website-page .security-card-new:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.1);
}

.website-page .security-badge {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.website-page .security-card-new h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.website-page .security-card-new p {
  font-size: 13px;
  color: #64748b;
}

/* ============================================
   BOTTOM CTA - NEW DESIGN
   ============================================ */

.website-page .cta-section-new {
  padding: 120px 0;
  background: white;
  text-align: center;
}

.website-page .cta-inner-new {
  max-width: 700px;
  margin: 0 auto;
}

.website-page .cta-inner-new h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 24px;
}

.website-page .cta-inner-new p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 40px;
}

.website-page .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

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

.website-footer {
  background: var(--gray-50);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.website-footer .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.website-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.website-footer .footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 280px;
}

.website-footer .footer-brand .logo img {
  height: 24px;
  width: auto;
}

.website-footer .footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.website-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.website-footer .footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.website-footer .footer-link:hover {
  color: var(--text-primary);
}

.website-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.website-footer .footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.website-footer .footer-legal {
  display: flex;
  gap: 24px;
}

.website-footer .footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.website-footer .footer-legal a:hover {
  color: var(--text-primary);
}

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

@media (max-width: 1024px) {
  .website-page .hero-showcase {
    height: auto;
    padding: 40px 0;
  }

  .website-page .showcase-main {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .website-page .floating-card {
    display: none;
  }

  .website-page .pillars-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .website-page .shadow-grid,
  .website-page .data-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .website-page .models-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }

  .website-page .security-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .website-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .website-header .nav-main {
    display: none;
  }

  .website-header .mobile-menu-toggle {
    display: block;
  }

  .website-page .hero-ctas-new {
    flex-direction: column;
  }

  .website-page .hero-ctas-new a {
    width: 100%;
    text-align: center;
  }

  .website-page .pillars-grid-new {
    grid-template-columns: 1fr;
  }

  .website-page .shadow-features-grid {
    grid-template-columns: 1fr;
  }

  .website-page .models-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .website-page .cta-buttons {
    flex-direction: column;
  }

  .website-page .cta-buttons a {
    width: 100%;
  }

  .website-page .trust-logos {
    gap: 32px;
  }

  .website-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .website-footer .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .website-page .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .website-page .proof-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .website-page .security-grid-new {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DARK MODE (Browser Preference)
   ============================================ */

@media (prefers-color-scheme: dark) {
  :root {
    --primary-blue: #3b82f6;
    --primary-blue-hover: #60a5fa;
    --dark-bg: #0a0f1a;
    --dark-bg-lighter: #111827;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-light: #475569;
    --white: #0f172a;
    --gray-50: #1e293b;
    --gray-100: #1e293b;
    --gray-200: #334155;
    --gray-300: #475569;
    --border-color: #334155;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5), 0 8px 10px -6px rgb(0 0 0 / 0.4);
  }

  .website-page {
    background: #0a0f1a;
  }

  .website-header {
    background: rgba(15, 23, 42, 0.85);
    border-bottom-color: var(--border-color);
  }

  .website-header .logo img.logo-light {
    display: none;
  }

  .website-header .logo img.logo-dark {
    display: block;
  }

  .website-page .hero-new {
    background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%);
  }

  .website-page .hero-new::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  }

  .website-page .hero-orb-1 {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
  }

  .website-page .hero-orb-2 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(96, 165, 250, 0.15) 100%);
  }

  .website-page .hero-eyebrow {
    background: #1e293b;
    border-color: #334155;
    color: #94a3b8;
  }

  .website-page .hero-new h1 {
    color: #f1f5f9;
  }

  .website-page .hero-subtitle-new {
    color: #94a3b8;
  }

  .website-page .gradient-highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #bfdbfe 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .website-page .btn-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  }

  .website-page .btn-soft {
    background: #1e293b;
    color: #f1f5f9;
    border-color: #334155;
  }

  .website-page .btn-soft:hover {
    background: #334155;
    border-color: #475569;
  }

  .website-page .showcase-main {
    background: #1e293b;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.1),
      0 25px 50px -12px rgba(0, 0, 0, 0.5);
  }

  .website-page .showcase-browser-bar {
    background: #0f172a;
    border-bottom-color: #334155;
  }

  .website-page .showcase-url {
    background: #1e293b;
    border-color: #334155;
    color: #64748b;
  }

  .website-page .showcase-content {
    background: #0a0f1a;
  }

  .website-page .showcase-message.user {
    background: #334155;
    color: #e2e8f0;
  }

  .website-page .showcase-input {
    background: #334155;
  }

  .website-page .floating-card {
    background: #1e293b;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.1),
      0 10px 40px -10px rgba(0, 0, 0, 0.5);
  }

  .website-page .floating-card-models .card-title {
    color: #64748b;
  }

  .website-page .model-pill {
    background: #334155;
    color: #94a3b8;
  }

  .website-page .task-title {
    color: #f1f5f9;
  }

  .website-page .connect-item {
    background: #0f172a;
    color: #94a3b8;
  }

  .website-page .assistant-name {
    color: #f1f5f9;
  }

  .website-page .assistant-desc {
    color: #64748b;
  }

  .website-page .trust-bar {
    background: #0f172a;
    border-color: var(--border-color);
  }

  .website-page .trust-logo {
    color: #f1f5f9;
  }

  .website-page .trust-logo.coming-soon {
    color: #64748b;
  }

  .website-page .social-proof {
    background: #0a0f1a;
    border-bottom-color: var(--border-color);
  }

  .website-page .section-header-new h2 {
    color: #f1f5f9;
  }

  .website-page .section-header-new p {
    color: #94a3b8;
  }

  .website-page .pillars-new {
    background: #0a0f1a;
  }

  .website-page .pillar-card {
    background: #1e293b;
    border-color: #334155;
  }

  .website-page .pillar-card:hover {
    background: #0f172a;
    border-color: #475569;
  }

  .website-page .pillar-card h3 {
    color: #f1f5f9;
  }

  .website-page .pillar-card p {
    color: #94a3b8;
  }

  .website-page .shadow-section-new {
    background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%);
  }

  .website-page .shadow-content h2 {
    color: #f1f5f9;
  }

  .website-page .shadow-content h2 .accent-serif {
    color: #60a5fa;
  }

  .website-page .shadow-content>p {
    color: #94a3b8;
  }

  .website-page .shadow-content>p.emphasis {
    color: #e2e8f0;
  }

  .website-page .shadow-feature-item {
    background: #1e293b;
    border-color: #334155;
    color: #94a3b8;
  }

  .website-page .shadow-feature-item:hover {
    border-color: #475569;
  }

  .website-page .comparison-card {
    background: #1e293b;
    border-color: #334155;
  }

  .website-page .comparison-card.bad {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
  }

  .website-page .comparison-card.good {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
  }

  .website-page .comparison-title {
    color: #f1f5f9;
  }

  .website-page .comparison-item {
    color: #94a3b8;
  }

  .website-page .data-section-new {
    background: #0a0f1a;
  }

  .website-page .data-node {
    background: #1e293b;
    border-color: #334155;
  }

  .website-page .data-node:hover {
    border-color: #3b82f6;
  }

  .website-page .data-node-label {
    color: #94a3b8;
  }

  .website-page .data-content h2 {
    color: #f1f5f9;
  }

  .website-page .data-content>p {
    color: #94a3b8;
  }

  .website-page .data-content>p.emphasis {
    color: #e2e8f0;
  }

  .website-page .models-section-new {
    background: #0f172a;
  }

  .website-page .model-card-new {
    background: #1e293b;
    border-color: #334155;
  }

  .website-page .model-card-new:hover {
    border-color: #475569;
  }

  .website-page .model-logo-new {
    color: #f1f5f9;
  }

  .website-page .model-name {
    color: #64748b;
  }

  .website-page .integrations-section-new {
    background: #0a0f1a;
  }

  .website-page .integration-pill {
    background: #1e293b;
    border-color: #334155;
    color: #94a3b8;
  }

  .website-page .integration-pill:hover {
    background: #0f172a;
    border-color: #475569;
  }

  .website-page .quote-section-new {
    background: linear-gradient(135deg, #070b14 0%, #0f172a 100%);
  }

  .website-page .security-section-new {
    background: #0f172a;
  }

  .website-page .security-card-new {
    background: #1e293b;
    border-color: #334155;
  }

  .website-page .security-card-new:hover {
    border-color: #475569;
  }

  .website-page .security-badge {
    background: linear-gradient(135deg, #0f172a, #1e293b);
  }

  .website-page .security-card-new h3 {
    color: #f1f5f9;
  }

  .website-page .security-card-new p {
    color: #94a3b8;
  }

  .website-page .cta-section-new {
    background: #0a0f1a;
  }

  .website-page .cta-inner-new h2 {
    color: #f1f5f9;
  }

  .website-page .cta-inner-new p {
    color: #94a3b8;
  }

  .website-footer {
    background: #0f172a;
    border-top-color: var(--border-color);
  }

  .website-footer .footer-bottom {
    border-top-color: var(--border-color);
  }

  .website-footer .logo img {
    filter: invert(1) brightness(2);
  }

  .website-page .gradient-text,
  .website-page .proof-number {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .website-header .nav-link:hover {
    background: #1e293b;
  }

  .website-header .dropdown {
    background: #1e293b;
    border-color: var(--border-color);
  }

  .website-header .dropdown-item:hover {
    background: #0f172a;
  }
}

/* ============================================
   NEW FOOTER STYLES (Dark theme footer)
   ============================================ */

.footer {
  background: #1e293b;
  padding: 80px 0 40px;
  color: #94a3b8;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top section with brand and social */
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid #334155;
}

.footer .footer-brand {
  max-width: 320px;
}

.footer .footer-brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}

/* Footer is always dark, so always show white logo */
.footer .footer-brand .logo-light {
  display: none;
}

.footer .footer-brand .logo-dark {
  display: block;
}

.footer .footer-brand p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Social links */
.footer .footer-social {
  display: flex;
  gap: 12px;
}

.footer .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.2s ease;
}

.footer .social-link:hover {
  background: #475569;
  color: #f1f5f9;
}

/* Footer navigation grid */
.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  margin-bottom: 64px;
}

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

.footer .footer-column h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f1f5f9;
  margin-bottom: 20px;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .footer-link {
  font-size: 13px;
  color: #94a3b8;
  transition: color 0.15s ease;
}

.footer .footer-link:hover {
  color: #f1f5f9;
}

.footer .footer-link-more {
  margin-top: 8px;
  font-weight: 500;
}

/* Footer bottom */
.footer .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid #334155;
}

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

.footer .footer-partner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer .partner-logo {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.footer .footer-partner p {
  font-size: 13px;
  color: #94a3b8;
}

.footer .footer-partner a {
  color: #60a5fa;
  text-decoration: none;
}

.footer .footer-partner a:hover {
  text-decoration: underline;
}

.footer .footer-copyright {
  font-size: 13px;
  color: #64748b;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer .footer-bottom {
    text-align: center;
  }
  
  .footer .footer-partner {
    flex-direction: column;
    text-align: center;
  }
}
