:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(59, 130, 246, 0.08); /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08); /* Light yellow */
  --color-bg-3: rgba(34, 197, 94, 0.08); /* Light green */
  --color-bg-4: rgba(239, 68, 68, 0.08); /* Light red */
  --color-bg-5: rgba(147, 51, 234, 0.08); /* Light purple */
  --color-bg-6: rgba(249, 115, 22, 0.08); /* Light orange */
  --color-bg-7: rgba(236, 72, 153, 0.08); /* Light pink */
  --color-bg-8: rgba(6, 182, 212, 0.08); /* Light cyan */

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' 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");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' 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");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    /* RGB versions for opacity control (Dark Mode) */
    --color-gray-400-rgb: 119, 124, 124;
    --color-teal-300-rgb: 50, 184, 198;
    --color-gray-300-rgb: 167, 169, 169;
    --color-gray-200-rgb: 245, 245, 245;

    /* Background color tokens (Dark Mode) */
    --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
    --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
    --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
    --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
    --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
    --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
    --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
    --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */

    /* Semantic Color Tokens (Dark Mode) */
    --color-background: var(--color-charcoal-700);
    --color-surface: var(--color-charcoal-800);
    --color-text: var(--color-gray-200);
    --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
    --color-primary: var(--color-teal-300);
    --color-primary-hover: var(--color-teal-400);
    --color-primary-active: var(--color-teal-800);
    --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
    --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
    --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
    --color-border: rgba(var(--color-gray-400-rgb), 0.3);
    --color-error: var(--color-red-400);
    --color-success: var(--color-teal-300);
    --color-warning: var(--color-orange-400);
    --color-info: var(--color-gray-300);
    --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
    --color-btn-primary-text: var(--color-slate-900);
    --color-card-border: rgba(var(--color-gray-400-rgb), 0.2);
    --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' 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");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' 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");

    /* RGB versions for dark mode */
    --color-success-rgb: var(--color-teal-300-rgb);
    --color-error-rgb: var(--color-red-400-rgb);
    --color-warning-rgb: var(--color-orange-400-rgb);
    --color-info-rgb: var(--color-gray-300-rgb);
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  /* RGB versions for opacity control (dark mode) */
  --color-gray-400-rgb: 119, 124, 124;
  --color-teal-300-rgb: 50, 184, 198;
  --color-gray-300-rgb: 167, 169, 169;
  --color-gray-200-rgb: 245, 245, 245;

  /* Colorful background palette - Dark Mode */
  --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
  --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
  --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
  --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
  --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
  --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
  --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
  --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */

  /* Semantic Color Tokens (Dark Mode) */
  --color-background: var(--color-charcoal-700);
  --color-surface: var(--color-charcoal-800);
  --color-text: var(--color-gray-200);
  --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
  --color-primary: var(--color-teal-300);
  --color-primary-hover: var(--color-teal-400);
  --color-primary-active: var(--color-teal-800);
  --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
  --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
  --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
  --color-border: rgba(var(--color-gray-400-rgb), 0.3);
  --color-error: var(--color-red-400);
  --color-success: var(--color-teal-300);
  --color-warning: var(--color-orange-400);
  --color-info: var(--color-gray-300);
  --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
  --color-btn-primary-text: var(--color-slate-900);
  --color-card-border: rgba(var(--color-gray-400-rgb), 0.15);
  --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
  --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' 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");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' 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");

  /* RGB versions for dark mode */
  --color-success-rgb: var(--color-teal-300-rgb);
  --color-error-rgb: var(--color-red-400-rgb);
  --color-warning-rgb: var(--color-orange-400-rgb);
  --color-info-rgb: var(--color-gray-300-rgb);
}

[data-color-scheme="light"] {
  /* RGB versions for opacity control (light mode) */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: var(--color-teal-500-rgb);
  --color-error-rgb: var(--color-red-500-rgb);
  --color-warning-rgb: var(--color-orange-500-rgb);
  --color-info-rgb: var(--color-slate-500-rgb);
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary,
.btn--primary:visited {
  color: #fff !important;
  background: #1787e0 !important; /* or your primary blue */
}

.btn--primary:hover,
.btn--primary:active,
.btn--primary:focus {
  color: #fff !important;
  background: #086ec1 !important; /* or a slightly darker blue for hover */
  text-decoration: none;
}

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

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

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

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

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

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

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

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

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

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: var(--space-4);
}
.gap-8 {
  gap: var(--space-8);
}
.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}
.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}
.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

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

/* 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;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

/* END PERPLEXITY DESIGN SYSTEM */
:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(59, 130, 246, 0.08); /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08); /* Light yellow */
  --color-bg-3: rgba(34, 197, 94, 0.08); /* Light green */
  --color-bg-4: rgba(239, 68, 68, 0.08); /* Light red */
  --color-bg-5: rgba(147, 51, 234, 0.08); /* Light purple */
  --color-bg-6: rgba(249, 115, 22, 0.08); /* Light orange */
  --color-bg-7: rgba(236, 72, 153, 0.08); /* Light pink */
  --color-bg-8: rgba(6, 182, 212, 0.08); /* Light cyan */

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Custom CFO Matrix Colors */
  --primary-blue: #1E90FF;
  --primary-blue-dark: #1377d1;
  --primary-blue-darker: #0066CC;
  --light-blue: #e3f2fd;
  --gradient-blue: linear-gradient(135deg, #1E90FF 0%, #1377d1 50%, #0066CC 100%);
  --gradient-blue-light: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(19, 119, 209, 0.1) 50%, rgba(0, 102, 204, 0.1) 100%);
  
  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' 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");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' 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");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-md); }

p {
  margin: 0 0 var(--space-16) 0;
  line-height: 1.6;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--primary-blue-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-24);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

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

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

.btn--primary:active {
  background: var(--primary-blue-darker);
  transform: translateY(0);
}

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

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

.btn--lg {
  padding: var(--space-16) var(--space-32);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

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

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-12) var(--space-16);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--color-text);
  background-color: white;
  border: 1px solid #ddd;
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

.form-control:focus {
  border-color: var(--primary-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

/* Container */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-20);
  padding-left: var(--space-20);
  max-width: 1200px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-20) var(--space-20);
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  color: var(--color-text);
}

.logo-icon {
  font-size: 20px;
  color: var(--primary-blue);
}

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

.nav-link {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  transition: color var(--duration-fast) var(--ease-standard);
}

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

.nav-cta {
  padding: var(--space-8) var(--space-20);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  padding: var(--space-4);
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-text);
  margin: 2px 0;
  transition: all var(--duration-fast) var(--ease-standard);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-blue);
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: transparent;
}

.geometric-shape {
  position: absolute;
  background: var(--primary-blue-darker);
  opacity: 0.15;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 102, 204, 0.3);
}

.shape-1 {
  width: 180px;
  height: 180px;
  top: 15%;
  right: 8%;
  transform: rotate(45deg) translateZ(0);
  background: linear-gradient(135deg, var(--primary-blue-darker) 0%, rgba(0, 102, 204, 0.8) 100%);
}

