/* === NEW STYLES FOR PROFITABILITY CALCULATOR === */
.calculator-section {
    background-color: var(--light-bg);
    padding: 6rem 0;
}
.calculator-wrapper {
    max-width: 900px;
    margin: 2rem auto 0;
    background: #ffffff;
    padding: 2rem 3rem 3rem 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.07);
}
.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.form-group-calc {
    display: flex;
    flex-direction: column;
}
.form-group-calc label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.form-group-calc .value-wrapper {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.form-group-calc .value-wrapper span:last-child {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-500);
}
.form-group-calc input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: background 0.2s ease;
}
.form-group-calc input[type="range"]:hover {
    background: #cbd5e1;
}
.form-group-calc input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-purple);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}
.form-group-calc input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.1);
}
.form-group-calc input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--primary-purple);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.calculator-outputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}
.output-box h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}
.output-box p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}
.output-box.highlight p {
    color: var(--accent-green);
}


/* === NEW STYLES FOR INVESTOR BUTTONS === */
.pitch-deck-download {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.pitch-deck-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    padding: 0.75rem 0.5rem; /* Adjusted padding */
}
.pitch-deck-link:hover {
    color: white;
}
.btn-investor {
    color: white;
    background-color: var(--primary-purple);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    border: 1px solid var(--primary-purple);
}
.btn-investor:hover {
    background-color: #9375ea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}

/* === ORIGINAL STYLES (WITH ONE ADDITION FOR MOBILE) === */
:root {
    --primary-blue: #2563eb;
    --primary-purple: #a78bfa;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #f1f5f9;
    --border-color: #e2e8f0;
    --gray-600: #475569;
    --gray-500: #64748b;
    --accent-green: #10b981;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #ffffff;
}
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.6) 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') center/cover fixed;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}
.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}
.hero-logo {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem; 
}
.footer-logo {
    width: 50px;
    height: auto;
}
.success-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2rem;
    letter-spacing: 0.025em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}
