/* Bracket Website Styles */

/* CSS Variables */
:root {
    --color-primary: #0A84FF;
    --color-primary-dark: #0066CC;
    --color-secondary: #30D158;
    --color-background: #0a0a0f;
    --color-surface: #16161d;
    --color-surface-light: #1e1e28;
    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    --color-border: rgba(255, 255, 255, 0.1);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);

    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

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

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

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo-icon {
    font-family: var(--font-mono);
    color: var(--color-primary);
    font-size: 1.75rem;
}

.logo-img {
    height: 36px;
    width: 36px;
    border-radius: 8px;
}

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

.nav-menu a {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-surface-light);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-text-muted);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn .icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 132, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(10, 132, 255, 0.15);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(10, 132, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Hero Visual - Phone Mockup with Screenshot */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    background: linear-gradient(145deg, #2a2a35, #1a1a24);
    border-radius: 48px;
    padding: 14px;
    box-shadow:
        var(--shadow-lg),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-background);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

/* iPad Mockup */
.ipad-mockup {
    width: 580px;
    height: 420px;
    background: linear-gradient(145deg, #2a2a35, #1a1a24);
    border-radius: 20px;
    padding: 14px;
    box-shadow:
        var(--shadow-lg),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.ipad-camera {
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #1a1a24;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.ipad-screen {
    width: 100%;
    height: 100%;
    background: var(--color-background);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.ipad-screen .screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.ipad-mockup-vertical {
    width: 380px;
    height: 520px;
}

.ipad-mockup-vertical .ipad-camera {
    top: 7px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(0);
}

.ipad-mockup-sm {
    width: 400px;
    height: 290px;
    padding: 10px;
    border-radius: 16px;
}

.ipad-mockup-sm .ipad-camera {
    right: 5px;
    width: 6px;
    height: 6px;
}

.ipad-mockup-sm .ipad-screen {
    border-radius: 8px;
}

/* Screenshot image - hidden by default until real image is added */
.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Fallback placeholder shown when image fails to load */
.screenshot-img[src=""],
.screenshot-img:not([src]) {
    display: none;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-light) 100%);
    border: 2px dashed rgba(10, 132, 255, 0.3);
    border-radius: 36px;
    position: relative;
    z-index: 1;
}

.screenshot-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    opacity: 0.6;
}

.screenshot-placeholder span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.screenshot-placeholder .placeholder-hint {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.5;
    font-family: var(--font-mono);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--color-surface);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
}

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