.shape-2 {
  width: 120px;
  height: 120px;
  bottom: 25%;
  right: 15%;
  transform: rotate(-30deg) translateZ(0);
  background: linear-gradient(135deg, var(--primary-blue-darker) 0%, rgba(0, 102, 204, 0.7) 100%);
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 35%;
  right: 25%;
  transform: rotate(15deg) translateZ(0);
  background: linear-gradient(135deg, var(--primary-blue-darker) 0%, rgba(0, 102, 204, 0.6) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 80px);
}

.hero-content {
  text-align: center;
  margin-bottom: var(--space-64);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--space-24);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-48);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 400;
}

.hero-cta {
  font-size: var(--font-size-lg);
  padding: var(--space-20) var(--space-48);
  background: white;
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-48);
  text-align: center;
  margin-top: var(--space-80);
}

.stat-item {
  color: white;
}

.stat-value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-12);
  letter-spacing: -0.01em;
}

.stat-description {
  font-size: var(--font-size-lg);
  opacity: 0.95;
  line-height: 1.4;
  font-weight: 400;
  max-width: 220px;
  margin: 0 auto;
}

/* Section spacing */
section {
  padding: var(--space-80) 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-24);
  text-align: center;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-48);
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-64);
}



/* Mobile Menu Styles */
.nav-menu.mobile-active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: var(--space-20);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  gap: var(--space-16);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-container {
    padding-top: 100px;
    min-height: calc(100vh - 60px);
  }
  
  .nav-container {
    min-height: 60px;
    padding: var(--space-12) var(--space-16);
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-32);
    margin-top: var(--space-48);
  }
  
  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
  }
  
  .hero-subtitle {
    font-size: clamp(16px, 4vw, 20px);
  }
  
  .geometric-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding-right: var(--space-16);
    padding-left: var(--space-16);
  }
  
  .nav-container {
    padding: var(--space-8) var(--space-16);
  }
  
  .hero-container {
    padding-left: var(--space-16);
    padding-right: var(--space-16);
  }
  
  .hero-cta {
    padding: var(--space-16) var(--space-32);
    font-size: var(--font-size-base);
  }
  
  .stat-value {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .stat-description {
    font-size: var(--font-size-base);
  }
}

/* Startup Vision Section */
.startup-vision {
  background: white;
  padding: 100px 0;
}

.startup-vision-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: var(--space-64);
  align-items: center;
}

.startup-vision-left {
  padding-right: var(--space-32);
}

.startup-vision-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin-bottom: var(--space-32);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.startup-vision-text {
  font-size: var(--font-size-lg);
  color: #333333;
  line-height: 1.6;
  margin-bottom: var(--space-48);
  font-weight: 400;
}

.startup-vision-cta {
  background: var(--primary-blue);
  color: white;
  padding: var(--space-16) var(--space-32);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-base);
  transition: all 0.3s ease;
}

.startup-vision-cta:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.startup-vision-right {
  display: flex;
  justify-content: center;
}

/* Image Placeholder */
.image-placeholder-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.image-placeholder {
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-base);
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.image-placeholder:hover {
  border-color: #D0D0D0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.placeholder-content {
  text-align: center;
  color: #999999;
}

.placeholder-icon {
  font-size: 48px;
  margin-bottom: var(--space-12);
  opacity: 0.7;
}

.placeholder-text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: #666666;
}

/* Ready for image replacement */
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-base);
}

/* Hide placeholder content when image is present */
.image-placeholder.has-image .placeholder-content {
  display: none;
}

/* Responsive Design for Startup Vision */
@media (max-width: 1024px) {
  .startup-vision-content {
    grid-template-columns: 1fr;
    gap: var(--space-48);
    text-align: center;
  }
  
  .startup-vision-left {
    padding-right: 0;
    order: 1;
  }
  
  .startup-vision-right {
    order: 2;
  }
  
  .image-placeholder-container {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .startup-vision {
    padding: var(--space-64) 0;
  }
  
  .startup-vision-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .startup-vision-text {
    font-size: var(--font-size-base);
  }
  
  .image-placeholder-container {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .image-placeholder {
    height: 280px;
  }
  
  .placeholder-icon {
    font-size: 36px;
  }
  
  .placeholder-text {
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 480px) {
  .startup-vision {
    padding: var(--space-48) 0;
  }
  
  .startup-vision-content {
    gap: var(--space-32);
  }
  
  .startup-vision-cta {
    padding: var(--space-12) var(--space-24);
    font-size: var(--font-size-base);
  }
  
  .chart-box {
    padding: var(--space-8) var(--space-12);
    font-size: var(--font-size-xs);
  }
}

/* Expertise Section */
.expertise {
  background: #F8F9FA;
  padding: var(--space-80) 0;
}

.expertise-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
}

.expertise-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-64);
  gap: var(--space-32);
}

.expertise-content {
  flex: 1;
  max-width: 800px;
}

.expertise-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin-bottom: var(--space-24);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.expertise-title-highlight {
  color: var(--primary-blue);
}

.expertise-subtitle {
  font-size: var(--font-size-lg);
  color: #666666;
  line-height: 1.6;
  max-width: 700px;
}

.expertise-navigation {
  display: flex;
  gap: var(--space-12);
  align-items: center;
  flex-shrink: 0;
}

.nav-arrow {
  width: 48px;
  height: 48px;
  border: 2px solid var(--primary-blue);
  background: transparent;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
}

.nav-arrow:hover {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.05);
}

.nav-arrow:active {
  transform: scale(0.95);
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-24);
}

.service-card {
  background: white;
  border-radius: var(--radius-base);
  padding: var(--space-32);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--duration-normal) var(--ease-standard);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 144, 255, 0.1);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-20);
  color: var(--primary-blue);
  transition: all var(--duration-normal) var(--ease-standard);
}

.service-card:hover .service-icon {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.05);
}

.service-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin-bottom: var(--space-16);
  line-height: 1.3;
}

.service-description {
  font-size: var(--font-size-base);
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Expertise Section */
@media (max-width: 1024px) {
  .expertise-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-20);
  }
  
  .expertise-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-24);
  }
  
  .expertise-navigation {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .expertise {
    padding: var(--space-64) 0;
  }
  
  .expertise-container {
    padding: 0 var(--space-16);
  }
  
  .expertise-cards {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }
  
  .expertise-header {
    margin-bottom: var(--space-48);
  }
  
  .expertise-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .expertise-subtitle {
    font-size: var(--font-size-base);
  }
  
  .service-card {
    padding: var(--space-24);
  }
  
  .service-icon {
    width: 56px;
    height: 56px;
  }
  
  .nav-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .expertise {
    padding: var(--space-48) 0;
  }
  
  .expertise-header {
    margin-bottom: var(--space-32);
  }
  
  .expertise-navigation {
    gap: var(--space-8);
  }
  
  .service-card {
    padding: var(--space-20);
  }
  
  .service-icon {
    width: 48px;
    height: 48px;
  }
  
  .service-title {
    font-size: var(--font-size-lg);
  }
  
  .service-description {
    font-size: var(--font-size-sm);
  }
}

