/* Root Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #00f2fe;
    --text-dark: #1a1a2e;
    --text-light: #4a5568;
    --bg-light: #f8f9ff;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    color: white;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid transparent;
    font-size: 1rem;
    background-image: var(--primary-gradient);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    border-radius: 8px;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-secondary:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-logo h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

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

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 1px;
}

.nav-cta {
    padding: 8px 20px !important;
    background: var(--primary-gradient) !important;
    color: white !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3) !important;
}

.nav-cta:hover {
    color: white !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Sections */
.hero, .page-hero {
    padding: 140px 0 100px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: var(--accent-gradient);
    opacity: 0.1;
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--secondary-gradient);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 400;
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    margin-top: 4rem;
    height: 150px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05);
}

.card-1 {
    top: 0;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 35%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 1.5rem;
}

.card-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.hero-partners {
    margin-top: 3rem;
}

.partners-label {
    font-size: 0.875rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card::before {
    display: none;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 0.08;
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
}

.service-icon {
    display: inline-block;
    animation: rotate 20s linear infinite;
}

.service-card:nth-child(2) .service-icon {
    animation-delay: -5s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: -10s;
}

.service-card:nth-child(4) .service-icon {
    animation-delay: -15s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}


.service-card p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6b7280;
}

.service-features {
    display: none;
}

.service-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.example-tag {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.example-tag:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Industries */
.industries {
    padding: 80px 0;
    background: linear-gradient(to bottom, white 0%, var(--bg-light) 100%);
}

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

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: rotate(45deg);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);
    border-color: transparent;
}

.industry-card:hover::before {
    opacity: 0.03;
}

.industry-card h3 {
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.industry-card p {
    font-size: 0.95rem;
}

/* Success Metrics */
.success-metrics {
    padding: 80px 0;
    background: var(--dark-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.success-metrics::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
}

.success-metrics .section-header h2,
.success-metrics .section-header p {
    color: white;
}

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

.metric-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

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

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

.advantage-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

/* CTA Sections */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: var(--accent-gradient);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-content p {
    color: #6b7280;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Background Patterns */
.pattern-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

/* How We Work */
.how-we-work {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.05) 0%, transparent 50%);
    z-index: 0;
}

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

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

.process-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.process-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #000;
}

.process-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why varaku */
.why-varaku {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 50%, #f0f9ff 100%);
    position: relative;
}

.why-varaku::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--secondary-gradient);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(100px);
}

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

.differentiator h3 {
    color: #000;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.differentiator p {
    color: #6b7280;
    line-height: 1.6;
}

/* Featured Work */
.featured-work {
    padding: 100px 0;
    background: white;
}

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

.featured-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.featured-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.featured-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: transparent;
}

.featured-item:hover::before {
    transform: scaleX(1);
}

