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

/* Hide Sonner toast container from layout flow */
section[aria-label="Notifications alt+T"] {
    position: fixed !important;
    padding: 0 !important;
    margin: 0 !important;
}

:root {
    --dark-navy: #0F172A;
    --cyan-accent: #00BCD4;
    --orange-accent: #F97316;
    --electric-blue: #0EA5E9;
    --success-green: #10B981;
    --white: #FFFFFF;
    --light-gray: #F9FAFB;
    --dark-gray: #1E293B;
    --text-primary: #1F2937;
    --text-secondary: #94A3B8;
    --text-light: #E2E8F0;
    --border-color: #E5E7EB;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-navy);
    overflow-x: hidden;
}

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

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
    background: var(--dark-navy);
}

#navbar.scrolled {
    background: var(--dark-navy);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.nav-login {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    margin-right: 20px;
}

.nav-login:hover {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--cyan-accent);
    color: var(--dark-navy);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 188, 212, 0.5);
    background: #00D4E8;
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

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

.hero-headline {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 32px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.cyan-highlight {
    color: var(--cyan-accent);
}

.hero-subheadline {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Product Screenshot */
.hero-product-screenshot {
    margin-top: 80px;
    text-align: center;
    padding: 0 20px;
}

.browser-frame {
    max-width: 900px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 188, 212, 0.25),
                0 0 40px rgba(0, 188, 212, 0.15),
                0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 188, 212, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 188, 212, 0.35),
                0 0 50px rgba(0, 188, 212, 0.2),
                0 4px 25px rgba(0, 0, 0, 0.4);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #eab308;
}

.dot-green {
    background: #22c55e;
}

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 6px;
}

.product-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 12px 12px;
}

/* Fade In Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Styles - only apply to landing page sections */
.site-container section,
section:has(.site-container) {
    padding: 120px 0;
}

.section-title {
    font-size: 52px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 70px;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* Problem Section */
.section-problem {
    background: var(--dark-navy);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 80px;
    align-items: stretch;
}

.problem-card {
    background: var(--white);
    padding: 44px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
    border-color: var(--electric-blue);
}

.problem-card:nth-child(2) {
    border-color: rgba(249, 115, 22, 0.2);
}

.problem-card:nth-child(2):hover {
    border-color: var(--orange-accent);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.12);
}

.problem-number {
    display: inline-block;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00BCD4, #00D4E8);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.problem-card:nth-child(2) .problem-number {
    background: linear-gradient(135deg, var(--orange-accent), #FB923C);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.problem-card:nth-child(3) .problem-number {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark-navy);
    letter-spacing: -0.01em;
    min-height: 60px;
    line-height: 1.25;
    display: flex;
    align-items: flex-start;
}

.problem-card p {
    color: var(--text-primary);
    line-height: 1.6;
}

.founder-story {
    max-width: 1000px;
    margin: 0 auto;
}

.founder-label {
    display: inline-block;
    color: var(--orange-accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.founder-story-content {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: start;
    padding: 48px;
    background: var(--dark-gray);
    border-radius: 20px;
    border-left: 4px solid var(--orange-accent);
}

.founder-photo .photo-placeholder {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--cyan-accent), #00D4E8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-size: 48px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

.founder-photo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    border: 2px solid rgba(0, 188, 212, 0.3);
}

.founder-content blockquote {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.founder-info {
    margin-bottom: 16px;
    color: var(--white);
}

.link-arrow {
    color: var(--cyan-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    gap: 8px;
    text-decoration: underline;
    color: #00D4E8;
}

/* Team Section */
.section-team {
    background: var(--dark-navy);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.team-member {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--cyan-accent);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.2);
}

.member-photo .photo-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    font-weight: 900;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.team-member:nth-child(2) .member-photo .photo-placeholder {
    background: linear-gradient(135deg, var(--orange-accent), #FB923C);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.team-member:nth-child(3) .member-photo .photo-placeholder {
    background: linear-gradient(135deg, var(--navy-blue), var(--electric-blue));
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
    border: 3px solid rgba(0, 188, 212, 0.2);
}

.team-member:nth-child(2) .team-photo {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    border-color: rgba(249, 115, 22, 0.2);
}

.team-member:nth-child(3) .team-photo {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.2);
}

.team-member h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.member-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--cyan-accent);
    margin-bottom: 16px;
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--cyan-accent);
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.social-link:hover {
    background: var(--cyan-accent);
    color: var(--dark-navy);
}

.team-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
    margin-top: -30px;
    font-style: italic;
}

.team-subtext {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    font-style: italic;
}

/* How It Works Section */
.section-how-it-works {
    background: var(--dark-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, var(--cyan-accent) 0%, rgba(0, 188, 212, 0.3) 100%);
    z-index: 0;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    margin-bottom: 40px;
    align-items: start;
    position: relative;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 16px;
}

.step-detail {
    color: var(--text-secondary);
    font-size: 15px;
}

.step-connector {
    display: none;
}

/* Testimonial Section */
.testimonial-section {
    background: var(--dark-navy);
    padding: 80px 0;
    border-top: 1px solid rgba(45, 212, 191, 0.15);
    border-bottom: 1px solid rgba(45, 212, 191, 0.15);
}

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