/* Why Founders Choose Me Section */
.why-founders {
  background: #FFFFFF;
  padding: 100px 0;
}

.why-founders-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.main-shield-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-32);
  color: #1E90FF;
}

.main-shield-icon svg {
  width: 80px;
  height: 80px;
}

.why-founders-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.why-founders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-32);
  max-width: 1200px;
  margin: 0 auto;
}

.founder-feature {
  text-align: center;
  padding: var(--space-24);
  transition: transform var(--duration-normal) var(--ease-standard);
}

.founder-feature:hover {
  transform: translateY(-4px);
}

.feature-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-20);
  color: #1E90FF;
  transition: all var(--duration-normal) var(--ease-standard);
}

.feature-icon svg {
  width: 60px;
  height: 60px;
}

.founder-feature:hover .feature-icon {
  color: var(--primary-blue-dark);
  transform: scale(1.05);
}

.feature-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #1E90FF;
  margin: 0 0 var(--space-16) 0;
  line-height: 1.3;
}

.feature-description {
  font-size: var(--font-size-base);
  color: #666666;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design for Why Founders Section */
@media (max-width: 1024px) {
  .why-founders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-24);
  }
  
  .founder-feature {
    padding: var(--space-20);
  }
}

@media (max-width: 768px) {
  .why-founders {
    padding: var(--space-64) 0;
  }
  
  .why-founders-grid {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }
  
  .main-shield-icon svg {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon svg {
    width: 48px;
    height: 48px;
  }
  
  .why-founders-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .feature-title {
    font-size: var(--font-size-lg);
  }
  
  .feature-description {
    font-size: var(--font-size-sm);
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .why-founders {
    padding: var(--space-48) 0;
  }
  
  .why-founders-header {
    margin-bottom: var(--space-48);
  }
  
  .main-shield-icon {
    margin-bottom: var(--space-24);
  }
  
  .main-shield-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon svg {
    width: 42px;
    height: 42px;
  }
  
  .founder-feature {
    padding: var(--space-16);
  }
  
  .why-founders-grid {
    gap: var(--space-20);
  }
}

/* My Impact in Numbers Section */
.impact-numbers {
  background: #FFFFFF;
  padding: 100px 0;
}

.impact-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: flex-start;
  margin-bottom: var(--space-80);
}

.impact-title-container {
  display: flex;
  justify-content: flex-start;
}

.impact-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.impact-title-highlight {
  color: #1E90FF;
}

.impact-description {
  display: flex;
  align-items: flex-start;
}

.impact-description p {
  font-size: var(--font-size-lg);
  color: #333333;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.impact-statistics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-32);
  margin-bottom: var(--space-80);
}

.stat-card {
  text-align: center;
  padding: var(--space-16);
}

.stat-number {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: var(--font-weight-bold);
  color: #1E90FF;
  margin-bottom: var(--space-12);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: var(--font-size-base);
  color: #666666;
  line-height: 1.4;
  font-weight: 400;
}

.impact-cta-section {
  background: var(--gradient-blue);
  border-radius: 16px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.impact-cta-content {
  color: white;
  max-width: 600px;
}

.impact-cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 var(--space-20) 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.impact-cta-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 var(--space-32) 0;
  font-weight: 400;
}

.btn--cta-white {
  background: white;
  color: #1E90FF;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  padding: var(--space-16) var(--space-32);
  transition: all 0.3s ease;
}

.btn--cta-white:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Impact Numbers Section */
@media (max-width: 1024px) {
  .impact-header {
    grid-template-columns: 1fr;
    gap: var(--space-32);
    text-align: center;
  }
  
  .impact-statistics {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-24);
  }
  
  .impact-statistics .stat-card:nth-child(4),
  .impact-statistics .stat-card:nth-child(5) {
    grid-column: span 1;
  }
  
  /* Center the last two items */
  .impact-statistics .stat-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    margin-right: auto;
  }
  
  .impact-statistics .stat-card:nth-child(5) {
    grid-column: 3 / 4;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .impact-numbers {
    padding: var(--space-64) 0;
  }
  
  .impact-header {
    margin-bottom: var(--space-48);
  }
  
  .impact-statistics {
    grid-template-columns: 1fr;
    gap: var(--space-24);
    margin-bottom: var(--space-48);
  }
  
  .impact-cta-section {
    padding: var(--space-32);
    text-align: center;
  }
  
  .impact-cta-content {
    max-width: 100%;
  }
  
  .stat-number {
    font-size: clamp(28px, 8vw, 48px);
  }
}

@media (max-width: 480px) {
  .impact-numbers {
    padding: var(--space-48) 0;
  }
  
  .impact-header {
    gap: var(--space-24);
    margin-bottom: var(--space-32);
  }
  
  .impact-statistics {
    margin-bottom: var(--space-32);
  }
  
  .impact-cta-section {
    padding: var(--space-24);
  }
  
  .impact-cta-title {
    font-size: clamp(20px, 6vw, 28px);
  }
  
  .impact-cta-subtitle {
    font-size: var(--font-size-base);
  }
  
  .btn--cta-white {
    padding: var(--space-12) var(--space-24);
    font-size: var(--font-size-base);
  }
}

/* Testimonials Section */
.testimonials {
  background: #FFFFFF;
  padding: var(--space-80) 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.testimonials-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-16) 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.testimonials-subtitle {
  font-size: var(--font-size-lg);
  color: #666666;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border: 1px solid #E5E5E5;
  border-radius: var(--radius-base);
  padding: var(--space-32);
  transition: all var(--duration-normal) var(--ease-standard);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #D0D0D0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-text {
  font-size: var(--font-size-base);
  color: #333333;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 var(--space-24) 0;
  flex: 1;
}

.testimonial-company {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: #1E90FF;
  margin: 0;
  align-self: flex-start;
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-24);
  }
  
  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: var(--space-64) 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-20);
  }
  
  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
  }
  
  .testimonial-card {
    padding: var(--space-24);
  }
  
  .testimonials-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .testimonials-subtitle {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: var(--space-48) 0;
  }
  
  .testimonials-header {
    margin-bottom: var(--space-48);
  }
  
  .testimonial-card {
    padding: var(--space-20);
  }
  
  .testimonial-text {
    font-size: var(--font-size-sm);
  }
  
  .testimonial-company {
    font-size: var(--font-size-sm);
  }
}

/* Are You Investor-Ready Section */
.investor-ready {
  background: #FFFFFF;
  padding: var(--space-80) 0;
}

.investor-ready-content {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--space-64);
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.investor-ready-left {
  padding-right: var(--space-32);
}

