 :root {
            /* Color System */
            --color-bg: #0a0a0a;
            --color-bg-secondary: #141414;
            --color-bg-elevated: #1a1a1a;
            --color-text: #e8e8e8;
            --color-text-secondary: #a0a0a0;
            --color-text-muted: #666666;
            --color-accent: #4a9eff;
            --color-accent-secondary: #7b61ff;
            --color-border: #2a2a2a;
            --color-border-light: #333333;
            
            /* Typography */
            --font-serif: 'Playfair Display', Georgia, serif;
            --font-sans: 'DM Sans', -apple-system, sans-serif;
            
            /* Spacing */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            --spacing-2xl: 8rem;
            
            /* Layout */
            --max-width: 1280px;
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-sans);
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-serif);
            font-weight: 600;
            line-height: 1.2;
            color: var(--color-text);
        }
        
        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        
        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            letter-spacing: -0.01em;
        }
        
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }
        
        p {
            font-size: 1.125rem;
            color: var(--color-text-secondary);
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            transition: var(--transition);
        }
        
        header.scrolled {
            background: rgba(10, 10, 10, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        nav {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            width: 40px;
            height: 40px;
        }
        
        .logo-text {
            font-family: var(--font-sans);
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: var(--color-text);
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        
        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--color-text);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--color-text);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 8rem 2rem 4rem;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(123, 97, 255, 0.06) 0%, transparent 50%);
            animation: pulseGlow 8s ease-in-out infinite;
        }
        
        @keyframes pulseGlow {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .hero-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border-light);
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-accent);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.2s;
        }
        
        .hero h1 {
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.4s;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--color-text-secondary);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.6s;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.8s;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background: var(--color-accent);
            color: white;
            box-shadow: 0 4px 14px rgba(74, 158, 255, 0.3);
        }
        
        .btn-primary:hover {
            background: #3a8eef;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
        }
        
        .btn-secondary {
            background: var(--color-bg-elevated);
            color: var(--color-text);
            border: 1px solid var(--color-border-light);
        }
        
        .btn-secondary:hover {
            background: var(--color-bg-secondary);
            border-color: var(--color-accent);
            transform: translateY(-2px);
        }
        
        /* Section Styles */
        section {
            padding: var(--spacing-2xl) 2rem;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-lg);
        }
        
        .section-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }
        
        .section-title {
            margin-bottom: 1rem;
        }
        
        .section-description {
            font-size: 1.125rem;
            color: var(--color-text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-content p {
            font-size: 1.25rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .about-highlights {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        
        .highlight-item {
            text-align: center;
        }
        
        .highlight-number {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-accent);
            display: block;
        }
        
        .highlight-label {
            color: var(--color-text-secondary);
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }
        
        /* Why Choose Us */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .why-card {
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--border-radius);
            padding: 2rem;
            transition: var(--transition);
        }
        
        .why-card:hover {
            border-color: var(--color-accent);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(74, 158, 255, 0.1);
        }
        
        .why-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        .why-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        
        .why-card p {
            font-size: 1rem;
            line-height: 1.7;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-bg-secondary) 100%);
            border: 1px solid var(--color-border);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
            opacity: 0;
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
            border-color: var(--color-accent);
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-number {
            font-family: var(--font-serif);
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-border-light);
            line-height: 1;
            margin-bottom: 1rem;
        }
        
        .service-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        /* Projects Section */
        .projects-grid {
            display: grid;
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .project-card {
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--border-radius);
            padding: 3rem;
            transition: var(--transition);
        }
        
        .project-card:hover {
            border-color: var(--color-accent);
            box-shadow: 0 8px 32px rgba(74, 158, 255, 0.12);
        }
        
        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .project-title {
            font-size: 1.75rem;
        }
        
        .project-tag {
            padding: 0.5rem 1rem;
            background: rgba(74, 158, 255, 0.1);
            border: 1px solid var(--color-accent);
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--color-accent);
        }
        
        .project-section {
            margin-bottom: 1.5rem;
        }
        
        .project-section h4 {
            font-family: var(--font-sans);
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.75rem;
        }
        
        .project-section p {
            line-height: 1.8;
        }
        
        /* Process Section */
        .process-timeline {
            max-width: 900px;
            margin: 3rem auto 0;
            position: relative;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 30px;
            bottom: 30px;
            width: 2px;
            background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
        }
        
        .process-step {
            position: relative;
            padding-left: 80px;
            margin-bottom: 3rem;
        }
        
        .process-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 4px 16px rgba(74, 158, 255, 0.3);
        }
        
        .process-step h3 {
            margin-bottom: 0.75rem;
            font-size: 1.5rem;
        }
        
        .process-step p {
            line-height: 1.8;
        }
        
        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .team-member {
            text-align: center;
            padding: 2rem;
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        
        .team-member:hover {
            transform: translateY(-4px);
            border-color: var(--color-accent);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }
        
        .team-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
        }
        
        .team-member h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        
        .team-role {
            color: var(--color-accent);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        
        .team-bio {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
        }
        
        /* Testimonials Section */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            position: relative;
        }
        
        .quote-icon {
            font-size: 3rem;
            color: var(--color-accent);
            opacity: 0.2;
            line-height: 1;
            margin-bottom: 1rem;
        }
        
        .testimonial-text {
            font-size: 1.125rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
        }
        
        .author-info h4 {
            font-family: var(--font-sans);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .author-title {
            font-size: 0.875rem;
            color: var(--color-text-muted);
        }
        
        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
            text-align: center;
        }
        
        .stat-item {
            padding: 2rem;
        }
        
        .stat-number {
            font-family: var(--font-serif);
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.125rem;
            color: var(--color-text-secondary);
        }
        
        /* Contact Section */
        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }
        
        .contact-content h2 {
            margin-bottom: 1.5rem;
        }
        
        .contact-content p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
        }
        
        .contact-methods {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Footer */
        footer {
            background: var(--color-bg-secondary);
            border-top: 1px solid var(--color-border);
            padding: 3rem 2rem;
            margin-top: var(--spacing-2xl);
        }
        
        .footer-content {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .footer-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .footer-links a {
            color: var(--color-text-secondary);
            font-size: 0.95rem;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--color-accent);
        }
        
        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--color-border);
            color: var(--color-text-muted);
            font-size: 0.875rem;
        }
        
        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            :root {
                --spacing-lg: 3rem;
                --spacing-xl: 4rem;
                --spacing-2xl: 5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 6rem 1.5rem 3rem;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
            
            section {
                padding: var(--spacing-xl) 1.5rem;
            }
            
            .why-grid,
            .services-grid,
            .team-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .process-timeline::before {
                left: 20px;
            }
            
            .process-step {
                padding-left: 70px;
            }
            
            .process-number {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
        /* Add to your CSS file or <style> tag in <head> */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* Mouse light effect overlay */
.mouse-light {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}


/* Book a Strategic Call Section */
.strategic-call-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.strategic-call-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.call-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Founder Showcase */
.founder-showcase {
  text-align: center;
  position: relative;
}

.founder-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.founder-cutout {
  width: 100%;
  max-width: 350px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.3));
  transition: transform 0.3s ease;
}