.featured-tag {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.featured-item h3 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.featured-item p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.featured-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.featured-link:hover {
    color: #374151;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-svg {
    height: 40px;
    width: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-svg:hover {
    opacity: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

/* Services Page Specific */
.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 5rem;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.service-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.service-icon.large {
    font-size: 4rem;
    flex-shrink: 0;
}

.service-title h2 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-content {
    display: grid;
    gap: 3rem;
}

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

.offering-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.offering-item h4 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.offering-item ul {
    list-style: none;
    margin-top: 1rem;
}

.offering-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.offering-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.outcomes-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
}

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

.outcome-metric {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.outcome-description {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

/* Process Timeline */
.service-process {
    padding: 80px 0;
    background: #f8fafc;
}

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

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    border-top: 4px solid #667eea;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #667eea;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.process-step h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

/* Glass morphism card style */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

/* About Page */
.company-story {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-stats {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-item h2 {
    color: white;
    margin-bottom: 1rem;
}

.mission-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

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

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-image {
    height: 200px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
}

.member-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.team-member:hover .member-image::before {
    animation: shimmer 0.5s;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.member-placeholder {
    text-align: center;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-expertise span {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: transparent;
}

.value-item:hover::before {
    opacity: 0.05;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: white;
}

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

.cert-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.cert-item h4 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.cert-item ul {
    list-style: none;
}

.cert-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.cert-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Culture Section */
.culture-section {
    padding: 80px 0;
    background: #f8fafc;
}

.culture-content {
    max-width: 800px;
    margin: 0 auto;
}

.culture-points {
    margin-top: 2rem;
}

.culture-point {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    position: relative;
}

.culture-point::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.culture-point h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

/* Case Studies */
.case-studies-overview {
    padding: 60px 0;
    background: #f8fafc;
}

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

.overview-stat {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.case-studies-detailed {
    padding: 80px 0;
}

.case-study {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.case-study.featured {
    border-left: 6px solid #667eea;
    position: relative;
}

.case-study.featured::before {
    content: 'Featured Case Study';
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-header {
    margin-bottom: 2rem;
}

.case-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.industry-tag, .solution-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.industry-tag {
    background: #e2e8f0;
    color: #4a5568;
}

.solution-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.case-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    font-style: italic;
}

.case-content {
    display: grid;
    gap: 2rem;
}

.case-challenge, .case-solution {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.case-challenge h3, .case-solution h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.case-challenge ul, .case-solution ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.case-challenge li, .case-solution li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

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

.component {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 3px solid #667eea;
}

.component h4 {
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.case-results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 8px;
    color: white;
}

.case-results h3 {
    color: white;
    margin-bottom: 2rem;
}

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

.result-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.result-metric {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.result-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.case-quote {
    font-style: italic;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.quote-attribution {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Industry Impact */
.industry-impact {
    padding: 80px 0;
    background: #f8fafc;
}

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

.impact-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #667eea;
}

.impact-stats {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    gap: 2rem;
}

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

/* Contact Page */
.contact-options {
    padding: 80px 0;
    background: #f8fafc;
}

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

.contact-option {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-option.featured {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.contact-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.option-header {
    margin-bottom: 2rem;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.option-benefits {
    text-align: left;
    margin: 2rem 0;
}

.option-benefits ul {
    list-style: none;
}

.option-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.option-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a202c;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background: #f8fafc;
}

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

.contact-info-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-note {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 0.5rem;
}

/* What Happens Next */
.what-happens-next {
    padding: 80px 0;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.faq-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item p {
    font-size: 0.95rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 3rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 20px;
}

.close:hover,
.close:focus {
    color: #1a202c;
    text-decoration: none;
    cursor: pointer;
}

.calendar-placeholder,
.modal-form-placeholder,
.partnership-info {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Enterprise Trust Indicators */
.trust-indicators {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
    padding: 4rem 0;
    text-align: center;
}

.trust-content .trust-label {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--text-dark);
}

.trust-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-metric {
    text-align: center;
}

.trust-metric .metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-metric .metric-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Service Metrics */
.service-metrics {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.metric-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
}

/* Enterprise Value Section */
.enterprise-value-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
    padding: 4rem 0;
    text-align: center;
}

.value-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.roi-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.roi-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.roi-label {
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
}

/* Frameworks Section */
.frameworks-section, .proprietary-frameworks {
    padding: 5rem 0;
    background: var(--white);
}

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

.framework-item, .framework-highlight {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.framework-item:hover, .framework-highlight:hover {
    transform: translateY(-5px);
}

.framework-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.framework-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.framework-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.framework-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.framework-benefits span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.framework-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.framework-metrics .metric {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Decoration Elements */
.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary-gradient);
    bottom: -75px;
    left: -75px;
    animation-delay: 1s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

/* Insights Page Styles */
.insights-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 50%, #f0f9ff 100%);
}

.insights-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.insight-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insight-stat .stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Insights Filter */
.insights-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 100px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* Insights Sections */
.insights-categories {
    padding: 80px 0;
    background: white;
}

.insights-section {
    margin-bottom: 80px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Insight Cards */
.insight-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.insight-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.gradient-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.gradient-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.gradient-4 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.gradient-5 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.gradient-6 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }

.insight-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.insight-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    flex: 1;
}

.insight-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.insight-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Access Button */
.access-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.access-btn:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateX(4px);
}

.demo-btn {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-link:hover {
    transform: translateX(4px);
}

/* Enhanced Gated Content Modal */
.gated-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gated-modal.active {
    opacity: 1;
    visibility: visible;
}

.gated-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.gated-modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.gated-modal-content {
    background-color: white;
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.gated-modal.active .gated-modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    right: 24px;
    top: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    z-index: 10;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background-color: #f3f4f6;
    color: #374151;
}

/* Modal Split Layout */
.modal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.modal-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    position: relative;
    overflow: hidden;
}

.modal-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') center;
    opacity: 0.3;
}

.modal-preview > * {
    position: relative;
    z-index: 1;
}

.preview-icon {
    margin-bottom: 1.5rem;
}

.modal-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modal-preview p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.trust-indicators {
    margin-top: auto;
}

.trust-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.trust-logos {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Modal Form Side */
.modal-form-side {
    padding: 3rem;
    background: white;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-header p {
    color: #6b7280;
    margin: 0;
}

.gated-form.enhanced {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-fields {
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 0.75rem 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.floating-label {
    position: absolute;
    left: 0.75rem;
    top: 0.875rem;
    color: #6b7280;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    pointer-events: none;
    background: transparent;
}

.form-input:focus + .floating-label,
.form-input:not(:placeholder-shown) + .floating-label {
    top: 0.25rem;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.progressive-fields {
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.consent-group {
    margin-bottom: 1.5rem;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    margin: 0;
    accent-color: var(--primary-color);
}

.consent-text {
    color: #6b7280;
}

.consent-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.consent-text a:hover {
    text-decoration: underline;
}

.submit-btn.full-width {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-icon {
    transition: transform 0.2s ease;
}

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

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.success-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 3rem 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-modal-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-modal-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .modal-preview {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0;
        padding: 2rem;
        min-height: 200px;
        justify-content: flex-start;
    }
    
    .modal-form-side {
        border-top-right-radius: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .gated-modal-container {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .logo-svg {
        height: 40px;
    }
    
    .footer-logo-svg {
        height: 35px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-option.featured {
        transform: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero, .page-hero {
        padding: 100px 0 60px;
    }

    .service-detail,
    .case-study {
        padding: 2rem;
    }

    .form-container {
        padding: 2rem;
    }

    .stat-number,
    .metric-number,
    .result-metric {
        font-size: 2rem;
    }

    .offerings-grid,
    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .cta-section,
    .modal {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }

    .hero,
    .page-hero {
        background: white;
        color: black;
    }

    .hero::before {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: more) {
    .btn-primary {
        background: #000;
        border-color: #000;
    }

    .btn-secondary {
        background: #fff;
        color: #000;
        border-color: #000;
    }

    .service-card:hover,
    .team-member:hover,
    .value-item:hover {
        border-color: #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Partners Page Styles */
.partners-overview {
    padding: 60px 0;
    background: #f8fafc;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.overview-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.overview-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.overview-stat .stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
}

.partners-category {
    padding: 80px 0;
}

.partners-category:nth-child(even) {
    background: #f8fafc;
}

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

.category-header h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-header p {
    color: #64748b;
    font-size: 1.1rem;
}

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

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.partner-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.partner-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.partner-logo {
    margin-bottom: 1.5rem;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

.logo-placeholder.aws {
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
}

.logo-placeholder.azure {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
}

.logo-placeholder.gcp {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #ea4335 100%);
}

.logo-placeholder.openai {
    background: linear-gradient(135deg, #10a37f 0%, #1a7a63 100%);
}

.logo-placeholder.anthropic {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
}

.logo-placeholder.huggingface {
    background: linear-gradient(135deg, #ffcc4d 0%, #ff9f40 100%);
    color: #333;
}

.logo-placeholder.databricks {
    background: linear-gradient(135deg, #ff3621 0%, #e6251b 100%);
}

.logo-placeholder.snowflake {
    background: linear-gradient(135deg, #29b5e8 0%, #1e88e5 100%);
}

.logo-placeholder.vector {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.logo-placeholder.docker {
    background: linear-gradient(135deg, #2496ed 0%, #1e88e5 100%);
}

.logo-placeholder.kubernetes {
    background: linear-gradient(135deg, #326ce5 0%, #1565c0 100%);
}

.logo-placeholder.github {
    background: linear-gradient(135deg, #24292e 0%, #1b1f23 100%);
}

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

.partner-status {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.partner-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.partner-card.tier-1 .service-tag {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-color: rgba(102, 126, 234, 0.2);
}

.partnership-benefits {
    padding: 80px 0;
    background: #f8fafc;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

.become-partner {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.partnership-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.partnership-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.partnership-cta > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.partnership-type {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.partnership-type h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.partnership-type p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

/* Enhanced Insight Cards */
.insight-card.premium {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--primary-gradient) border-box;
    position: relative;
}

.insight-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.insight-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.insight-value {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.value-metric {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.content-type {
    background: #10b981;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.access-btn.premium {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.access-btn.premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Mobile Responsiveness for Partners */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-types {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
}

/* Dark Mode Support (for future implementation) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #e2e8f0;
        --text-secondary: #a0aec0;
        --bg-primary: #1a202c;
        --bg-secondary: #2d3748;
    }
}