.investor-ready-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-24) 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.investor-ready-description {
  font-size: var(--font-size-lg);
  color: #333333;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.investor-ready-right {
  padding-left: var(--space-16);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.checklist-item {
  background: white;
  border: 2px solid #B3D9FF;
  border-radius: var(--radius-base);
  padding: var(--space-20) var(--space-24);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  position: relative;
}

.checklist-item:hover {
  border-color: var(--primary-blue);
  background: rgba(30, 144, 255, 0.02);
  transform: translateX(2px);
}

.checklist-item.checked {
  border-color: var(--primary-blue);
  background: rgba(30, 144, 255, 0.05);
}

.checklist-item.checked .checklist-arrow {
  color: var(--primary-blue-dark);
  transform: rotate(90deg);
}

.checklist-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.checklist-text {
  font-size: var(--font-size-base);
  color: #333333;
  line-height: 1.5;
  font-weight: 400;
  flex: 1;
}

.checklist-arrow {
  color: var(--primary-blue);
  transition: all var(--duration-normal) var(--ease-standard);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-arrow svg {
  width: 20px;
  height: 20px;
}

.real-checkbox {
  display: none;
}
.custom-checkbox {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid #38a1f7;
  border-radius: 5px;
  vertical-align: middle;
  margin-right: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border 0.2s, background 0.2s;
}
.real-checkbox:checked + .custom-checkbox {
  background: #38a1f7;
  border-color: #38a1f7;
}
.custom-checkbox:after {
  content: '';
  display: block;
  width: 8px; height: 14px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  opacity: 0;
  position: absolute;
  left: 6px; top: 2px;
  transform: rotate(45deg) scale(0.7);
  transition: opacity 0.2s;
}
.real-checkbox:checked + .custom-checkbox:after {
  opacity: 1;
}

/* Responsive Design for Investor-Ready */
@media (max-width: 1024px) {
  .investor-ready-content {
    grid-template-columns: 1fr;
    gap: var(--space-48);
    text-align: center;
  }
  
  .investor-ready-left {
    padding-right: 0;
    order: 1;
  }
  
  .investor-ready-right {
    padding-left: 0;
    order: 2;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .investor-ready {
    padding: var(--space-64) 0;
  }
  
  .investor-ready-content {
    gap: var(--space-32);
  }
  
  .investor-ready-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .investor-ready-description {
    font-size: var(--font-size-base);
  }
  
  .checklist {
    gap: var(--space-12);
  }
  
  .checklist-item {
    padding: var(--space-16) var(--space-20);
  }
  
  .checklist-text {
    font-size: var(--font-size-sm);
  }
  
  .checklist-arrow svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .investor-ready {
    padding: var(--space-48) 0;
  }
  
  .investor-ready-content {
    gap: var(--space-24);
  }
  
  .checklist-item {
    padding: var(--space-12) var(--space-16);
  }
  
  .checklist-content {
    gap: var(--space-12);
  }
  
  .checklist-text {
    font-size: var(--font-size-xs);
  }
  
  .checklist-arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* Newsletter Section */
.newsletter {
  background: #FFFFFF;
  padding: 100px 0;
}

.newsletter-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.newsletter-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-16) 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.newsletter-subtitle {
  font-size: var(--font-size-lg);
  color: #666666;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.newsletter-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-standard);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.blog-image-placeholder {
  background: #F5F5F5;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
  overflow: hidden;
}

.blog-image-placeholder .placeholder-content {
  text-align: center;
  color: #999999;
}

.blog-image-placeholder .placeholder-icon {
  font-size: 32px;
  margin-bottom: var(--space-8);
  opacity: 0.7;
}

.blog-image-placeholder .placeholder-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: #666666;
}

.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  font-size: var(--font-size-xs);
  color: #999999;
  text-transform: uppercase;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #333333;
  line-height: 1.4;
  margin: 0 0 16px 0;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  color: #1E90FF;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-standard);
  align-self: flex-start;
}

.blog-read-more:hover {
  color: var(--primary-blue-dark);
  transform: translateX(2px);
}

.blog-read-more svg {
  transition: transform var(--duration-fast) var(--ease-standard);
}

.blog-read-more:hover svg {
  transform: translateX(2px);
}

/* Responsive Design for Newsletter Section */
@media (max-width: 1024px) {
  .newsletter-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .newsletter-cards .blog-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .newsletter {
    padding: var(--space-64) 0;
  }
  
  .newsletter-cards {
    grid-template-columns: 1fr;
    gap: var(--space-20);
  }
  
  .newsletter-cards .blog-card:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
  }
  
  .newsletter-header {
    margin-bottom: var(--space-48);
  }
  
  .newsletter-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .newsletter-subtitle {
    font-size: var(--font-size-base);
  }
  
  .blog-content {
    padding: var(--space-20);
  }
  
  .blog-image-placeholder {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .newsletter {
    padding: var(--space-48) 0;
  }
  
  .newsletter-header {
    margin-bottom: var(--space-32);
  }
  
  .newsletter-cards {
    gap: var(--space-16);
  }
  
  .blog-content {
    padding: var(--space-16);
  }
  
  .blog-title {
    font-size: var(--font-size-base);
  }
  
  .blog-read-more {
    font-size: var(--font-size-sm);
  }
  
  .blog-image-placeholder {
    height: 140px;
  }
  
  .blog-image-placeholder .placeholder-icon {
    font-size: 24px;
  }
}

/* Final CTA Section */
.final-cta {
  position: relative;
  background: var(--gradient-blue);
  padding: 60px 0;
  margin: 60px var(--space-20);
  border-radius: 16px;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-shape-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0.6;
}

.cta-shape-2 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  right: 20%;
  transform: rotate(-30deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  opacity: 0.5;
}

.cta-shape-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 30%;
  transform: rotate(15deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  opacity: 0.4;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
  color: white;
}

.final-cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 var(--space-20) 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.final-cta-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 var(--space-32) 0;
  font-weight: 400;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  padding: var(--space-16) var(--space-32);
  font-size: var(--font-size-lg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.final-cta-button:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: var(--primary-blue-dark);
}

/* Email Signup Footer */
.email-footer {
  background: #E8F4FD;
  padding: 60px 0 40px;
}

.email-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: flex-start;
}

.email-footer-left {
  padding-right: var(--space-32);
}

.email-footer-text {
  font-size: var(--font-size-lg);
  color: #333333;
  line-height: 1.6;
  margin: 0 0 var(--space-32) 0;
  font-weight: var(--font-weight-medium);
}

.email-footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  font-size: var(--font-size-base);
  color: #333333;
  margin-bottom: var(--space-16);
  font-weight: 400;
}

.service-item svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.email-footer-right {
  padding-left: var(--space-32);
}

.email-form-heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-24) 0;
  line-height: 1.3;
}

.email-signup-form {
  display: flex;
  gap: var(--space-12);
  margin-bottom: var(--space-32);
}

.email-input-container {
  position: relative;
  flex: 1;
}

.email-icon {
  position: absolute;
  left: var(--space-12);
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
  z-index: 2;
}

.email-input {
  width: 100%;
  padding: var(--space-12) var(--space-12) var(--space-12) var(--space-48);
  border: 2px solid #B3D9FF;
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  background: white;
  transition: all 0.3s ease;
}