.quote-mark {
    font-size: 80px;
    line-height: 1;
    color: #2DD4BF;
    font-family: Georgia, serif;
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
    margin-bottom: 32px;
    font-weight: 400;
}

.testimonial-attribution {
    font-size: 1rem;
    color: #2DD4BF;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Capabilities Section */
.section-capabilities {
    background: var(--dark-navy);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.capability-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    border-color: var(--electric-blue);
}

.capability-card:nth-child(2):hover {
    border-color: var(--orange-accent);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.15);
}

.capability-icon {
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    background: var(--cyan-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.capability-card:nth-child(2) .capability-icon {
    background: var(--orange-accent);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.capability-card:nth-child(3) .capability-icon {
    background: var(--cyan-accent);
}

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

.capability-icon svg rect {
    fill: none;
}

.capability-icon svg path,
.capability-icon svg circle {
    stroke: var(--white);
    stroke-width: 2.5;
}

.roi-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--orange-accent);
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.capability-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.capability-card p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.capability-result {
    color: var(--dark-navy);
    font-weight: 600;
    font-size: 15px;
}

/* Social Proof Section */
.section-social-proof {
    background: var(--dark-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-testimonial {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 48px;
    background: var(--dark-gray);
    border-radius: 20px;
    border-left: 4px solid var(--orange-accent);
    text-align: left;
}

.featured-testimonial blockquote {
    font-size: 28px;
    line-height: 1.6;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 16px;
}

.customer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 24px 32px;
    background: var(--light-gray);
    border-radius: 12px;
    min-width: 180px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.logo-item:hover {
    border-color: var(--electric-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.partner-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.partner-model {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.outcome-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--electric-blue);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1);
}

.outcome-card:nth-child(2) {
    border-color: var(--orange-accent);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
}

.outcome-card:nth-child(3) {
    border-color: var(--electric-blue);
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.2);
}

.outcome-card:nth-child(2):hover {
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.2);
}

.outcome-value {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--orange-accent);
    letter-spacing: -0.02em;
}

.outcome-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* FAQ Section */
.section-faq {
    background: var(--dark-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-gray);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--cyan-accent);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--cyan-accent);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--cyan-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Design Partners Section */
.section-design-partners {
    background: var(--dark-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.partner-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partner-info-centered {
    margin-bottom: 40px;
}

.partner-info-centered h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 40px;
}

.partner-info-centered h3:first-child {
    margin-top: 0;
}

.partner-info-centered .checklist,
.partner-info-centered .benefits-list {
    text-align: left;
    display: inline-block;
    margin-bottom: 40px;
}

.partner-cta-centered {
    margin-top: 40px;
}

.partner-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 40px;
}

.partner-info h3:first-child {
    margin-top: 0;
}

.checklist {
    list-style: none;
    margin-bottom: 40px;
}

.checklist li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan-accent);
    font-weight: 800;
    font-size: 18px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.waitlist-note {
    background: var(--dark-gray);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--cyan-accent);
    color: var(--text-light);
    line-height: 1.6;
}

.waitlist-note strong {
    color: var(--white);
}

.partner-form-container {
    background: var(--dark-gray);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-form .form-group {
    margin-bottom: 24px;
}

.partner-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--dark-navy);
    color: var(--white);
}

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

.partner-form textarea {
    resize: vertical;
    min-height: 100px;
}

.partner-form input::placeholder,
.partner-form textarea::placeholder {
    color: var(--text-secondary);
}

.partner-form button[type="submit"] {
    margin-top: 16px;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--dark-navy);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
        gap: 20px;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-product-screenshot {
        margin-top: 50px;
        padding: 0 10px;
    }

    .browser-frame {
        border-radius: 8px;
        box-shadow: 0 15px 40px rgba(0, 188, 212, 0.2),
                    0 0 30px rgba(0, 188, 212, 0.1),
                    0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .product-screenshot-img {
        border-radius: 0 0 8px 8px;
    }

    .browser-header {
        padding: 12px 16px;
    }

    .browser-url {
        font-size: 12px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 32px;
    }

    .problem-cards {
        flex-direction: column;
    }

    .founder-story-content {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center;
    }

    .founder-photo .photo-placeholder {
        margin: 0 auto 24px;
    }

    .team-grid {
        flex-direction: column;
    }

    .testimonial-section {
        padding: 60px 0;
    }

    .quote-mark {
        font-size: 60px;
        margin-bottom: 16px;
    }

    .testimonial-quote {
        font-size: 1.25rem;
        padding: 0 20px;
    }

    .testimonial-attribution {
        font-size: 0.9rem;
    }

    .steps-container {
        padding: 0 20px;
    }

    .steps-container::before {
        display: none;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .featured-testimonial blockquote {
        font-size: 22px;
    }

    .customer-logos {
        gap: 24px;
    }

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

    .partner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-content-centered {
        padding: 0 20px;
    }

    .partner-form-container {
        padding: 32px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Tablet responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .site-container {
        padding: 0 40px;
    }

    .hero-headline {
        font-size: 44px;
    }

    .section-title {
        font-size: 38px;
    }

    .hero-product-screenshot {
        margin-top: 60px;
    }

    .browser-frame {
        max-width: 810px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Print styles */
@media print {
    #navbar,
    .hero-visual,
    .section-cta,
    .footer-social {
        display: none;
    }
}
