/* CSS Variables based on user palette */
:root {
    --primary: #0641C8;
    /* Sea green - Main CTA */
    --primary-hover: #0534A0;
    /* Darker shade for hover */
    --secondary: #1a222b;
    --secondary-hover: #393c40;
    /* Dark teal - Headings/Text */
    --background: whitesmoke;
    /* Light peach - Main BG */
    --background-secondary: white;
    /* Soft Fawn */
    --background-tertiary: rgba(6, 65, 200, 0.05);
    /* Very subtle green tint */
    --border: #D3D3D3;
    /* Soft border */
    --text-primary: #1a222b;
    /* Dark navy */
    --text-secondary: #5b646f;
    --white-smoke: whitesmoke;
    /* Gray */
    --white: #ffffff;

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-card: 0 20px 40px -10px rgba(6, 65, 200, 0.1);

    /* Fonts */
    --font-heading: 'Goudy Bookletter 1911', serif;
    --font-subheading: 'Space Grotesk', sans-serif;
    --font-body: 'Work Sans', sans-serif;

    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 8rem;
    /* 128px */
}

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

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

h1,
h2 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.1;
    font-weight: 400;
    /* Goudy usually looks better less bold */
}

h3,
h4,
h5,
h6 {
    font-family: var(--font-subheading);
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
    margin-bottom: var(--spacing-sm);
}

h3 {
    margin-bottom: var(--spacing-sm);
}

p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-subheading);
    /* Labels use Space Grotesk */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white-smoke);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white-smoke);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    box-shadow: 0 4px 12px rgba(6, 65, 200, 0.3);
}

.btn.small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Navigation */
.navbar {
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-links a:not(.btn) {
    font-family: var(--font-subheading);
    font-weight: 500;
    color: var(--text-primary);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-hover);
}