.email-input:focus {
  border-color: var(--primary-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.email-input::placeholder {
  color: #999999;
}

.email-submit-btn {
  padding: var(--space-12) var(--space-24);
  background: var(--primary-blue);
  color: white;
  border-radius: var(--radius-base);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  min-width: 120px;
}

.email-submit-btn:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-1px);
}

.social-media-icons {
  display: flex;
  gap: var(--space-16);
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-blue);
  color: white;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
  color: white;
}

/* Footer Bottom */
.footer-divider {
  height: 1px;
  background: rgba(30, 144, 255, 0.2);
  margin: var(--space-32) 0 var(--space-24);
}

.footer-bottom {
  background: #E8F4FD;
  padding-bottom: var(--space-32);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.footer-copyright {
  font-size: var(--font-size-sm);
  color: #666666;
  margin: 0;
}

.footer-social-centered {
  display: flex;
  gap: var(--space-12);
  align-items: center;
}

.social-icon-small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-blue);
  color: white;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-small:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-1px) scale(1.05);
  color: white;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .final-cta {
    margin: var(--space-32) var(--space-16);
    padding: var(--space-48) 0;
  }
  
  .email-footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-48);
    text-align: center;
  }
  
  .email-footer-left,
  .email-footer-right {
    padding: 0;
  }
  
  .cta-shape-1,
  .cta-shape-2,
  .cta-shape-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .final-cta {
    margin: var(--space-24) var(--space-16);
    padding: var(--space-32) 0;
    text-align: center;
  }
  
  .final-cta-content {
    max-width: 100%;
  }
  
  .final-cta-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .final-cta-subtitle {
    font-size: var(--font-size-base);
  }
  
  .email-footer {
    padding: var(--space-48) 0 var(--space-32);
  }
  
  .email-footer-content {
    gap: var(--space-32);
  }
  
  .email-signup-form {
    flex-direction: column;
    gap: var(--space-16);
  }
  
  .email-submit-btn {
    min-width: auto;
    width: 100%;
  }
  
  .social-media-icons {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .final-cta {
    margin: var(--space-16) var(--space-12);
    padding: var(--space-24) 0;
  }
  
  .final-cta-button {
    padding: var(--space-12) var(--space-24);
    font-size: var(--font-size-base);
  }
  
  .email-footer-text {
    font-size: var(--font-size-base);
  }
  
  .service-item {
    font-size: var(--font-size-sm);
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-icon-small {
    width: 32px;
    height: 32px;
  }
}

/* Page Content Management */
.page-content {
  display: block;
  width: 100%;
}

/* Enhanced Footer Section - About Page */
.enhanced-footer-section {
  background: var(--light-blue);
  padding: var(--space-64) 0;
}

.enhanced-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: flex-start;
}

.enhanced-footer-left {
  padding-right: var(--space-32);
}

.footer-links-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-24) 0;
}

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

.footer-links-list li {
  margin-bottom: var(--space-12);
}

.footer-link {
  font-size: var(--font-size-base);
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.enhanced-footer-right {
  padding-left: var(--space-32);
}

.footer-form-heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-24) 0;
}

.footer-email-form {
  margin-bottom: var(--space-32);
}

.footer-email-input-container {
  display: flex;
  gap: var(--space-12);
}

.footer-email-input {
  flex: 1;
  padding: var(--space-12) var(--space-16);
  border: 2px solid #B3D9FF;
  border-radius: var(--radius-base);
}

.footer-email-submit {
  padding: var(--space-12) var(--space-24);
  white-space: nowrap;
}

.footer-social-icons {
  display: flex;
  gap: var(--space-16);
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  color: white;
}

.enhanced-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-48);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(30, 144, 255, 0.2);
}

.footer-logo {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
}

.footer-social-bottom {
  display: flex;
  gap: var(--space-12);
}

.footer-social-small {
  width: 32px;
  height: 32px;
  background: var(--primary-blue);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-small:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-1px);
  color: white;
}

/* Why CFO Apex Exists Section */
.why-cfo-apex-exists {
  background: white;
  padding: var(--space-80) 0;
}

.title-highlight {
  color: var(--primary-blue);
}

.problem-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-32);
  margin-top: var(--space-48);
}

.problem-card {
  text-align: center;
  padding: var(--space-32);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.problem-icon {
  width: 80px;
  height: 80px;
  background: rgba(30, 144, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-24);
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.05);
}

.problem-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-16) 0;
}

.problem-description {
  font-size: var(--font-size-base);
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Finance That Earns Investor Trust Section */
.finance-earns-trust {
  position: relative;
  background: var(--light-blue);
  padding: var(--space-80) 0;
  overflow: hidden;
}

.finance-trust-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path d="M0,320L1200,180L1200,400L0,400Z" fill="%23ffffff" fill-opacity="0.1"/></svg>') no-repeat;
  background-size: cover;
  opacity: 0.5;
}

.finance-trust-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.small-heading {
  font-size: var(--font-size-sm);
  color: var(--primary-blue);
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 1px;
  margin-bottom: var(--space-12);
}

.finance-trust-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-24) 0;
  line-height: 1.2;
}

.finance-trust-description {
  font-size: var(--font-size-lg);
  color: #333333;
  line-height: 1.6;
  margin: 0 0 var(--space-32) 0;
}

.finance-trust-cta {
  padding: var(--space-16) var(--space-32);
  font-size: var(--font-size-lg);
}

/* CFO Apex Promise Section */
.cfo-apex-promise {
  background: white;
  padding: var(--space-80) 0;
}

.promise-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.promise-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-24) 0;
}

.promise-subtitle {
  font-size: var(--font-size-lg);
  color: #666666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.promise-statistics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-32);
  margin-bottom: var(--space-64);
  text-align: center;
}

.promise-stat {
  padding: var(--space-16);
}

.promise-stat .stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin-bottom: var(--space-8);
}

.promise-stat .stat-label {
  font-size: var(--font-size-base);
  color: #666666;
}

.mission-vision-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
}

.mission-card, .vision-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.vision-card {
  background: var(--gradient-blue);
  color: white;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image-placeholder {
  height: 200px;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-card .card-image-placeholder {
  background: rgba(255, 255, 255, 0.1);
}

.card-content {
  padding: var(--space-32);
}

.card-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-16) 0;
}

.vision-card .card-title {
  color: white;
}

.card-description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin: 0;
}

.vision-card .card-description {
  color: rgba(255, 255, 255, 0.95);
}

/* What We Stand For Section */
.what-we-stand-for {
  background: white;
  padding: var(--space-80) 0;
}

.stand-for-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  text-align: center;
  margin: 0 0 var(--space-64) 0;
}

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

.value-item {
  text-align: center;
  padding: var(--space-24);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: #F5F5F5;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-20);
  color: #999999;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.05);
}

.value-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0;
}

/* Ready to Build Finance CTA */
.ready-to-build-cta {
  position: relative;
  background: var(--gradient-blue);
  padding: var(--space-80) 0;
  overflow: hidden;
}

.build-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.build-shape-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 10%;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.1);
}

.build-shape-2 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  right: 25%;
  transform: rotate(-30deg);
  background: rgba(255, 255, 255, 0.08);
}

