
  :root {
    /* Colors - Professional Financial Palette as Accents */
    --primary: #1e40af;        /* Deep Blue - Trust & Stability */
    --primary-dark: #1e3a8a;   /* Darker Blue */
    --primary-light: #3b82f6;  /* Lighter Blue */
    --secondary: #059669;      /* Professional Green - Growth & Success */
    --secondary-dark: #047857; /* Darker Green */
    --accent: #dc2626;         /* Alert Red - Important metrics/warnings */
    --accent-dark: #b91c1c;    /* Darker Red */
    
    /* Financial UI Colors */
    --gold: #f59e0b;          /* Gold - Premium/Achievement */
    --gold-dark: #d97706;     /* Darker Gold */
    --navy: #1f2937;          /* Deep Navy - Professional depth */
    --navy-light: #374151;    /* Lighter Navy */
    
    /* White Theme Foundation */
    --white: #ffffff;
    --gray-50: #f8fafc;       /* Subtle background */
    --gray-100: #f1f5f9;      /* Light sections */
    --gray-200: #e2e8f0;      /* Borders */
    --gray-300: #cbd5e1;      /* Subtle elements */
    --gray-400: #94a3b8;      /* Muted text */
    --gray-500: #64748b;      /* Secondary text */
    --gray-600: #475569;      /* Body text */
    --gray-700: #334155;      /* Headings */
    --gray-800: #1e293b;      /* Dark headings */
    --gray-900: #0f172a;      /* Darkest text */
    
    /* Sophisticated Gradients - Subtle for white theme */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-accent: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(5, 150, 105, 0.03) 100%);
    --gradient-section: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows - Clean and Professional */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-accent: 0 4px 20px rgb(30 64 175 / 0.15);
    --shadow-success: 0 4px 20px rgb(5 150 105 / 0.15);
    --shadow-gold: 0 4px 20px rgb(245 158 11 / 0.15);
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  
  /* ========== SOPHISTICATED GLASSMORPHISM BACKGROUND ========== */
  .animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, 
      rgba(30, 64, 175, 0.03), 
      rgba(248, 250, 252, 0.8), 
      rgba(5, 150, 105, 0.03), 
      rgba(255, 255, 255, 0.9),
      rgba(245, 158, 11, 0.02)
    );
    background-size: 400% 400%;
    animation: subtleGradientShift 20s ease infinite;
  }
  
  .animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e40af' fill-opacity='0.015'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 25s ease-in-out infinite;
  }
  
  @keyframes subtleGradientShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 25%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 75%; }
  }
  
  @keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
  }
  
  /* ========== SOPHISTICATED GLASSMORPHISM UTILITIES ========== */
  .glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  }
  
  .glass-dark {
    background: rgba(248, 250, 252, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(30, 64, 175, 0.08);
    box-shadow: 0 8px 32px 0 rgba(30, 64, 175, 0.1);
  }
  
  .glass-navy {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(30, 64, 175, 0.1);
    box-shadow: 
      0 8px 32px 0 rgba(30, 64, 175, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  
  .glass-success {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(5, 150, 105, 0.12);
    box-shadow: 
      0 8px 32px 0 rgba(5, 150, 105, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  
  .glass-gold {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(245, 158, 11, 0.12);
    box-shadow: 
      0 8px 32px 0 rgba(245, 158, 11, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  
  /* Enhanced Morphism Effects */
  .morph-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
      0 8px 32px 0 rgba(30, 64, 175, 0.08),
      inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .morph-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transition: left 0.5s;
  }
  
  .morph-card:hover::before {
    left: 100%;
  }
  
  .morph-floating {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
      0 8px 32px 0 rgba(30, 64, 175, 0.05),
      inset 0 2px 4px rgba(255, 255, 255, 0.1);
    animation: morphFloat 8s ease-in-out infinite;
  }
  
  @keyframes morphFloat {
    0%, 100% { 
      transform: translateY(0px) rotate(0deg);
      background: rgba(255, 255, 255, 0.15);
    }
    25% { 
      transform: translateY(-20px) rotate(90deg);
      background: rgba(30, 64, 175, 0.08);
    }
    50% { 
      transform: translateY(-10px) rotate(180deg);
      background: rgba(5, 150, 105, 0.08);
    }
    75% { 
      transform: translateY(-25px) rotate(270deg);
      background: rgba(245, 158, 11, 0.08);
    }
  }
  
  /* ========== CONTAINER & LAYOUT ========== */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
  }
  
  .section {
    padding: var(--space-3xl) 0;
    position: relative;
  }
  
  /* ========== NAVIGATION WITH GLASSMORPHISM ========== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
      0 8px 32px 0 rgba(30, 64, 175, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(30, 64, 175, 0.12);
    box-shadow: 
      0 8px 32px 0 rgba(30, 64, 175, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    transition: var(--transition-fast);
  }
  
  .logo:hover {
    transform: scale(1.05);
    color: var(--primary);
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: var(--shadow-accent);
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
  }
  
  .nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  /* Mobile Navigation */
  #hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: var(--space-sm);
  }
  
  /* ========== BUTTONS ========== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.5rem 1.25rem;  /* Reduced vertical & horizontal padding */
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 0.95rem; /* Slightly smaller text */
    position: relative;
    overflow: hidden;
  }  
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-normal);
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-accent);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  .btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-success);
  }
  
  .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .schedule-btn {
    color: white !important;
  }  
  
  .btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-sm);
  }
  
  .btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }  
  
  /* ========== HERO SECTION ========== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 6rem;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    z-index: 2;
  }
  
  .hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--gray-900);
  }
  
  .hero-text .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-text p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
  }
  
  .hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  
  .hero-note {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-500);
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-md);
    background: rgba(30, 64, 175, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(30, 64, 175, 0.1);
  }
  
  .hero-visual {
    position: relative;
  }
  
  .hero-mockup {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
  }
  
  .mockup-header {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  
  .mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  
  .mockup-dot:nth-child(1) { background: var(--accent); }
  .mockup-dot:nth-child(2) { background: var(--gold); }
  .mockup-dot:nth-child(3) { background: var(--secondary); }
  
  .mockup-content {
    height: 100%;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
  }
  
  .code-line {
    height: 20px;
    background: rgba(30, 64, 175, 0.1);
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-sm);
    animation: pulse 3s ease-in-out infinite;
  }
  
  .code-line:nth-child(1) { width: 80%; animation-delay: 0s; }
  .code-line:nth-child(2) { width: 65%; animation-delay: 0.7s; }
  .code-line:nth-child(3) { width: 90%; animation-delay: 1.4s; }
  .code-line:nth-child(4) { width: 45%; animation-delay: 2.1s; }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
  }
  
  /* ========== FLOATING ELEMENTS WITH SOPHISTICATED MORPHISM ========== */
  .floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
      0 8px 32px 0 rgba(30, 64, 175, 0.05),
      inset 0 2px 4px rgba(255, 255, 255, 0.1);
    animation: morphFloat 12s ease-in-out infinite;
  }
  
  .floating-element:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 8%;
    animation-delay: -2s;
    background: linear-gradient(45deg, 
      rgba(5, 150, 105, 0.08) 0%, 
      rgba(255, 255, 255, 0.15) 50%,
      rgba(5, 150, 105, 0.05) 100%
    );
    border: 1px solid rgba(5, 150, 105, 0.15);
  }
  
  .floating-element:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 25%;
    animation-delay: -6s;
    background: linear-gradient(45deg, 
      rgba(245, 158, 11, 0.08) 0%, 
      rgba(255, 255, 255, 0.15) 50%,
      rgba(245, 158, 11, 0.05) 100%
    );
    border: 1px solid rgba(245, 158, 11, 0.15);
  }
  
  .floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 85%;
    right: 5%;
    animation-delay: -10s;
    background: linear-gradient(45deg, 
      rgba(30, 64, 175, 0.08) 0%, 
      rgba(255, 255, 255, 0.15) 50%,
      rgba(30, 64, 175, 0.05) 100%
    );
    border: 1px solid rgba(30, 64, 175, 0.15);
  }
  
  /* Additional floating morphism elements */
  .floating-element:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 35%;
    left: 8%;
    animation-delay: -4s;
    background: linear-gradient(45deg, 
      rgba(220, 38, 38, 0.06) 0%, 
      rgba(255, 255, 255, 0.12) 50%,
      rgba(220, 38, 38, 0.04) 100%
    );
    border: 1px solid rgba(220, 38, 38, 0.12);
  }
  
  .floating-element:nth-child(5) {
    width: 100px;
    height: 100px;
    top: 75%;
    left: 15%;
    animation-delay: -8s;
    background: linear-gradient(45deg, 
      rgba(5, 150, 105, 0.06) 0%, 
      rgba(255, 255, 255, 0.12) 50%,
      rgba(245, 158, 11, 0.06) 100%
    );
    border: 1px solid rgba(5, 150, 105, 0.12);
  }
  
  /* ========== SECTION STYLING ========== */
  .section-alt {
    background: var(--gradient-section);
  }
  
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--gray-900);
  }
  
  .section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }
  
  .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* ========== CARDS WITH ENHANCED GLASSMORPHISM ========== */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
  }
  
  .card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
      0 8px 32px 0 rgba(30, 64, 175, 0.08),
      inset 0 2px 4px rgba(255, 255, 255, 0.1);
  }
  
  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
  
  .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transition: left 0.6s;
  }
  
  .card:hover {
    transform: translateY(-12px);
    box-shadow: 
      0 20px 40px 0 rgba(30, 64, 175, 0.12),
      inset 0 2px 4px rgba(255, 255, 255, 0.15);
    border-color: rgba(30, 64, 175, 0.2);
    background: rgba(255, 255, 255, 0.4);
  }
  
  .card:hover::after {
    left: 100%;
  }
  
  /* Specialized card variants with color-specific glassmorphism */
  .card:nth-child(3n+1) {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(30, 64, 175, 0.15);
    box-shadow: 
      0 8px 32px 0 rgba(30, 64, 175, 0.08),
      inset 0 2px 4px rgba(255, 255, 255, 0.1);
  }
  
  .card:nth-child(3n+1):hover {
    background: rgba(30, 64, 175, 0.03);
    box-shadow: 
      0 20px 40px 0 rgba(30, 64, 175, 0.15),
      inset 0 2px 4px rgba(255, 255, 255, 0.2);
  }
  
  .card:nth-child(3n+2) {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(5, 150, 105, 0.15);
    box-shadow: 
      0 8px 32px 0 rgba(5, 150, 105, 0.08),
      inset 0 2px 4px rgba(255, 255, 255, 0.1);
  }
  
  .card:nth-child(3n+2)::before {
    background: var(--gradient-secondary);
  }
  
  .card:nth-child(3n+2):hover {
    background: rgba(5, 150, 105, 0.03);
    box-shadow: 
      0 20px 40px 0 rgba(5, 150, 105, 0.15),
      inset 0 2px 4px rgba(255, 255, 255, 0.2);
  }
  
  .card:nth-child(3n+3) {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(245, 158, 11, 0.15);
    box-shadow: 
      0 8px 32px 0 rgba(245, 158, 11, 0.08),
      inset 0 2px 4px rgba(255, 255, 255, 0.1);
  }
  
  .card:nth-child(3n+3)::before {
    background: var(--gradient-gold);
  }
  
  .card:nth-child(3n+3):hover {
    background: rgba(245, 158, 11, 0.03);
    box-shadow: 
      0 20px 40px 0 rgba(245, 158, 11, 0.15),
      inset 0 2px 4px rgba(255, 255, 255, 0.2);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-accent);
  }
  
  .card-icon.success {
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-success);
  }
  
  .card-icon.warning {
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
  }
  
  .card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-md);
    line-height: 1.4;
  }
  
  .card p {
    color: var(--gray-600);
    line-height: 1.7;
  }
  
  /* ========== TABS WITH SOPHISTICATED GLASSMORPHISM ========== */
  .tabs-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .tabs-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
  }
  
  .tab-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 64, 175, 0.12);
    color: var(--gray-600);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    box-shadow: 
      0 4px 16px 0 rgba(30, 64, 175, 0.05),
      inset 0 1px 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent, 
      rgba(255, 255, 255, 0.2), 
      transparent
    );
    transition: left 0.5s;
  }
  
  .tab-btn:hover::before {
    left: 100%;
  }
  
  .tab-btn.active,
  .tab-btn:hover {
    background: rgba(30, 64, 175, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--primary);
    border-color: rgba(30, 64, 175, 0.2);
    transform: translateY(-2px);
    box-shadow: 
      0 8px 24px 0 rgba(30, 64, 175, 0.12),
      inset 0 2px 4px rgba(255, 255, 255, 0.15);
  }
  
  .tab-content {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
      0 12px 40px 0 rgba(30, 64, 175, 0.08),
      inset 0 2px 8px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .tab-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
      from 45deg,
      transparent 0deg,
      rgba(30, 64, 175, 0.02) 90deg,
      transparent 180deg,
      rgba(5, 150, 105, 0.02) 270deg,
      transparent 360deg
    );
    animation: tabRotate 30s linear infinite;
    z-index: -1;
  }
  
  @keyframes tabRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .tab-visual {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    display: inline-flex; /* Switch from flex to inline-flex for shrink-to-fit width */
    align-items: center;
    justify-content: center;
    height: auto;         /* Let content define height */
    min-height: 300px;    /* Optional: keep minimum height */
    width: auto;          /* Let content define width */
    max-width: 100%;      /* Prevent overflow on smaller screens */
  }  
  
  .tab-text h4 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: var(--space-md);
  }
  
  .tab-text ul {
    list-style: none;
    color: var(--gray-600);
  }
  
  .tab-text li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    line-height: 1.6;
  }
  
  .tab-text li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  /* ========== TESTIMONIALS ========== */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
  }
  
  .testimonial {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
  }
  
  .testimonial:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }
  
  .testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    font-size: 3rem;
    color: var(--primary-light);
    font-family: serif;
    opacity: 0.3;
  }
  
  .testimonial-content {
    margin-top: var(--space-lg);
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: var(--shadow-accent);
  }
  
  .author-info {
    color: var(--gray-600);
  }
  
  .author-name {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
  }
  
  /* ========== PRICING ========== */
  .pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
  
  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
  }
  
  .pricing-tier {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
  
  .pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
  }
  
  .pricing-period {
    color: var(--gray-500);
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
  }
  
  .pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
    text-align: left;
  }
  
  .pricing-features li {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    line-height: 1.6;
  }
  
  .pricing-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  /* ========== FAQ ========== */
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
  }
  
  .faq-item:hover {
    box-shadow: var(--shadow-md);
  }
  
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-lg);
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
  }
  
  .faq-question:hover {
    background: var(--gray-50);
  }
  
  .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--gray-600);
    line-height: 1.7;
    display: none;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .faq-icon {
    transition: var(--transition-fast);
    color: var(--primary);
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }
  
  /* ========== FOOTER ========== */
  .footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-3xl) 0 var(--space-lg);
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: var(--space-md);
  }
  
  .footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    display: block;
    margin-bottom: var(--space-sm);
    transition: var(--transition-fast);
  }
  
  .footer-section a:hover {
    color: var(--primary-light);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-700);
    color: var(--gray-500);
  }
  
  /* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 768px) {
  .hero {
    min-height: auto; /* Let content define height instead of forcing 90vh */
    padding: 5rem 0 3rem; /* Reduce top/bottom padding */
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl); /* Reduce gap between elements */
    text-align: center;
  }
  
  /* Reorder elements: text first, visual second */
  .hero-text {
    order: 1;
    margin-bottom: var(--space-lg);
  }
  
  .hero-visual-mockup {
    order: 2;
    margin-bottom: var(--space-lg);
  }
  
  /* Make hero visual more mobile-friendly */
  .hero-mockup {
    height: 280px; /* Reduce height for mobile */
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Optimize hero visual mockup for mobile */
  .hero-visual-mockup {
    height: 300px; /* Smaller height for mobile */
    perspective: 1200px; /* Adjust perspective for smaller screen */
  }
  
  /* Adjust floating layers for mobile */
  .layer-top {
    width: 200px; /* Smaller floating cards */
    height: 130px;
    top: 10px;
    right: -40px;
  }
  
  .layer-bottom {
    width: 220px;
    height: 140px;
    bottom: -20px;
    left: -20px;
  }
  
  /* Stack CTA buttons vertically with better spacing */
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    width: 100%;
  }
  
  /* Make buttons full-width on mobile for better touch targets */
  .hero-cta .btn {
    width: 100%;
    max-width: 280px; /* Prevent buttons from being too wide */
    justify-content: center;
    padding: 0.75rem 1.5rem; /* Slightly larger touch targets */
  }
  
  /* Improve hero note styling for mobile */
  .hero-note {
    margin-top: var(--space-md);
    padding: var(--space-md);
    text-align: center;
    max-width: 100%;
  }
  
  /* Better text sizing for mobile */
  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: var(--space-md); /* Reduce margin */
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg); /* Reduce margin */
    line-height: 1.6;
  }
  
  /* Hide some floating elements on mobile to reduce clutter */
  .floating-element:nth-child(4),
  .floating-element:nth-child(5) {
    display: none;
  }
  
  /* Adjust remaining floating elements */
  .floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 5%;
  }
  
  .floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 10%;
  }
  
  .floating-element:nth-child(3) {
    width: 50px;
    height: 50px;
    top: 85%;
    right: 15%;
  }
  
  /* Rest of existing mobile styles */
  .tab-content.active {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    opacity: 0;
    visibility: hidden;
  }
  
  .nav-links.open {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  
  #hamburger {
    display: block;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .tabs-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .mockup-content {
    padding: var(--space-sm);
  }
  
  .pricing-card {
    margin: 0 var(--space-md);
  }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
  .hero {
    padding: 4rem 0 2rem; /* Even tighter spacing */
  }
  
  .hero-content {
    gap: var(--space-lg); /* Smaller gap */
  }
  
  .hero-text h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: var(--space-sm);
  }
  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }
  
  .hero-mockup {
    height: 240px; /* Even smaller for very small screens */
  }
  
  .hero-visual-mockup {
    height: 250px;
  }
  
  /* Make floating cards even smaller */
  .layer-top {
    width: 160px;
    height: 100px;
    top: 5px;
    right: -30px;
  }
  
  .layer-bottom {
    width: 180px;
    height: 110px;
    bottom: -15px;
    left: -15px;
  }
  
  /* Smaller buttons but still good touch targets */
  .hero-cta .btn {
    max-width: 250px;
    font-size: 0.9rem;
  }
  
  .hero-note {
    font-size: 0.85rem;
    padding: var(--space-sm) var(--space-md);
  }
  
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  
  .card {
    padding: var(--space-lg);
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
}