/* Hero Section */
.hero {
    padding: var(--spacing-lg) 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    background: var(--secondary);
    border-radius: 40px;
    padding: 10px;
    /* Center the shadow with equal spread/blur on all sides (top, bottom, left, right) */
    box-shadow: 0 0 60px rgba(26, 34, 43, 0.4);
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.hero-image:hover .phone-mockup {
    transform: rotate(0deg) scale(1.02);
}

.feature-mockup {
    width: 280px;
    flex-shrink: 0;
}

.screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.screen .feature-image {
    width: 100%;
    height: 100%;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    font-family: var(--font-subheading);
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.app-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.notch {
    width: 80px;
    height: 24px;
    background: var(--secondary);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Removed .app-content, .app-card, .screen-header styles as they are replaced by video */

.home-indicator {
    width: 120px;
    height: 4px;
    background: #000;
    border-radius: 2px;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--background) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.feature-image {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: var(--radius-md);
    margin-top: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

/* Footer */
footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background-color: var(--primary);
    color: var(--white-smoke);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    margin: 0;
    color: var(--white);
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--white-smoke);
    text-decoration: none;
    font-family: var(--font-subheading);
    font-weight: 500;
}

.footer-social img {
    height: 24px;
    width: 24px;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    color: var(--white);
}

.footer-social a:hover img {
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    font-size: 0.75rem;

    p {
        color: var(--white);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .navbar {
        padding: var(--spacing-sm) 0;
        position: relative;
    }

    .nav-links {
        display: none;
        /* Simple hiding for mobile, ideally would be a burger menu */
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Legal Pages (Privacy, Terms) */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: var(--spacing-xl);
}

.legal-content h1 {
    margin-bottom: var(--spacing-md);
}

.legal-content h2 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 1.75rem;
}

.legal-content h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.legal-content p {
    font-family: var(--font-body);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.legal-content ul {
    list-style: disc;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.legal-content a:not(.btn):not(.back-link) {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--primary);
}

.legal-content a:not(.btn):not(.back-link):hover {
    color: var(--primary-hover);
}

.thanks-note {
    background-color: var(--background-tertiary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.thanks-note p {
    margin-bottom: 0;
    font-style: italic;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* FAQ Page Styles */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-header h1 {
    margin-bottom: var(--spacing-sm);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.faq-item summary {
    padding: var(--spacing-md);
    cursor: pointer;
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--secondary);
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--spacing-sm);
    background-color: rgba(6, 65, 200, 0.05);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-answer p {
    padding: 0 0 var(--spacing-sm);
    margin-bottom: 0;
}

.faq-answer a {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--primary);
}

.faq-answer a:hover {
    color: var(--primary-hover);
}

.faq-benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.faq-benefits-list li {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--background-tertiary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
    transition: transform 0.2s ease;
    position: relative;
}

.faq-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.faq-benefits-list li:hover {
    transform: translateX(5px);
    background: rgba(6, 65, 200, 0.08);
}

.benefit-title {
    font-family: var(--font-subheading);
    font-weight: 700;
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: block;
}

.benefit-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- NEW PREMIUM LANDING PAGE STYLES --- */

/* Animations */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(6, 65, 200, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(6, 65, 200, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(6, 65, 200, 0.2);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glow-effect {
    animation: glow 3s infinite;
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

.float-anim-delay {
    animation: float 6s ease-in-out infinite 3s;
}

/* Updated Buttons */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.trial-note {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.stars {
    color: #FACC15;
    letter-spacing: 2px;
}

/* Social Proof Bar */
.social-proof-bar {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--background-secondary);
    text-align: center;
}

.social-proof-bar p {
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Problem Solution */
.problem-solution {
    padding: var(--spacing-lg) 0;
    background: var(--background);
}

.problem-solution .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: var(--background-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    max-width: 800px;
    margin: 0 auto;
    border-top: 4px solid var(--primary);

    h3 {
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
}

/* How it works */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--background-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
    margin-top: 3rem;
}

.step-image-container {
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.step-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.step-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0 2rem;
}

.step-card {
    background: var(--white);
    padding: 3rem 1.5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);

    p {
        margin-bottom: 0;
    }

    ul {
        list-style-type: disc;
        padding-left: 1.25rem;
        display: inline-block;
        text-align: left;
        color: var(--secondary);
        line-height: 1.5;
        margin: 0;

        li {
            margin-bottom: 0.5rem;
        }

        li:last-child {
            margin-bottom: 0;
        }
    }
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--white-smoke);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: bold;
    z-index: 2;
}

/* Expanded Features */
.features-expanded {
    padding: var(--spacing-xl) 0;
    /* background: linear-gradient(180deg, var(--background) 0%, rgba(255, 255, 255, 0.5) 100%); */
}

.feature-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border);
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.double-mockup {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.double-mockup .feature-mockup {
    width: 240px;
}

.progress-carousel {
    position: relative;
    width: 100%;
}

.progress-carousel .feature-image {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.progress-carousel .feature-image.active {
    opacity: 1;
    position: relative;
}

.feature-list {
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.feature-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--secondary);
    font-weight: 700;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Utilities */
.final-cta {
    color: var(--white-smoke);
    background: linear-gradient(180deg, var(--white-smoke) 0%, var(--background-tertiary) 100%);
    background-color: var(--primary);
}

/* Mobile Adjustments */
@media (max-width: 900px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-list {
        text-align: left;
        display: inline-block;
    }

    .solution-card,
    .pricing-card {
        padding: var(--spacing-md);
    }

    .features-expanded {
        padding: var(--spacing-lg) 0;
    }
}

/* ===== Platform Choice Modal ===== */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.platform-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--background);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    animation: modalFadeIn 0.2s ease;
}

.platform-modal-overlay.open {
    display: flex;
}

.platform-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 64px -12px rgba(26, 34, 43, 0.25);
    width: 95%;
    max-width: 600px;
    padding: var(--spacing-md);
    animation: modalSlideUp 0.25s ease;
}

.platform-modal-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin-bottom: var(--spacing-md);
}

.platform-modal-header h3 {
    font-family: var(--font-subheading);
    font-size: clamp(1.125rem, 4vw, 1.25rem);
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .platform-modal {
        padding: var(--spacing-sm);
        width: calc(100% - 20px);
        margin: 0 10px;
    }

    .platform-modal-options {
        flex-direction: column;
        gap: 1rem;
    }
}

.platform-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-modal-close:hover {
    background: var(--background-secondary);
    color: var(--primary);
}

.platform-modal-options {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.platform-modal-desktop {
    display: flex;
    gap: var(--spacing-sm);
    align-items: stretch;
}

.platform-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-md);
    background: var(--background-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-column:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background-color: var(--white-smoke);
    box-shadow: var(--shadow-sm);
}

.platform-column p {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary);
    font-weight: 500;
    line-height: 1.4;
}

.qr-code {
    width: 140px;
    height: 140px;
    margin-bottom: var(--spacing-xs);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.android-beta .btn {
    width: 100%;
}

.store-badge {
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border: 1px solid #a6a6a6;
    width: fit-content;
    min-width: 160px;
}

.store-badge:hover {
    transform: scale(1.02);
    color: #fff;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
}

.store-badge-sub {
    font-size: 10px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: 0.5px;
}

.store-badge-main {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    white-space: nowrap;
}

.faq-container {
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
}

/* Individual Post Styles */
.post-header {
    margin-bottom: var(--spacing-lg);
}

.post-header .back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-subheading);
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.post-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.post-meta {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-subheading);
}

.post-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: var(--spacing-md) 0;
    box-shadow: var(--shadow-card);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
}

.post-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-family: var(--font-subheading);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-content {
    font-family: var(--font-body);
    line-height: 1.8;
}

.post-content p {
    margin-bottom: var(--spacing-md);
}

.post-content ul {
    list-style: disc;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.post-content li {
    margin-bottom: var(--spacing-xs);
}

.post-footer {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--white-smoke);
    text-align: center;
}

.post-footer h3 {
    margin-bottom: var(--spacing-xs);
}

.post-footer p {
    margin-bottom: var(--spacing-md);
}

.post-footer .btn {
    margin-top: var(--spacing-sm);
}

@media (min-width: 1800px) {
    .hero {
        padding: var(--spacing-xl) 0;
    }

    .hero-image .phone-mockup {
        width: 400px;
        border-radius: 54px;
        margin-top: 40px;
    }

    .hero-image .screen {
        border-radius: 44px;
    }
}