.feature-card {
    background: var(--color-surface-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(10, 132, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Screenshots Carousel Section */
.screenshots {
    padding: 100px 0;
    overflow: hidden;
}

.screenshots-carousel {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
}

.screenshots-row-label {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    margin-top: 16px;
}

.screenshots-row-label:first-of-type {
    margin-top: 0;
}

.screenshots-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 48px;
}

.screenshots-row:last-child {
    margin-bottom: 0;
}

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

.phone-mockup-sm {
    width: 220px;
    height: 450px;
    padding: 10px;
    border-radius: 36px;
}

.phone-mockup-sm .phone-notch {
    top: 10px;
    width: 90px;
    height: 22px;
    border-radius: 0 0 14px 14px;
}

.phone-mockup-sm .phone-screen {
    border-radius: 28px;
}

.phone-mockup-sm .screenshot-placeholder {
    border-radius: 28px;
    gap: 8px;
}

.phone-mockup-light {
    background: linear-gradient(145deg, #d0d0d8, #b8b8c0);
}

.phone-mockup-light .phone-notch {
    background: #e8e8ec;
}

.phone-mockup-light .phone-screen {
    background: #f2f2f7;
}

.phone-mockup-sm .screenshot-placeholder svg {
    width: 36px;
    height: 36px;
}

.phone-mockup-sm .screenshot-placeholder span {
    font-size: 0.8rem;
}

.screenshot-label {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Security Section */
.security {
    padding: 100px 0;
    background: var(--color-surface);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.security-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.security-text .lead {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.security-features {
    list-style: none;
}

.security-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.security-features svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.security-features span {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

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

.security-card {
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 360px;
}

.security-icon {
    width: 80px;
    height: 80px;
    background: rgba(48, 209, 88, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.security-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-secondary);
}

.security-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.security-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.fingerprint {
    background: var(--color-surface);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.fingerprint code {
    color: var(--color-text-secondary);
}

/* Download Section */
.download {
    padding: 100px 0;
    text-align: center;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.download .lead {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.download-buttons {
    margin-bottom: 32px;
}

.download-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 32px;
}

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

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-surface-light);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
}

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

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

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 48px 0 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.content-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 32px 0 16px;
}

.content-wrapper p {
    margin-bottom: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 16px 0 24px 24px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.content-wrapper li {
    margin-bottom: 8px;
}

.content-wrapper code {
    font-family: var(--font-mono);
    background: var(--color-surface-light);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
}

/* Privacy Highlight */
.privacy-highlight {
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
    color: var(--color-text);
}

.privacy-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--color-border);
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

.support-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.support-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.support-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.support-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.support-links li {
    margin: 0;
}

.support-links a {
    display: block;
    padding: 8px 0;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
}

.support-links a:hover {
    color: var(--color-primary);
}

.support-links li:last-child a {
    border-bottom: none;
}

.support-main {
    min-width: 0;
}

.support-section {
    margin-bottom: 64px;
}

.support-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-border);
}

.support-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--color-primary);
}

/* FAQ */
.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question:hover svg {
    transform: rotate(180deg);
}

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

.faq-answer p,
.faq-answer ul {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Code Block */
.code-block {
    position: relative;
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin: 24px 0;
    overflow: hidden;
}

.code-block pre {
    padding: 20px;
    overflow-x: auto;
    margin: 0;
}

.code-block code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
}

.copy-button {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.copy-button:hover {
    background: var(--color-surface-light);
    color: var(--color-text);
}

.copy-button.copied {
    background: var(--color-secondary);
    color: white;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.contact-method {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.contact-method h3 {
    margin: 0 0 12px 0;
}

.contact-method p {
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.support-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 32px;
}

.support-note h4 {
    color: #ffc107;
    margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 280px;
        height: 570px;
    }

    .ipad-mockup {
        width: 480px;
        height: 348px;
    }

    .ipad-mockup-vertical {
        width: 320px;
        height: 438px;
    }

    .ipad-mockup-sm {
        width: 320px;
        height: 232px;
    }

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

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

    .security-visual {
        order: -1;
    }

    .screenshots-carousel {
        gap: 24px;
    }

    .screenshots-row {
        gap: 24px;
    }

    .phone-mockup-sm {
        width: 180px;
        height: 370px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-surface);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .section-header h2,
    .security-text h2,
    .download h2 {
        font-size: 2rem;
    }

    .screenshots-carousel {
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 24px 16px;
        margin: 0 -24px;
    }

    .screenshots-row {
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 24px 16px;
        margin: 0 -24px;
    }

    .screenshots-row .screenshot-card {
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .screenshot-card {
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .phone-mockup-sm {
        width: 200px;
        height: 410px;
    }

    .ipad-mockup {
        width: 100%;
        max-width: 480px;
        height: auto;
        aspect-ratio: 580 / 420;
    }

    .ipad-mockup-vertical {
        max-width: 280px;
        aspect-ratio: 380 / 520;
    }

    .ipad-mockup-sm {
        width: 300px;
        height: 218px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Page content mobile */
    .page-header h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 0;
    }

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

    .support-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }

    .support-card {
        margin-bottom: 0;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

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

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

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

    .btn {
        width: 100%;
    }

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

    .phone-mockup-sm {
        width: 170px;
        height: 348px;
    }

    .ipad-mockup-vertical {
        max-width: 240px;
        aspect-ratio: 380 / 520;
    }

    .ipad-mockup-sm {
        width: 260px;
        height: 189px;
    }
}
