/* ========================================
   Startoken - Enterprise AI Solutions
   Professional Corporate Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #FF6F00;
    --primary-light: #FFA726;
    --primary-dark: #E65100;
    --secondary-color: #FFC107;
    --secondary-light: #FFD54F;
    --secondary-dark: #F57C00;
    
    --text-primary: #212121;
    --text-secondary: #616161;
    --text-light: #9E9E9E;
    --text-white: #FFFFFF;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-dark: #1A1A1A;
    --bg-gradient: linear-gradient(135deg, #FF6F00 0%, #FFC107 100%);
    
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.24);
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Top Bar with Logo and CTA */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    z-index: 1002;
    background: transparent;
    pointer-events: none; /* Allow clicks to pass through */
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    pointer-events: auto; /* Make logo clickable */
}

.top-logo .logo-icon {
    filter: drop-shadow(0 2px 4px rgba(255, 111, 0, 0.3));
    transition: transform var(--transition-fast);
}

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

.top-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.top-cta-button {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    pointer-events: auto; /* Make button clickable */
}

.top-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-white);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 80px; /* Position below the top bar */
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    border-radius: var(--border-radius);
}

.nav-menu a:hover {
    background: rgba(255, 111, 0, 0.05);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Hero Section */
.hero {
    padding: 180px 0 100px; /* Account for both top bar and navigation */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 111, 0, 0.05) 0%, 
        rgba(255, 193, 7, 0.05) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 111, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-quote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    font-style: italic;
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.about-journey {
    background: linear-gradient(135deg, 
        rgba(255, 111, 0, 0.05) 0%, 
        rgba(255, 193, 7, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-top: 3rem;
    border: 1px solid rgba(255, 111, 0, 0.1);
}

.about-journey p {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Services Section - Modern Card Layout */
.services {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%);
    padding: 6rem 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.service-bundles-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 4rem;
}

.service-bundle {
    position: relative;
    padding: 4rem 0;
}

.service-bundle:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.service-bundle:nth-child(even) {
    background: linear-gradient(180deg, 
        rgba(255, 193, 7, 0.02) 0%, 
        rgba(255, 111, 0, 0.02) 100%);
    margin: 0 -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
}

.bundle-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.bundle-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 111, 0, 0.3);
}

.bundle-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.bundle-tagline {
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1200px) {
    .bundle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bundle-service {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bundle-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.bundle-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.bundle-service:hover::before {
    transform: scaleX(1);
}

.bundle-service h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bundle-service h4 svg {
    flex-shrink: 0;
}

.bundle-service p {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
}

.bundle-service p strong {
    color: var(--primary-color);
}

.bundle-service ul {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.bundle-service li {
    padding: 0.625rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bundle-service li:last-child {
    border-bottom: none;
}

.bundle-service li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.tech-stack, .deliverable {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1.25rem;
    border: 1px solid rgba(255, 111, 0, 0.2);
    letter-spacing: 0.025em;
}

.deliverable {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
    border-color: rgba(76, 175, 80, 0.3);
    color: #2E7D32;
}

.bundle-cta {
    background: linear-gradient(135deg, 
        rgba(255, 111, 0, 0.03) 0%, 
        rgba(255, 193, 7, 0.05) 100%);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 111, 0, 0.15);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.bundle-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--bg-gradient);
}

.pain-point {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Hero Stats Inline */
.hero-stats-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
}

.hero-stats-inline .stat-item {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Old services grid - keeping for compatibility */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 193, 7, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 111, 0, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 111, 0, 0.02) 0%, 
        rgba(255, 193, 7, 0.02) 100%);
}

.product-showcase {
    margin: 3rem 0;
}

.product-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.product-card.featured {
    border: 2px solid rgba(255, 111, 0, 0.2);
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        rgba(255, 193, 7, 0.03) 100%);
}

.product-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-header {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-name {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0;
}

.product-tag {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-features {
    margin: 2rem 0;
}

.product-features h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.product-stats {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.product-actions {
    margin-top: 2rem;
}

.product-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-testimonial {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    text-align: center;
}

.product-testimonial blockquote {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-style: italic;
    margin: 0 0 1rem 0;
}

.product-testimonial cite {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 600;
}

/* Why Choose Section - Redesigned */
.why-choose {
    background: linear-gradient(135deg, 
        rgba(255, 111, 0, 0.03) 0%, 
        rgba(255, 193, 7, 0.03) 100%);
}

.proof-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.proof-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.proof-metric {
    font-size: 3rem;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.proof-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.proof-card p {
    color: var(--text-secondary);
}

.differentiators {
    margin: 4rem 0;
}

.differentiators h3 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comparison-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.comparison-item.highlight {
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.05) 0%, 
        rgba(139, 195, 74, 0.05) 100%);
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.comparison-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
}

.comparison-item li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.tech-credibility {
    text-align: center;
    margin-top: 3rem;
}

.tech-credibility h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tech-badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.tech-badge:hover {
    background: var(--bg-gradient);
    color: var(--text-white);
    transform: translateY(-2px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.benefit-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-secondary);
}

/* Industries Section */
.industries {
    background: var(--bg-secondary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.industry-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.industry-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 111, 0, 0.1) 0%, 
        rgba(255, 193, 7, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    background: var(--bg-gradient);
    color: var(--text-white);
}

.industry-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: var(--bg-gradient);
    color: var(--text-white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: var(--bg-primary);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--text-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Contact Section - Redesigned */
.contact-wrapper {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card.primary {
    background: linear-gradient(135deg, 
        rgba(255, 111, 0, 0.05) 0%, 
        rgba(255, 193, 7, 0.05) 100%);
    border: 1px solid rgba(255, 111, 0, 0.1);
}

.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--text-white);
}

.contact-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    margin-top: 0.5rem;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-subtitle {
    display: block;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* CTA Section within Contact */
.contact-cta-section {
    margin-top: 3rem;
}

.cta-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-card h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-card > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cta-option {
    text-align: left;
}

.cta-option h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cta-option p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-section h3 {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
}

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

.error-message {
    display: none;
    color: #F44336;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #F44336;
}

.form-group.error .error-message {
    display: block;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Section Mobile Responsive */
@media (max-width: 768px) {
    .service-bundle {
        padding: 2.5rem 0;
    }
    
    .service-bundle:nth-child(even) {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .bundle-header {
        margin-bottom: 2rem;
    }
    
    .bundle-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .bundle-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .bundle-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .bundle-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bundle-service {
        padding: 1.5rem;
    }
    
    .bundle-service h4 {
        font-size: 1.125rem;
    }
    
    .bundle-service h4 svg {
        width: 18px;
        height: 18px;
    }
    
    .bundle-cta {
        padding: 1.5rem;
    }
    
    .pain-point {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Top Bar */
    .top-bar {
        position: relative;
        padding: 10px 0;
    }
    
    .top-cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero Adjustments */
    .hero {
        padding: calc(var(--header-height) + 40px) 0 60px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Grid Adjustments */
    .features-grid,
    .services-grid,
    .benefits-grid,
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact Form */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .header,
    .hero-actions,
    .cta-section,
    .contact-form-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* Inline SVG Icon Styles */
.bundle-service h4 svg,
.comparison-item h4 svg,
.hero-stats-inline .stat-item svg,
.pain-point svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--primary-color);
}

.bundle-service h4 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stats-inline .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stats-inline .stat-item svg {
    flex-shrink: 0;
    color: #4CAF50;
}

.comparison-item h4 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-item:first-child h4 svg {
    color: #f44336;
}

.comparison-item.highlight h4 svg {
    color: #4CAF50;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pain-point svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}