.build-shape-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 35%;
  transform: rotate(15deg);
  background: rgba(255, 255, 255, 0.06);
}

.build-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.build-cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 var(--space-20) 0;
  line-height: 1.2;
}

.build-cta-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 var(--space-32) 0;
}

.build-cta-button {
  background: white;
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-16) var(--space-32);
  font-size: var(--font-size-lg);
}

.build-cta-button:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue-dark);
  transform: translateY(-2px);
}

/* Meet Ankit Sarawagi Section */
.meet-ankit {
  background: white;
  padding: var(--space-80) 0;
}

.meet-ankit-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-64);
  align-items: flex-start;
}

.ankit-image {
  position: sticky;
  top: 120px;
}

.ankit-image-placeholder {
  width: 300px;
  height: 400px;
  background: #F5F5F5;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E0E0;
}

.ankit-info {
  padding-left: var(--space-32);
}

.ankit-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-32) 0;
}

.ankit-description {
  font-size: var(--font-size-lg);
  color: #333333;
  line-height: 1.6;
  margin-bottom: var(--space-24);
}

.ankit-description:last-child {
  margin-bottom: 0;
}

/* Back to Home Section */
.back-to-home {
  background: #F8F9FA;
  padding: var(--space-48) 0;
  text-align: center;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .enhanced-footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-48);
    text-align: center;
  }
  
  .enhanced-footer-left,
  .enhanced-footer-right {
    padding: 0;
  }
  
  .problem-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-24);
  }
  
  .promise-statistics {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-24);
  }
  
  .mission-vision-cards {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-24);
  }
  
  .meet-ankit-content {
    grid-template-columns: 1fr;
    gap: var(--space-48);
    text-align: center;
  }
  
  .ankit-image {
    position: static;
    justify-self: center;
  }
  
  .ankit-info {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .enhanced-footer-section {
    padding: var(--space-48) 0;
  }
  
  .footer-email-input-container {
    flex-direction: column;
    gap: var(--space-12);
  }
  
  .footer-email-submit {
    width: 100%;
  }
  
  .enhanced-footer-bottom {
    flex-direction: column;
    gap: var(--space-16);
    text-align: center;
  }
  
  .problem-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-20);
  }
  
  .problem-card {
    padding: var(--space-24);
  }
  
  .problem-icon {
    width: 60px;
    height: 60px;
  }
  
  .why-cfo-apex-exists,
  .cfo-apex-promise,
  .what-we-stand-for,
  .ready-to-build-cta,
  .meet-ankit {
    padding: var(--space-64) 0;
  }
  
  .finance-earns-trust {
    padding: var(--space-64) 0;
  }
  
  .promise-statistics {
    grid-template-columns: 1fr;
    gap: var(--space-20);
    margin-bottom: var(--space-48);
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-20);
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
  }
  
  .ankit-image-placeholder {
    width: 250px;
    height: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .enhanced-footer-section {
    padding: var(--space-32) 0;
  }
  
  .footer-social-icons {
    justify-content: center;
  }
  
  .footer-social-icon {
    width: 36px;
    height: 36px;
  }
  
  .problem-card {
    padding: var(--space-20);
  }
  
  .problem-icon {
    width: 50px;
    height: 50px;
  }
  
  .problem-title {
    font-size: var(--font-size-base);
  }
  
  .problem-description {
    font-size: var(--font-size-sm);
  }
  
  .why-cfo-apex-exists,
  .cfo-apex-promise,
  .what-we-stand-for,
  .ready-to-build-cta,
  .meet-ankit {
    padding: var(--space-48) 0;
  }
  
  .finance-earns-trust {
    padding: var(--space-48) 0;
  }
  
  .card-content {
    padding: var(--space-24);
  }
  
  .value-icon {
    width: 50px;
    height: 50px;
  }
  
  .build-cta-title {
    font-size: clamp(20px, 6vw, 32px);
  }
  
  .build-cta-subtitle {
    font-size: var(--font-size-base);
  }
  
  .ankit-image-placeholder {
    width: 200px;
    height: 260px;
  }
  
  .ankit-description {
    font-size: var(--font-size-base);
  }
  
  .back-to-home {
    padding: var(--space-32) 0;
  }
}

/* Resources Page Styles */

/* Resources Header Section */
.resources-header {
  background: white;
  padding: 120px 0 var(--space-64);
  border-bottom: 1px solid #E5E5E5;
}

.resources-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.resources-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-24) 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.resources-subtitle {
  font-size: var(--font-size-lg);
  color: #666666;
  line-height: 1.6;
  margin: 0 0 var(--space-48) 0;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.filter-tab {
  padding: var(--space-12) var(--space-24);
  background: white;
  border: 2px solid #E5E5E5;
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.filter-tab--active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
}

.filter-tab--active:hover {
  background: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  color: white;
}

/* Featured Articles Section */
.featured-articles {
  background: white;
  padding: var(--space-80) 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-32);
}

.article-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-blue);
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 144, 255, 0.15);
}

.article-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.article-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: #F8F9FA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-content {
  padding: var(--space-24);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  font-size: var(--font-size-sm);
  color: #999999;
}

.article-author {
  font-weight: var(--font-weight-medium);
  color: var(--primary-blue);
}

.article-date {
  color: #999999;
}

.article-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-12) 0;
  line-height: 1.3;
}

.article-description {
  font-size: var(--font-size-base);
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Clarity CTA Section */
.clarity-cta {
  position: relative;
  background: var(--gradient-blue);
  padding: var(--space-80) 0;
  overflow: hidden;
}

.clarity-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.clarity-shape-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 15%;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.1);
}

.clarity-shape-2 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  right: 8%;
  transform: rotate(-30deg);
  background: rgba(255, 255, 255, 0.08);
}

.clarity-shape-3 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 25%;
  transform: rotate(15deg);
  background: rgba(255, 255, 255, 0.06);
}

.clarity-cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}

.clarity-cta-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0;
  line-height: 1.2;
}

.clarity-cta-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 var(--space-24) 0;
}

.clarity-cta-button {
  background: white;
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-16) var(--space-32);
}

.clarity-cta-button:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue-dark);
  transform: translateY(-2px);
}

/* Insights Newsletter Section */
.insights-newsletter {
  position: relative;
  background: var(--gradient-blue);
  padding: var(--space-80) 0;
}

.insights-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.insights-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}

.insights-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0;
  line-height: 1.3;
}

.insights-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.insights-input-group {
  display: flex;
  gap: var(--space-12);
}

.insights-email {
  flex: 1;
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #333333;
}

.insights-email:focus {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.insights-submit {
  background: white;
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
}

.insights-submit:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue-dark);
}

/* More Articles Section */
.more-articles {
  background: white;
  padding: var(--space-80) 0;
}

.article-card-simple {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: var(--space-24);
  transition: all 0.3s ease;
  cursor: pointer;
  border-left: 4px solid transparent;
}

.article-card-simple:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(30, 144, 255, 0.15);
  border-left-color: var(--primary-blue);
}