/* Landscape orientation for small screens */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 3rem 0 2rem;
  }
  
  .hero-content {
    gap: var(--space-md);
  }
  
  .hero-mockup {
    height: 220px;
  }
  
  .hero-visual-mockup {
    height: 230px;
  }
}
  
  /* ========== SCROLL ANIMATIONS ========== */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ========== ACCESSIBILITY ========== */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  /* ========== FOCUS STYLES ========== */
  .btn:focus,
  .tab-btn:focus,
  .faq-question:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }
  
  .nav-links a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
  }
  
  /* ========== UTILITY CLASSES ========== */
  .text-center {
    text-align: center;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-right {
    text-align: right;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .font-semibold {
    font-weight: 600;
  }
  
  .text-primary {
    color: var(--primary);
  }
  
  .text-secondary {
    color: var(--secondary);
  }
  
  .text-muted {
    color: var(--gray-500);
  }
  
  .bg-primary {
    background: var(--primary);
  }
  
  .bg-secondary {
    background: var(--secondary);
  }
  
  .bg-light {
    background: var(--gray-50);
  }
  
  .border-primary {
    border-color: var(--primary);
  }
  
  .border-secondary {
    border-color: var(--secondary);
  }
  
  .shadow-sm {
    box-shadow: var(--shadow-sm);
  }
  
  .shadow-md {
    box-shadow: var(--shadow-md);
  }
  
  .shadow-lg {
    box-shadow: var(--shadow-lg);
  }
  
  .rounded-sm {
    border-radius: var(--radius-sm);
  }
  
  .rounded-md {
    border-radius: var(--radius-md);
  }
  
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  
  .rounded-xl {
    border-radius: var(--radius-xl);
  }
  
  .p-sm {
    padding: var(--space-sm);
  }
  
  .p-md {
    padding: var(--space-md);
  }
  
  .p-lg {
    padding: var(--space-lg);
  }
  
  .p-xl {
    padding: var(--space-xl);
  }
  
  .m-sm {
    margin: var(--space-sm);
  }
  
  .m-md {
    margin: var(--space-md);
  }
  
  .m-lg {
    margin: var(--space-lg);
  }
  
  .m-xl {
    margin: var(--space-xl);
  }
  
  .mb-sm {
    margin-bottom: var(--space-sm);
  }
  
  .mb-md {
    margin-bottom: var(--space-md);
  }
  
  .mb-lg {
    margin-bottom: var(--space-lg);
  }
  
  .mb-xl {
    margin-bottom: var(--space-xl);
  }
  
  .mt-sm {
    margin-top: var(--space-sm);
  }
  
  .mt-md {
    margin-top: var(--space-md);
  }
  
  .mt-lg {
    margin-top: var(--space-lg);
  }
  
  .mt-xl {
    margin-top: var(--space-xl);
  }
  
  /* ========== PRINT STYLES ========== */
  @media print {
    .navbar,
    .floating-element,
    .animated-bg {
      display: none;
    }
    
    .hero {
      min-height: auto;
      padding: var(--space-lg) 0;
    }
    
    .section {
      padding: var(--space-lg) 0;
    }
    
    .card,
    .testimonial,
    .pricing-card {
      break-inside: avoid;
    }
    
    .btn {
      display: none;
    }
  }

  
/* Dashboard Screenshot Container */
.hero-visual-mockup {
  position: relative;
  height: 500px;
  perspective: 1500px;
  transform-style: preserve-3d;
}

/* Glowing effect */
.hero-visual-mockup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* hide the bottom floating image on small screens 
@media only screen and (max-width: 768px) {
  .layer-main {
    display: none !important;
  }
}
*/

.screenshot-layer {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Main dashboard layer */
.layer-main {
  width: 100%;
  height: 100%;
  z-index: 3;
  transform: rotateY(-8deg) rotateX(3deg) translateZ(0) translateY(-60px);
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.layer-main:hover {
  transform: rotateY(-5deg) rotateX(2deg) translateZ(20px);
}

/* Top floating card */
.layer-top {
  width: 280px;
  height: 180px;
  top: 20px;
  right: -60px;
  z-index: 4;
  transform: rotateY(-10deg) translateZ(60px);
  background: #252525;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: floatCard 6s ease-in-out infinite;
}

/* Bottom floating card */
.layer-bottom {
  width: 320px;
  height: 200px;
  bottom: -40px;
  left: 0px;
  z-index: 2;
  transform: rotateY(-5deg) translateZ(-30px) translateY(-60px);
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: floatCard 8s ease-in-out infinite reverse;
}

/*
@keyframes floatCard {
  0%, 100% { 
      transform: rotateY(-10deg) translateZ(60px) translateY(0px);
  }
  50% { 
      transform: rotateY(-10deg) translateZ(60px) translateY(-15px);
  }
}
*/
@keyframes floatCard {
  0%, 100% { 
    transform: rotateY(-10deg) translateZ(60px) translateY(-60px);
  }
  50% { 
    transform: rotateY(-10deg) translateZ(60px) translateY(-75px);
  }
}


/* Image placeholder styling */
.screenshot-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder content for screenshots */
.placeholder-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #666;
  font-size: 1.2rem;
  font-weight: 500;
}

/* technical trust signals to the hero section */
.feature-highlight {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: var(--space-lg);
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  color: white;
}

.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: var(--space-md);
}

.feature-list li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-700);
}

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

.tech-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--gray-100);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.tech-badge i {
  color: var(--primary);
}

.integration-row {
  margin-bottom: var(--space-xl);
}

.integration-row-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.integration-benefit {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.integration-benefit:last-child {
  margin-bottom: 0;
}