/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Asap', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-btn {
    font-size: 0.875rem;
    padding: 8px 16px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-line {
    display: block;
}

.hero-title-line:first-child {
    color: #1a1a1a;
}

.hero-title-line:last-child {
    color: #1a1a1a;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.black-text {
    color: #1a1a1a;
}

.rotating-text {
    color: #1a1a1a;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

.rotating-text.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.rotating-text.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}
/* Hero Benefits Grid */
.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0 auto 40px;
    max-width: 900px;
}

.benefit-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}


.benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .benefit-card {
        padding: 20px;
        gap: 12px;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #2d3748;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

/* Hero Animation */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Trusted By Section */
.trusted-by {
    padding: 40px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
}

.trusted-by-text {
    text-align: center;
    color: #718096;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo img,
.logo-icon {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.company-logo svg.logo-icon {
    height: 32px;
    width: auto;
    max-width: 120px;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.company-logo:hover img,
.company-logo:hover .logo-icon,
.company-logo:hover svg.logo-icon {
    filter: grayscale(0%) brightness(1);
}

.company-logo svg {
    height: 32px;
    width: auto;
    max-width: 120px;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.company-logo:hover svg {
    filter: grayscale(0%) brightness(1);
}

.company-logo svg text {
    fill: #4a5568;
    transition: fill 0.3s ease;
}

.company-logo:hover svg text {
    fill: #1a1a1a;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

/* Mission Section */
.mission {
    padding: 40px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #2d3748;
    font-weight: 400;
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.typeform-widget {
    border-radius: 12px;
    overflow: hidden;
}

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

.mission-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Platform Thesis Section */
.platform-thesis {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.platform-thesis-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.thesis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.thesis-left {
    text-align: center;
}

.thesis-right {
    text-align: left;
}

.platform-thesis-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    line-height: 1.0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.thesis-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.whitepaper-btn {
    font-size: 1rem;
    padding: 12px 24px;
}

.thesis-buttons .btn {
    width: 200px;
    text-align: center;
}

.thesis-text {
    text-align: left;
    max-width: 100%;
}

.thesis-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 400;
}

.thesis-text p:last-child {
    margin-bottom: 0;
}

/* The Modern GTM Stack Section */
.gtm-stack {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.gtm-stack-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gtm-stack-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    line-height: 1.0;
    text-align: center;
}

.gtm-stack-image {
    max-width: 100%;
    margin: 0 auto;
}

.gtm-stack-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gtm-stack-img:hover {
    transform: translateY(-5px);
}

/* Features Section */
.features {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.3"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    opacity: 0.5;
}

.features-header {
    text-align: center;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.features-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.4;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: white;
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 50%, #10b981 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
    z-index: 1;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 24px 24px 12px;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.feature-description {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0 24px 18px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.feature-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
    margin: 0 24px 24px;
    position: relative;
    z-index: 2;
}

/* Call to Action Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: white;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: #1a1a1a;
}

.cta .btn-primary:hover {
    background: #f7fafc;
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: #4a5568;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-simple p {
    color: #a0aec0;
    font-size: 0.875rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.separator {
    color: #a0aec0;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .feature-card {
        margin: 0 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 45px;
        padding: 70px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 160px;
    }
    
    .logo-track {
        gap: 30px;
    }
    
    .company-logo img {
        height: 20px;
        max-width: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .features-title {
        font-size: 1.75rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        margin: 0 6px;
    }
    
    .feature-title {
        font-size: 1.25rem;
        margin: 28px 24px 14px;
    }
    
    .feature-description {
        margin: 0 24px 18px;
    }
    
    .feature-divider {
        margin: 0 24px 24px;
    }
    
    .feature-number {
        top: 18px;
        right: 18px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .mission-text {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .footer-simple {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .thesis-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thesis-left {
        text-align: center;
    }
    
    .thesis-right {
        text-align: left;
    }
    
    .platform-thesis-title {
        font-size: 2rem;
    }
    
    .gtm-stack-title {
        font-size: 2rem;
    }
    
    .gtm-stack {
        padding: 60px 0;
    }
}

/* Add these styles after line 135 (after .hero-description) */

.hero-title-simple {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: center;
}

/* Duplicate Title Section */
.duplicate-title {
    padding: 60px 0 20px 0;
    background: #ffffff;
    text-align: center;
}

.duplicate-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 8px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Section Separator */
.section-separator {
    padding: 20px 0 40px 0;
    background: #ffffff;
}

.separator-line {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    margin: 0 auto;
}

.separator-dot {
    width: 8px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 50%;
}

.separator-line-main {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
    margin: 0 16px;
}

/* Compact Offer */
.compact-offer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.offer-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #10b981 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.offer-subtitle {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 16px;
}

.offer-value {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* Executive Benefits Section */
.executive-benefits {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.executive-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 0 auto;
}

.executive-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.executive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #10b981 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.executive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

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

.executive-role {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.executive-benefit {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

/* Role-specific card styling */
.cro-card::before {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.cfo-card::before {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.cco-card::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Responsive Design for Executive Benefits */
@media (max-width: 768px) {
    .executive-benefits {
        padding: 16px 0;
    }
    
    .executive-benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .executive-card {
        padding: 16px 12px;
    }
    
    .executive-role {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .executive-benefit {
        font-size: 0.9rem;
    }
}