.article-simple-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.article-simple-meta {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-placeholder {
  color: white;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.article-simple-author {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: #333333;
}

.article-simple-date {
  font-size: var(--font-size-sm);
  color: #999999;
}

.article-simple-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design for Resources Page */
@media (max-width: 1024px) {
  .clarity-cta-content,
  .insights-content {
    grid-template-columns: 1fr;
    gap: var(--space-48);
    text-align: center;
  }
  
  .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-24);
  }
}

@media (max-width: 768px) {
  .resources-header {
    padding: 100px 0 var(--space-48);
  }
  
  .featured-articles,
  .more-articles {
    padding: var(--space-64) 0;
  }
  
  .clarity-cta,
  .insights-newsletter {
    padding: var(--space-64) 0;
  }
  
  .filter-tabs {
    gap: var(--space-4);
  }
  
  .filter-tab {
    padding: var(--space-8) var(--space-16);
    font-size: var(--font-size-sm);
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
    gap: var(--space-20);
  }
  
  .article-content {
    padding: var(--space-20);
  }
  
  .insights-input-group {
    flex-direction: column;
  }
  
  .insights-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .resources-header {
    padding: 90px 0 var(--space-32);
  }
  
  .featured-articles,
  .more-articles {
    padding: var(--space-48) 0;
  }
  
  .clarity-cta,
  .insights-newsletter {
    padding: var(--space-48) 0;
  }
  
  .filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: var(--space-8);
  }
  
  .article-card {
    border-left-width: 3px;
  }
  
  .article-content {
    padding: var(--space-16);
  }
  
  .article-title {
    font-size: var(--font-size-lg);
  }
  
  .article-description {
    font-size: var(--font-size-sm);
  }
  
  .article-card-simple {
    padding: var(--space-16);
  }
  
  .article-simple-title {
    font-size: var(--font-size-base);
  }
}

/* Blog Page Styles */
.blog-page {
  background: var(--color-background);
}

/* Blog Hero Section */
.blog-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--gradient-blue);
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.8) 0%, rgba(19, 119, 209, 0.9) 100%);
  z-index: 2;
}

.blog-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.blog-placeholder-content {
  text-align: center;
  color: #999999;
}

.blog-placeholder-icon {
  font-size: 64px;
  margin-bottom: var(--space-16);
  opacity: 0.7;
}

.blog-placeholder-text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: #666666;
}

.blog-hero-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 800px;
  padding: var(--space-80) 0;
}

.blog-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 var(--space-24) 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  margin-bottom: var(--space-32);
  font-size: var(--font-size-lg);
}

.blog-author {
  font-weight: var(--font-weight-semibold);
  color: rgba(255, 255, 255, 0.95);
}

.blog-date {
  color: rgba(255, 255, 255, 0.8);
}

.blog-hero-accent {
  width: 80px;
  height: 4px;
  background: white;
  border-radius: var(--radius-full);
}

/* Blog Content Section */
.blog-content-section {
  background: white;
  padding: var(--space-80) 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: var(--space-64);
  align-items: flex-start;
}

.blog-main {
  padding-right: var(--space-32);
}

.blog-article {
  max-width: none;
}

.blog-text p {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: #333333;
  margin-bottom: var(--space-24);
  font-weight: 400;
}

.blog-text p:first-child {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
}

/* Newsletter Signup in Blog */
.blog-newsletter {
  background: var(--primary-blue);
  border-radius: var(--radius-lg);
  padding: var(--space-48);
  margin: var(--space-64) 0;
  text-align: center;
}

.blog-newsletter h3 {
  color: white;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-24) 0;
  line-height: 1.3;
}

.newsletter-input-group {
  display: flex;
  gap: var(--space-12);
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-email {
  flex: 1;
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #333333;
}

.newsletter-submit {
  background: white;
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue-dark);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 120px;
  padding-left: var(--space-32);
}

.blog-read-time {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  background: var(--color-bg-1);
  padding: var(--space-16) var(--space-20);
  border-radius: var(--radius-base);
  margin-bottom: var(--space-24);
  font-weight: var(--font-weight-medium);
  color: #333333;
}

.read-time-icon {
  font-size: var(--font-size-lg);
}

.case-studies-btn {
  width: 100%;
  margin-bottom: var(--space-32);
  font-weight: var(--font-weight-semibold);
}

.other-blogs {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  border: 1px solid var(--color-card-border);
}

.other-blogs h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-20) 0;
  color: #333333;
}

.blog-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-links li {
  margin-bottom: var(--space-16);
}

.blog-link {
  color: #666666;
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: 1.4;
  transition: color 0.3s ease;
  cursor: pointer;
}

.blog-link:hover {
  color: var(--primary-blue);
}

.blog-link--blue {
  color: var(--primary-blue);
  font-weight: var(--font-weight-medium);
}

/* Blog CTA Section */
.blog-cta {
  background: var(--primary-blue);
  padding: var(--space-80) 0;
  text-align: center;
}

.blog-cta-content {
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.blog-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 var(--space-20) 0;
  line-height: 1.2;
}

.blog-cta p {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 var(--space-32) 0;
}

.blog-cta-btn {
  background: white;
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-16) var(--space-32);
}

.blog-cta-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue-dark);
  transform: translateY(-2px);
}

/* Blog Email Footer */
.blog-email-footer {
  background: #E8F4FD;
  padding: var(--space-64) 0;
}

.blog-email-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: flex-start;
}

.blog-email-left p {
  font-size: var(--font-size-lg);
  color: #333333;
  line-height: 1.6;
  margin: 0 0 var(--space-24) 0;
  font-weight: var(--font-weight-medium);
}

.blog-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-service-list li {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  font-size: var(--font-size-base);
  color: #333333;
  margin-bottom: var(--space-16);
  font-weight: 400;
}

.checkmark {
  color: var(--primary-blue);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.blog-email-right h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-20) 0;
}

.blog-email-form {
  display: flex;
  gap: var(--space-12);
}

.blog-email-input {
  flex: 1;
  border: 2px solid #B3D9FF;
}

.blog-email-submit {
  background: var(--primary-blue);
  color: white;
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  min-width: 120px;
}

/* Blog Back Navigation */
.blog-back-nav {
  background: #F8F9FA;
  padding: var(--space-48) 0;
  text-align: center;
}

.blog-back-btn {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}

/* Responsive Design for Blog Pages */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: var(--space-48);
  }
  
  .blog-main {
    padding-right: 0;
    order: 1;
  }
  
  .blog-sidebar {
    padding-left: 0;
    position: static;
    order: 2;
  }
  
  .blog-email-content {
    grid-template-columns: 1fr;
    gap: var(--space-48);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: 50vh;
  }
  
  .blog-hero-content {
    padding: var(--space-64) 0;
  }
  
  .blog-content-section {
    padding: var(--space-64) 0;
  }
  
  .blog-newsletter {
    padding: var(--space-32);
    margin: var(--space-48) 0;
  }
  
  .newsletter-input-group {
    flex-direction: column;
  }
  
  .newsletter-submit {
    width: 100%;
  }
  
  .blog-cta {
    padding: var(--space-64) 0;
  }
  
  .blog-email-form {
    flex-direction: column;
  }
  
  .blog-email-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    min-height: 40vh;
  }
  
  .blog-hero-content {
    padding: var(--space-48) 0;
  }
  
  .blog-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-8);
  }
  
  .blog-text p {
    font-size: var(--font-size-base);
  }
  
  .blog-text p:first-child {
    font-size: var(--font-size-lg);
  }
  
  .blog-newsletter {
    padding: var(--space-24);
  }
  
  .blog-newsletter h3 {
    font-size: var(--font-size-xl);
  }
  
  .other-blogs {
    padding: var(--space-20);
  }
}

