/* Design Tokens */
:root {
  --color-bg:           #020D1F;
  --color-surface:      #071428;
  --color-surface-2:    #0A1E38;
  --color-accent:       #0071BE;
  --color-accent-light: #1A8FE3;
  --color-accent-glow:  rgba(0, 113, 190, 0.18);
  --color-text:         #E8F4FF;
  --color-muted:        #7A9AB8;
  --color-border:       #0F2744;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius-card: 6px;
  --shadow-glow: 0 0 24px rgba(0, 113, 190, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand .logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.nav-brand .logo-img {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.nav-menu a.active {
    color: var(--color-accent);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-accent);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--color-accent-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
    background: rgba(0, 113, 190, 0.12);
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.eyebrow {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-accent-glow);
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Social Proof */
.social-proof {
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.social-proof-label {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.social-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    color: var(--color-muted);
    font-weight: 600;
    font-size: 1.125rem;
    opacity: 0.6;
}

/* Platform Section */
.platform-section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-subtext {
    font-size: 1.125rem;
    color: var(--color-muted);
    line-height: 1.7;
}

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

.pillar-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.pillar-card {
    background: var(--color-surface-2);
    padding: 2.5rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    transition: all 0.3s;
    position: relative;
    box-shadow: var(--shadow-glow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pillar-card-link:hover .pillar-card {
    transform: translateY(-4px);
    box-shadow: 0 0 32px rgba(0, 113, 190, 0.2);
    border-color: var(--color-accent);
    border-left-color: var(--color-accent-light);
}

.pillar-icon {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 113, 190, 0.12);
    border-radius: 8px;
}

.pillar-icon svg {
    width: 32px;
    height: 32px;
}

.pillar-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.pillar-card p {
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 0.875rem;
    flex-grow: 1;
}

.learn-more {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    transition: transform 0.3s;
}

.pillar-card-link:hover .learn-more {
    transform: translateX(4px);
}



.steps-container {
    margin-top: 4rem;
    position: relative;
    padding: 0 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-connector {
    position: absolute;
    top: 80px;
    left: 10%;
    width: 80%;
    height: 100px;
    z-index: 0;
}

.steps-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.step-card {
    background: var(--color-surface);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.step-icon {
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.3;
}

.step-card p {
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex: 1;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.step-tags .tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--color-muted);
    font-weight: 500;
}

/* Business Problems */
.business-problems {
    padding: 8rem 0;
    background: var(--color-bg);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.problem-card {
    background: #0A1E38;
    border-radius: var(--radius-card);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 320px;
}

.problem-card:hover {
    border-left-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.problem-state,
.solution-state {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.problem-state {
    opacity: 1;
    transform: translateY(0);
}

.solution-state {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.problem-card:hover .problem-state {
    opacity: 0;
    transform: translateY(-10px);
}

.problem-card:hover .solution-state {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.problem-icon,
.solution-icon {
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.4;
}

.problem-card p {
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.solution-link:hover {
    transform: translateX(4px);
    text-decoration: underline;
}

/* Integrations */
.integrations-section {
    padding: 8rem 0;
    background: #071428;
}

.integrations-grid {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.integration-category h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

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

.integration-tile {
    background: #0A1E38;
    border: 1px solid #0F2744;
    border-radius: var(--radius-card);
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--color-text);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.integration-tile:hover {
    opacity: 1;
    border-color: var(--color-accent);
    transform: scale(1.04);
}

.integration-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: var(--color-surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
}

.integration-cta h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.integration-cta p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Testimonial */
.testimonial-section {
    padding: 8rem 0;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--color-surface-2);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-glow);
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 2rem;
    line-height: 1;
}

.testimonial-card blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-author span {
    color: var(--color-muted);
    font-size: 0.875rem;
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background: var(--color-surface);
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-col a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-muted);
    font-size: 0.875rem;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Tablet Responsive */
@media (max-width: 968px) and (min-width: 769px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        z-index: 1000;
    }
    
    .navbar .container {
        position: relative;
        z-index: 1000;
    }
    
    .hamburger {
        display: flex !important;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        bottom: 0;
        right: 0;
        display: flex !important;
        flex-direction: column;
        background-color: var(--color-bg);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s ease;
        padding: 0;
        margin: 0;
        border-top: 1px solid var(--color-border);
        gap: 0;
        justify-content: flex-start;
        align-items: stretch;
        overflow-y: auto;
        z-index: 150;
        list-style: none;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
        margin: 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1.5rem 1rem;
        font-size: 1.25rem;
        font-weight: 600;
        transition: all 0.2s ease;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

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

    .hero-headline {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

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

    .steps-connector {
        display: none;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        min-height: auto;
    }

    .integration-tiles {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta a {
        width: 100%;
        text-align: center;
    }
}

/* Additional Page Styles */

/* Page Hero */
.page-hero {
    padding: 10rem 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Page */
.feature-detail {
    padding: 2rem 0 4rem;
}

.feature-detail.alt-bg {
    background: var(--color-surface);
}

.feature-detail h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.feature-intro {
    font-size: 1.25rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
}

.pillars-list h3,
.capabilities-list h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
}

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

.pillar-item {
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

.feature-detail.alt-bg .pillar-item {
    background: var(--color-bg);
}

.pillar-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.pillar-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.pillar-item p {
    color: var(--color-muted);
    line-height: 1.6;
}

/* Feature Content Grid */
.feature-content-grid {
    display: grid;
    grid-template-columns: 80% 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.feature-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.feature-visual svg {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 113, 190, 0.15));
}

.feature-text {
    max-width: 100%;
}

.feature-text h2 {
    margin-top: 0;
}

.capabilities-list,
.pillars-list {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.capabilities-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.capabilities-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

.capabilities-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.capabilities-list li:last-child {
    border-bottom: none;
}

/* About Page */
.about-content {
    padding: 2rem 0 4rem;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 6rem;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.mission-vision {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background: var(--color-surface);
    padding: 4rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    margin-bottom: 4rem;
    text-align: center;
}

.mission-card h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.mission-card p {
    font-size: 1.25rem;
    color: var(--color-muted);
    line-height: 1.8;
}

.values-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -1px;
}

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

.value-item {
    padding: 2.5rem;
    background: var(--color-surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    text-align: center;
}

.value-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.value-item p {
    color: var(--color-muted);
    line-height: 1.7;
}

/* Founders Section */
.founders-section {
    padding: 6rem 0;
    background: var(--color-bg);
}

.founders-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -1px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-card {
    text-align: center;
}

.founder-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent);
    box-shadow: 0 4px 20px rgba(0, 113, 190, 0.2);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.founder-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}

/* Contact Page */
.contact-section {
    padding: 0 0 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 184, 0.1);
}

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

.contact-form button {
    width: fit-content;
}

.contact-info {
    position: sticky;
    top: 100px;
    height: fit-content;
    width: 80%;
}

.info-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

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

.info-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}

.info-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--color-accent);
}

.info-item p {
    color: var(--color-muted);
}

/* Responsive for additional pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .feature-detail h2 {
        font-size: 2rem;
    }

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

    .feature-visual {
        order: -1;
    }

    .feature-visual svg {
        max-width: 220px;
    }

    .pillar-items {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
        max-width: 100%;
        width: 100%;
    }
}

/* Feature Page Styles */

.feature-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 2rem;
    background: var(--color-bg);
    overflow: hidden;
}

.feature-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.back-link {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.back-link a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.back-link a:hover {
    color: var(--color-accent);
}

.feature-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.feature-hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.feature-subtext {
    font-size: 1.25rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.feature-section {
    padding: 4rem 0;
}

.feature-section.alt-bg {
    background: var(--color-surface);
}

.feature-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.feature-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

/* How It Works */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
        transform: none;
    }
    
    .step-connector::after {
        content: '↓';
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: -25px;
    }
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 113, 190, 0.12);
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.3;
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: -10px;
    color: var(--color-accent);
    font-size: 1.25rem;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capability-item {
    padding: 2rem;
    background: var(--color-surface-2);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
}

.feature-section.alt-bg .capability-item {
    background: var(--color-bg);
}

.capability-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 113, 190, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.capability-item h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.capability-item p {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Pillars Detail Grid */
.pillars-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-detail-item {
    padding: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-card);
}

.pillar-detail-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.pillar-detail-item p {
    color: var(--color-muted);
    line-height: 1.7;
}

/* Persona Cards */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.persona-card {
    padding: 2rem;
    background: var(--color-surface-2);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    text-align: center;
}

.persona-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.persona-card p {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.impact-stat {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.impact-item p {
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: var(--color-accent);
    padding: 5rem 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

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

.btn-cta-banner {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: var(--color-accent);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-banner:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive for feature pages */
@media (max-width: 968px) {
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }
    
    .step-connector::after {
        content: '↓';
        right: auto;
        left: -8px;
        top: auto;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .feature-hero h1 {
        font-size: 2.5rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .persona-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