.hero-highlight {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-catchphrase {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}
.wishbox-container {
    margin: 2rem 0;
    position: relative;
}
.wishbox {
    background: rgba(15, 23, 42, 0.5); 
    border-radius: 16px;
    padding: 1.5rem 2rem;
    max-width: 700px; 
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px); 
}
.wishbox-text {
    color: var(--text-light); 
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 0.75rem;
    font-family: 'SF Mono', 'Fira Code', 'Menlo', monospace; 
}
.typewriter-line {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem; /* Reserves space for two lines. 1.25rem * 1.6 * 2 = 4rem */
}
.wish-rotating {
    color: var(--primary-purple);
    font-weight: 600;
    text-align: left;
    position: relative;
    min-height: 1.5rem; 
}
.cursor {
    display: inline-block;
    width: 10px; 
    height: 1.5rem;
    background: var(--primary-purple);
    animation: blink 1s infinite;
    margin-left: 4px;
    border-radius: 1px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.hero-summary {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 1.5rem auto 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-summary strong {
    color: var(--primary-purple);
    font-weight: 600;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.cta-buttons .btn {
    min-width: 280px;
    justify-content: center;
}
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}
.btn-primary {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}
section {
    padding: 6rem 0;
}
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.features {
    background-color: #ffffff;
}
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}
.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 41, 59, 0.1);
    border-color: #cbd5e1;
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 400;
}
.story-section {
    background: var(--light-bg);
}
.story-content {
    position: relative;
    z-index: 1;
}
.story-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}
.story-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}
.story-intro p {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}
.founder-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 41, 59, 0.1);
}
.founder-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.founder-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-purple);
    object-fit: cover;
}
.founder-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.founder-role {
    color: var(--primary-purple);
    font-size: 0.95rem;
    font-weight: 500;
}
.founder-bio {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.founder-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.founder-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
    font-size: 0.95rem;
}
.founder-highlights li::before {
    content: '→';
    color: var(--primary-purple);
    font-weight: 700;
    flex-shrink: 0;
}
.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-purple);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-top: 1rem;
}
.founder-linkedin:hover {
    background: #9375ea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}
.comparison {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 50% 0, rgba(15, 23, 42, 0.05), transparent 40%);
}
.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-top: 3rem;
    border: 1px solid var(--border-color);
}
.comparison-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.5rem 2rem;
    background: var(--dark-bg);
    color: white;
    font-weight: 600;
}
.comparison-table-header div { text-align: center; }
.comparison-table-header div:first-child { text-align: left; }
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border-color);
}
.comparison-row:last-child { border-bottom: none; }
.feature-name { font-weight: 500; color: var(--text-dark); }
.check, .cross { text-align: center; font-size: 1.25rem; font-weight: 600; }
.check {  color: #10b981; }
.cross {  color: #ef4444; }
.waitlist-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}
.waitlist-content { max-width: 600px; margin: 0 auto; }
.waitlist-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.waitlist-content p { font-size: 1.125rem; margin-bottom: 2.5rem; opacity: 0.95; }
.waitlist-form { display: flex; flex-direction: column; gap: 1rem; max-width: 450px; margin: 0 auto; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.form-group label { font-weight: 500; font-size: 0.95rem; }
.form-group input,
.form-group select { padding: 1rem; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 12px; font-size: 1rem; background: rgba(255, 255, 255, 0.1); color: white; font-family: inherit; backdrop-filter: blur(10px); }
.form-group input::placeholder { color: rgba(255, 255, 255, 0.6); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-bg); color: white; }
.submit-btn { padding: 1rem 2rem; background: white; color: var(--primary-blue); border: none; border-radius: 12px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.2s ease; font-family: inherit; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-message { padding: 1rem; border-radius: 12px; font-weight: 500; margin-top: 1rem; }
.form-message.success { background: rgba(16, 185, 129, 0.2); border: 1px solid rgba(16, 185, 129, 0.4); }
.form-message.error { background: rgba(239, 68, 68, 0.2); border: 1px solid rgba(239, 68, 68, 0.4); }
.vision { background: var(--dark-bg); color: white; }
.vision .section-title { color: white; }
.vision .section-subtitle { color: #cbd5e1; max-width: 800px; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.stats-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.stats-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}
.stats-item p {
    color: #cbd5e1;
    font-size: 1rem;
}
.source-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 0.8rem;
}
.funding-card { background: transparent; border: none; backdrop-filter: none; padding: 2rem 0; max-width: 800px; margin: 3rem auto 0; }
.funding-amount { font-size: 3.5rem; font-weight: 700; background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1rem; letter-spacing: -0.025em; }
.funding-card h3 { font-size: 1.75rem; font-weight: 600; margin-bottom: 1.5rem; }
.use-of-funds { text-align: left; max-width: 600px; margin: 0 auto 2.5rem; color: #cbd5e1; list-style-type: none; padding-left: 0;}
.use-of-funds li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.use-of-funds li::before { content: '✓'; color: var(--primary-purple); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.contact-section {
    background: var(--light-bg);
    padding: 6rem 0;
}
.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}
.contact-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}
.contact-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}
.contact-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-purple);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 180px;
}
.contact-link:hover {
    background: #9375ea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}
.footer { background: var(--dark-bg); color: white; padding: 3rem 0; text-align: center; }
.footer-content { display: flex; justify-content: center; align-items: center; gap: 2rem; }
.video-embed-container {
    max-width: 800px;
    width: 100%;
    margin: 2.5rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.vimeo-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.unmute-button {
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}
.unmute-button:hover {
    background: rgba(15, 23, 42, 0.8);
    transform: scale(1.05);
}
.unmute-button svg { width: 24px; height: 24px; color: white; }
.video-disclaimer {
    text-align: center;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -.3rem !important;
    padding: 0 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}
.demo-disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1.5rem auto 0;
    max-width: 90%;
    text-align: left;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.demo-disclaimer svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary-purple);
}
.demo-disclaimer a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}
.demo-disclaimer a:hover {
    color: var(--primary-purple);
}
.demo-disclaimer em {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .calculator-wrapper {
        padding: 1.5rem;
    }
    .calculator-outputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .output-box {
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    .output-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero {  padding: 1rem 0; }
    .wishbox { padding: 1.25rem 1.5rem; max-width: 90%; }
    .wishbox-text { font-size: 1rem; flex-direction: column; text-align: center; gap: 0.5rem; }
    
    .typewriter-line {
        min-height: 3.2rem; /* Reserves space for two lines, based on 1rem font-size and 1.6 line-height */
    }

    .demo-disclaimer {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    .mobile-break {
        display: block;
    }
    
    .comparison-table { box-shadow: none; border: none; background: none; }
    .comparison-table-header {  display: none; }
    .comparison-row { display: block; background: white; border: 1px solid var(--border-color); box-shadow: 0 4px 12px rgba(0,0,0,0.05); border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; }
    .comparison-row .feature-name { font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-color); }
    .comparison-row div:not(:first-child) { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; }
    .comparison-row div:not(:first-child)::before { font-weight: 500; color: var(--gray-500); }
    
    .comparison-row div:nth-child(2)::before { content: 'AppWish'; }
    .comparison-row div:nth-child(3)::before { content: 'Standard AI Assistants'; }
    
    .features-grid { grid-template-columns: 1fr; }
    .founders-grid { grid-template-columns: 1fr; }
    .contact-links {
        flex-direction: column;
        width: 100%;
    }
    .contact-link {
        width: 100%;
    }
}