* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --success: #16A34A;
    --warning: #F59E0B;
    --error: #DC2626;
    --accent-green: #CAEA54;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
    transition: transform 0.3s var(--transition);
}

.logo:hover .logo-img {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s var(--transition);
    letter-spacing: -0.01em;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--black);
}

/* Mobile menu toggle - hidden on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s var(--transition);
}

.mobile-menu-toggle.menu-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.menu-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.menu-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    font-family: 'Archivo', sans-serif;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    padding: 0.75rem 1.75rem;
    border: 1px solid var(--gray-300);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    font-family: 'Archivo', sans-serif;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--black);
    background: var(--gray-50);
}

/* Typography */
h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Layout */
.section {
    padding: 8rem 3rem;
}

.section.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

/* Hero */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Platform Screenshot */
.platform-screenshot {
    width: 100%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.platform-screenshot iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 2000 / 1085;
}

.browser-chrome {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.browser-dot:nth-child(1) { background: #FF5F56; }
.browser-dot:nth-child(2) { background: #FFBD2E; }
.browser-dot:nth-child(3) { background: #27C93F; }

.screenshot-content {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.screenshot-content iframe,
.screenshot-content img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

/* AI Agent Cards */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.agent-card {
    border: 2px solid var(--gray-200);
    background: var(--white);
    transition: all 0.3s var(--transition);
    overflow: hidden;
}

.agent-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.agent-header {
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.agent-number {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.agent-name {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.agent-tagline {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

.agent-demo {
    background: var(--gray-50);
    padding: 2rem;
    min-height: 350px;
    position: relative;
}

.agent-screenshot {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    height: 100%;
}

.agent-benefits {
    padding: 2rem;
    background: var(--white);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.benefit-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 0.125rem;
}


/* Features Section */
.features-section {
    background: var(--white);
    padding: 6rem 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 4rem;
}

.feature-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--black);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--black);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Stats */
.stats-section {
    background: var(--black);
    color: var(--white);
    padding: 6rem 3rem;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
}

/* Demo Interface */
.demo-interface {
    background: var(--white);
    border: 1px solid var(--gray-200);
    min-height: 300px;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.demo-title {
    font-weight: 700;
    font-size: 0.9375rem;
}

.demo-status {
    padding: 0.25rem 0.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
}

.demo-content {
    padding: 1.5rem;
}

/* Message Bubbles */
.message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.message-user {
    align-items: flex-end;
}

.message-bubble {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    max-width: 85%;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.message-user .message-bubble {
    background: var(--black);
    color: var(--white);
}

.message-ai .message-bubble {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

/* Document List */
.doc-list {
    margin-top: 1rem;
}

.doc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.doc-name {
    font-weight: 600;
}

.doc-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
}

.status-compliant {
    background: var(--success);
    color: var(--white);
}

.status-non-compliant {
    background: var(--error);
    color: var(--white);
}

/* CTA */
.cta-section {
    background: var(--black);
    color: var(--white);
    padding: 10rem 3rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.cta-section p {
    font-size: 1.375rem;
    color: var(--gray-400);
    margin-bottom: 3rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--black);
    padding: 1rem 2.5rem;
}

/* Footer */
footer {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--black);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--black);
}

/* Comparison Table */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.comparison-card {
    padding: 3rem;
    border: 2px solid var(--gray-200);
}

.comparison-card.highlight {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-card.highlight .comparison-item {
    border-bottom-color: var(--gray-700);
}

.comparison-time {
    font-weight: 700;
    font-family: 'Space Mono', monospace;
}

.total-time {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
}

.comparison-card.highlight .total-time {
    border-top-color: var(--gray-700);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-grid, .agent-grid, .comparison-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .integrations-grid { grid-template-columns: repeat(4, 1fr); }
    .roi-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section { padding: 4rem 2rem; }
    
    #pricing {
        padding: 6rem 2rem !important;
    }
    
    #pricing > div > div:first-child {
        margin-bottom: 3rem !important;
    }
    
    #pricing h2 {
        font-size: 2.5rem !important;
    }
    
    #pricing > div > div:last-child > div {
        padding: 3rem 2rem !important;
    }
    
    #pricing > div > div:last-child > div > div:first-child {
        font-size: 2rem !important;
    }
    
    #pricing > div > div:last-child > div > div:nth-child(3) > div {
        font-size: 3.5rem !important;
    }
    
    #pricing > div > div:last-child > div > div:nth-child(4) {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { 
        font-size: 2.5rem !important; 
        line-height: 1.1 !important;
    }
    .section-title { font-size: 2rem !important; }
    .section-description { font-size: 1.125rem !important; }
    .cta-section h2 { font-size: 2.25rem !important; }
    
    /* Navigation */
    nav {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-200);
        margin-top: 1rem;
    }
    .nav-links.nav-open {
        display: flex;
    }

    /* Mobile menu hamburger button */
    .mobile-menu-toggle {
        display: flex;
    }

    .logo-img { height: 36px; }
    
    /* Hero Section */
    .hero-grid {
        gap: 3rem;
    }
    
    .hero-grid > div:first-child p {
        font-size: 1.125rem !important;
        margin: 1.5rem 0 2rem !important;
    }
    
    .hero-grid > div:first-child > div:last-child > div {
        grid-template-columns: 1fr !important;
    }
    
    .hero-grid > div:first-child > div:last-child > div > div:first-child > div:first-child {
        font-size: 2rem !important;
    }
    
    /* Stats Bar */
    .stats-bar {
        padding: 2rem 1.5rem !important;
    }
    
    .stats-grid { 
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .stat-value {
        font-size: 2rem !important;
    }
    
    /* Grids */
    .features-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .testimonials-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .integrations-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 1.5rem;
    }
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Agent Cards */
    .agent-card {
        padding: 2rem;
    }
    
    .agent-card h3 {
        font-size: 1.5rem;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    .hero-grid > div:first-child > div:first-child {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Pricing Section */
    #pricing {
        padding: 4rem 1.5rem !important;
    }
    
    #pricing h2 {
        font-size: 2rem !important;
    }
    
    #pricing .section-eyebrow {
        font-size: 0.75rem !important;
        padding: 0.4rem 1rem !important;
    }
    
    #pricing > div > div:last-child > div {
        padding: 2rem 1.5rem !important;
        border-radius: 16px !important;
    }
    
    #pricing > div > div:last-child > div > div:first-child h3 {
        font-size: 1.75rem !important;
    }
    
    #pricing > div > div:last-child > div > div:nth-child(3) {
        padding: 1.5rem !important;
    }
    
    #pricing > div > div:last-child > div > div:nth-child(3) > div {
        font-size: 2.5rem !important;
    }
    
    #pricing > div > div:last-child > div > div:nth-child(3) > p {
        font-size: 1rem !important;
    }
    
    #pricing > div > div:last-child > div > div:nth-child(4) {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    #pricing > div > div:last-child > div > div:nth-child(4) > div > div:first-child {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.875rem !important;
    }
    
    #pricing > div > div:last-child > div > div:nth-child(4) > div > div:last-child > div:first-child {
        font-size: 0.9375rem !important;
    }
    
    #pricing > div > div:last-child > div > div:nth-child(4) > div > div:last-child > div:last-child {
        font-size: 0.8125rem !important;
    }
    
    #pricing > div > div:last-child > div > button {
        padding: 1.25rem !important;
        font-size: 1rem !important;
    }
    
    #pricing > div > div:last-child > div > div:last-child {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
    }
    
    #pricing > div > div:last-child > div > div:last-child > div {
        font-size: 0.8125rem !important;
    }
    
    /* Platform Demo */
    .platform-screenshot {
        border-radius: 8px;
    }
    
    .browser-chrome {
        padding: 0.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .browser-chrome > div:nth-child(4) {
        font-size: 0.75rem !important;
        width: 100%;
        order: 5;
    }
    
    .browser-chrome button {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Contact Form */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .footer-bottom { 
        flex-direction: column; 
        gap: 1.5rem; 
        text-align: center; 
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* ROI Calculator */
    .roi-form {
        padding: 2rem;
    }
    
    .roi-result {
        padding: 2rem;
    }
    
    .savings-amount {
        font-size: 2.5rem !important;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Mission Cards */
    .mission-card {
        padding: 2rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 4rem 2rem !important;
    }
    
    .cta-section > div {
        padding: 3rem 2rem !important;
    }
    
    /* How It Works */
    .step {
        padding: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens */
    h1 { 
        font-size: 2rem !important; 
    }
    .section-title { 
        font-size: 1.75rem !important; 
    }
    
    .section { 
        padding: 3rem 1.5rem; 
    }
    
    nav {
        padding: 0.875rem 1rem;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 0.9375rem;
        padding: 0.875rem 1.25rem;
    }
    
    .stat-value {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.875rem !important;
    }
    
    .agent-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    #pricing {
        padding: 3rem 1rem !important;
    }
    
    #pricing h2 {
        font-size: 1.75rem !important;
    }
    
    #pricing > div > div:last-child > div {
        padding: 1.5rem 1rem !important;
    }
    
    #pricing > div > div:last-child > div > div:first-child h3 {
        font-size: 1.5rem !important;
    }
    
    #pricing > div > div:last-child > div > div:nth-child(3) > div {
        font-size: 2rem !important;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr !important;
    }
    
    .integration-card {
        padding: 1.5rem;
    }
    
    .comparison-grid {
        gap: 1.5rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .comparison-card h3 {
        font-size: 1.25rem;
    }
    
    .total-time {
        font-size: 1.5rem;
    }
}

