/* Minimal Bold Design - TUS AI */

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

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --border: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-menu a {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-btn {
    background: var(--black);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 32px 80px;
}

/* App Preview Section */
.app-preview-section {
    background: var(--white);
    padding: 120px 32px;
}

.app-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-preview-text {
    max-width: 500px;
}

.app-preview-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 40px;
}

.store-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-block;
    transition: transform 0.2s;
}

.store-badge:hover {
    transform: translateY(-2px);
}

.store-badge.coming-soon {
    cursor: default;
    opacity: 0.8;
}

.app-preview-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.app-preview-note svg {
    flex-shrink: 0;
    color: var(--gray);
}

.app-preview-note span {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.app-preview-mockups {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    display: flex;
    gap: 24px;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--black);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.phone-mockup.secondary {
    width: 240px;
    height: 480px;
    margin-top: 40px;
    opacity: 0.7;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
}

.mockup-placeholder svg {
    opacity: 0.3;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.hero-container {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #ffd700;
    z-index: -1;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 64px;
}

.btn-primary {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    border: 2px solid var(--black);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-primary.large {
    padding: 20px 48px;
    font-size: 18px;
}

.hero-proof {
    display: flex;
    justify-content: center;
    gap: 64px;
}

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

.proof-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.proof-text {
    font-size: 14px;
    color: var(--gray);
}

.proof-divider {
    width: 1px;
    background: var(--border);
}

/* Sections */
section {
    padding: 120px 32px;
}

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

.section-label {
    display: inline-block;
    background: var(--light-gray);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 64px;
}

/* AI Section */
.ai-section {
    background: var(--light-gray);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.ai-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
}

.ai-icon {
    width: 64px;
    height: 64px;
    background: var(--black);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ai-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.ai-card p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.ai-stat {
    display: inline-block;
    background: var(--light-gray);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.ai-highlight {
    background: var(--black);
    color: var(--white);
    border-radius: 16px;
    padding: 64px;
    text-align: center;
}

.highlight-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.ai-highlight h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.highlight-number {
    color: #ffd700;
}

.ai-highlight p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing */
.pricing-section {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--black);
}

.pricing-card.featured {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: #ffd700;
    color: var(--black);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--gray);
    font-size: 15px;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
    margin-bottom: 24px;
}

.price {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.period {
    font-size: 18px;
    color: var(--gray);
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-save {
    background: #ffd700;
    color: var(--black);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-btn {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.pricing-btn:hover {
    background: var(--black);
    color: var(--white);
}

.pricing-btn.primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.pricing-btn.primary:hover {
    background: var(--light-gray);
}

.pricing-note {
    text-align: center;
    color: var(--gray);
    font-size: 15px;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 64px;
}

/* Comparison Table */
.comparison-section {
    margin-top: 64px;
}

.comparison-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--light-gray);
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
}

.comparison-table .feature-column {
    text-align: left;
    min-width: 200px;
}

.comparison-table .feature-name {
    text-align: left;
    font-weight: 500;
    color: var(--black);
}

.comparison-table .featured-column {
    background: var(--black);
    color: var(--white);
}

.comparison-table .featured-cell {
    background: var(--light-gray);
}

.comparison-table .check {
    color: #22c55e;
    font-size: 20px;
    font-weight: 700;
}

.comparison-table .cross {
    color: var(--gray);
    font-size: 24px;
    opacity: 0.3;
}

.comparison-table .price-row {
    background: var(--light-gray);
    font-weight: 700;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Trust Badges */
.trust-section {
    background: var(--white);
    padding: 80px 32px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 48px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.trust-badge:hover {
    border-color: var(--black);
    transform: translateY(-4px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--black);
}

.trust-text {
    width: 100%;
}

.trust-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.trust-desc {
    font-size: 14px;
    color: var(--gray);
}

/* Stats */
.stats-section {
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* FAQ */
.faq-section {
    background: var(--white);
    padding: 120px 32px;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.faq-item {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active {
    border-color: var(--black);
    background: var(--light-gray);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

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

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

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

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

.faq-answer p {
    padding: 0 32px 24px 32px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

/* Newsletter */
.newsletter-section {
    background: var(--light-gray);
    padding: 100px 32px;
}

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

.newsletter-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 32px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    font-family: inherit;
    transition: all 0.2s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--black);
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #333;
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.newsletter-privacy svg {
    flex-shrink: 0;
}

/* CTA */
.cta-section {
    background: var(--black);
    color: var(--white);
    text-align: center;
}

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

.cta-section h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--light-gray);
}

.cta-note {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* Footer */
.footer {
    background: var(--light-gray);
    padding: 80px 32px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .brand {
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--black);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.footer-badge svg {
    flex-shrink: 0;
    color: var(--gray);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-col a.coming-soon-link {
    position: relative;
    opacity: 0.6;
}

.footer-col a.coming-soon-link::after {
    content: '(Yakında)';
    margin-left: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Payment Logos */
.payment-logos {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.payment-logos-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-band {
    max-width: 500px;
    width: 100%;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.payment-band:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }

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

    .ai-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-proof {
        flex-direction: column;
        gap: 32px;
    }

    .proof-divider {
        display: none;
    }

    /* App Preview */
    .app-preview-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .app-preview-text {
        max-width: 100%;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .phone-mockup.secondary {
        width: 200px;
        height: 400px;
    }

    /* Trust Badges */
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-col {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 24px 32px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .nav-btn {
        text-align: center;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-title {
        font-size: 48px;
    }

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

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

    .cta-section h2 {
        font-size: 40px;
    }

    section {
        padding: 80px 24px;
    }

    .ai-highlight {
        padding: 40px 24px;
    }

    .ai-highlight h3 {
        font-size: 28px;
    }

    .pricing-card,
    .ai-card,
    .stat-card {
        padding: 32px;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .payment-logos {
        padding: 24px 32px;
        margin-top: 32px;
    }

    .payment-band {
        max-width: 100%;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 24px 20px 24px;
        font-size: 15px;
    }

    /* App Preview */
    .app-preview-section {
        padding: 80px 24px;
    }

    .app-preview-content {
        gap: 40px;
    }

    .app-preview-desc {
        font-size: 16px;
    }

    .store-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .store-badge {
        width: 100%;
        max-width: 200px;
    }

    .mockup-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .phone-mockup.secondary {
        width: 180px;
        height: 360px;
        margin-top: 0;
    }

    /* Comparison Table */
    .comparison-title {
        font-size: 24px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 14px;
    }

    .comparison-table .feature-column {
        min-width: 120px;
    }

    /* Trust Badges */
    .trust-section {
        padding: 60px 24px;
    }

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

    .trust-title {
        font-size: 24px;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 80px 24px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-desc {
        font-size: 16px;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

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

    .cta-section h2 {
        font-size: 32px;
    }

    .proof-number {
        font-size: 36px;
    }

    .stat-number {
        font-size: 36px;
    }

    .price {
        font-size: 48px;
    }
}

/* Utilities */
::selection {
    background: #ffd700;
    color: var(--black);
}