.founder-cutout:hover {
  transform: scale(1.05);
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.achievement-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #3b82f6;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.badge svg {
  color: #f59e0b;
}

/* Call Content */
.call-content {
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.section-header {
  margin-bottom: 35px;
}

.label {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  animation: pulse-label 2s ease-in-out infinite;
}

@keyframes pulse-label {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #ecf1f9;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  margin: 0;
}

/* Founder Info */
.founder-info {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e2e8f0;
}

.founder-name {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 5px 0;
}

.founder-title {
  font-size: 16px;
  color: #3b82f6;
  font-weight: 600;
  margin: 0 0 25px 0;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.credential-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.icon-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.credential-text {
  flex: 1;
}

.credential-text strong {
  display: block;
  font-size: 15px;
  color: #1e293b;
  margin-bottom: 4px;
  font-weight: 600;
}

.credential-text span {
  display: block;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* Value Points */
.value-points {
  margin-bottom: 35px;
}

.value-intro {
  font-size: 16px;
  color: #1e293b;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #10b981;
  stroke-width: 3;
}

/* CTA Button */
.cta-wrapper {
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 20px 40px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button::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 ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.cta-button:active {
  transform: translateY(-1px);
}

.phone-icon {
  width: 24px;
  height: 24px;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
}

.button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.button-text strong {
  font-size: 18px;
  line-height: 1;
}

.button-text small {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
}

.trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 13px;
  color: #64748b;
}

.trust-note svg {
  color: #10b981;
}

/* Responsive Design */
@media (max-width: 968px) {
  .call-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .founder-cutout {
    max-width: 250px;
  }
  
  .call-content {
    padding: 35px 25px;
  }
  
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .strategic-call-section {
    padding: 60px 15px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
  }
  
  .credentials {
    gap: 15px;
  }
  
  .credential-item {
    gap: 12px;
  }
  
  .icon-box {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}