/* Services Page Styles */

/* Who We Work With Section */
.who-we-work-with {
  background: white;
  padding: var(--space-80) 0;
  padding-top: 120px;
}

.who-we-work-with-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.who-we-work-with-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-32);
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  text-align: center;
  padding: var(--space-24);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: rgba(30, 144, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-20);
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.05);
}

.industry-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
  margin: 0 0 var(--space-12) 0;
  line-height: 1.3;
}

.industry-description {
  font-size: var(--font-size-sm);
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* Financial Leadership Section */
.financial-leadership {
  position: relative;
  background: var(--gradient-blue);
  padding: var(--space-80) 0;
  overflow: hidden;
}

.financial-leadership-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.financial-leadership-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.financial-leadership-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 var(--space-24) 0;
  line-height: 1.2;
}

.financial-leadership-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Our Offerings Section */
.our-offerings {
  background: white;
  padding: var(--space-80) 0;
}

.our-offerings-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.our-offerings-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0;
  line-height: 1.2;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-32);
  max-width: 1200px;
  margin: 0 auto;
}

.offering-card {
  background: white;
  border: 2px solid #B3D9FF;
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  transition: all 0.3s ease;
  cursor: pointer;
}

.offering-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 8px 30px rgba(30, 144, 255, 0.15);
}

.offering-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-16) 0;
  line-height: 1.3;
}

.offering-description {
  font-size: var(--font-size-base);
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Ready to Finance Section */
.ready-to-finance {
  position: relative;
  background: var(--gradient-blue);
  padding: var(--space-80) 0;
  overflow: hidden;
  border-radius: 16px;
  margin: var(--space-80) var(--space-20);
}

.ready-to-finance-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.finance-shape-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

.finance-shape-2 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  right: 25%;
  transform: rotate(-30deg);
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.5;
}

.finance-shape-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 35%;
  transform: rotate(15deg);
  background: rgba(255, 255, 255, 0.06);
  opacity: 0.4;
}

.ready-to-finance-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.ready-to-finance-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 var(--space-20) 0;
  line-height: 1.2;
}

.ready-to-finance-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Our Approach Section */
.our-approach {
  background: white;
  padding: var(--space-80) 0;
}

.our-approach-content {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--space-64);
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.our-approach-left {
  padding-right: var(--space-32);
}

.our-approach-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0 0 var(--space-24) 0;
  line-height: 1.2;
}

.our-approach-description {
  font-size: var(--font-size-lg);
  color: #333333;
  line-height: 1.6;
  margin: 0 0 var(--space-32) 0;
  font-weight: 400;
}

.approach-buttons {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.approach-btn-primary,
.approach-btn-outline {
  padding: var(--space-12) var(--space-24);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
}

.our-approach-right {
  padding-left: var(--space-16);
}

.approach-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.approach-item {
  background: white;
  border: 2px solid #B3D9FF;
  border-radius: var(--radius-base);
  padding: var(--space-20);
  display: flex;
  align-items: center;
  gap: var(--space-16);
  transition: all 0.3s ease;
  cursor: pointer;
}

.approach-item:hover {
  border-color: var(--primary-blue);
  background: rgba(30, 144, 255, 0.02);
  transform: translateX(4px);
}

.approach-icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 144, 255, 0.1);
  border-radius: var(--radius-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.approach-item:hover .approach-icon {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.05);
}

.approach-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #333333;
  margin: 0;
  flex: 1;
}

.approach-arrow {
  color: var(--primary-blue);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.approach-item:hover .approach-arrow {
  color: var(--primary-blue-dark);
  transform: translateX(2px);
}

/* Services CTA Section */
.services-cta {
  position: relative;
  background: var(--gradient-blue);
  padding: var(--space-80) 0;
  overflow: hidden;
}

.services-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.services-shape-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 10%;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.1);
}

.services-shape-2 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  right: 25%;
  transform: rotate(-30deg);
  background: rgba(255, 255, 255, 0.08);
}

.services-shape-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 35%;
  transform: rotate(15deg);
  background: rgba(255, 255, 255, 0.06);
}

.services-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.services-cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 var(--space-20) 0;
  line-height: 1.2;
}

.services-cta-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 var(--space-32) 0;
  font-weight: 400;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--primary-blue);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  padding: var(--space-16) var(--space-32);
  font-size: var(--font-size-lg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-cta-button:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: var(--primary-blue-dark);
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-24);
  }
  
  .offerings-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-24);
  }
  
  .our-approach-content {
    grid-template-columns: 1fr;
    gap: var(--space-48);
    text-align: center;
  }
  
  .our-approach-left {
    padding-right: 0;
    order: 1;
  }
  
  .our-approach-right {
    padding-left: 0;
    order: 2;
  }
  
  .ready-to-finance {
    margin: var(--space-48) var(--space-16);
  }
}

@media (max-width: 768px) {
  .who-we-work-with {
    padding: var(--space-64) 0;
    padding-top: 100px;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-20);
  }
  
  .industry-icon {
    width: 60px;
    height: 60px;
  }
  
  .financial-leadership,
  .our-offerings,
  .our-approach,
  .services-cta {
    padding: var(--space-64) 0;
  }
  
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: var(--space-20);
  }
  
  .offering-card {
    padding: var(--space-24);
  }
  
  .approach-buttons {
    flex-direction: column;
  }
  
  .approach-btn-primary,
  .approach-btn-outline {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .who-we-work-with {
    padding: var(--space-48) 0;
    padding-top: 90px;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }
  
  .industry-card {
    padding: var(--space-16);
  }
  
  .industry-icon {
    width: 50px;
    height: 50px;
  }
  
  .industry-title {
    font-size: var(--font-size-base);
  }
  
  .industry-description {
    font-size: var(--font-size-xs);
  }
  
  .financial-leadership,
  .our-offerings,
  .our-approach,
  .services-cta {
    padding: var(--space-48) 0;
  }
  
  .offering-card {
    padding: var(--space-20);
  }
  
  .approach-item {
    padding: var(--space-16);
    flex-direction: column;
    text-align: center;
  }
  
  .approach-icon {
    width: 40px;
    height: 40px;
  }
  
  .ready-to-finance {
    margin: var(--space-32) var(--space-12);
    padding: var(--space-48) 0;
  }
  
  .services-cta-button {
    padding: var(--space-12) var(--space-24);
    font-size: var(--font-size-base);
  }
}

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