/* Mission/Vision */
.mission-section {
    background: var(--gray-50);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 3rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
}


/* Team */
.team-section {
    background: var(--white);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-100);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 2px solid var(--gray-200);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}


/* Contact */
.contact-section {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-method-info p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
}

.contact-method-info a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
}

.contact-method-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.3s var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--black);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


/* Modern SVG Icons */
.icon-box {
    width: 56px;
    height: 56px;
    background: var(--black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--gray-50);
    padding: 6rem 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--black);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: var(--black);
}

.testimonial-quote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ROI Section */
.roi-section {
    background: var(--black);
    color: var(--white);
    padding: 6rem 3rem;
}

.roi-container {
    max-width: 1200px;
    margin: 0 auto;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.roi-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-item:last-child {
    border-bottom: none;
    border-top: 2px solid var(--accent-green);
    padding-top: 2rem;
    margin-top: 0.5rem;
}

.roi-label {
    color: var(--gray-400);
    font-size: 1rem;
}

.roi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.roi-total-label {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.roi-total-value {
    font-size: 2rem;
    color: var(--accent-green);
}

.roi-result {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.roi-number {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.roi-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.roi-description {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Integrations Section */
.integrations-section {
    background: var(--white);
    padding: 6rem 3rem;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}

.integration-card {
    aspect-ratio: 16/9;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s var(--transition);
}

.integration-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.integration-card svg {
    max-width: 100%;
    height: auto;
}