/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2a99a2;
    --primary-dark: #1e7a82;
    --primary-light: #3ab5bf;
    --primary-50: #edf8f9;
    --primary-100: #d0eef0;
    --primary-200: #a1dde1;
    --primary-900: #0d3d40;

    --gray-50: #f8fafb;
    --gray-100: #f1f4f6;
    --gray-200: #e2e7eb;
    --gray-300: #c9d1d8;
    --gray-400: #9ba5b0;
    --gray-500: #6b7685;
    --gray-600: #4a5568;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gray-900);
}

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

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

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}

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

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    padding: 4px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(42, 153, 162, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(42, 153, 162, 0.4);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ===== APP BADGES ===== */
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gray-900);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.app-badge:hover {
    background: var(--gray-700);
    transform: translateY(-1px);
}

.app-badge-light {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.app-badge-light:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== STORE BADGES ===== */
.store-badge {
    height: 40px;
    width: auto;
    display: block;
}

.store-badge-google {
    height: 59px;
    margin: -10px 0;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 50%, #f0f7ff 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: -100px;
    left: -100px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-dark);
    top: 50%;
    left: 40%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-100);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-apps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.hero-apps-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-app-buttons {
    display: flex;
    gap: 8px;
}

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

.hero-screenshot-wrapper {
    width: 100%;
    max-width: 560px;
    position: relative;
    min-width: 0;
}

/* ===== SCREENSHOT PLACEHOLDERS ===== */
.screenshot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    text-align: center;
}

.screenshot-placeholder svg {
    opacity: 0.5;
}

.screenshot-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

.screenshot-placeholder small {
    font-size: 0.75rem;
    opacity: 0.7;
}

.screenshot-hero {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.screenshot-large {
    aspect-ratio: 16 / 9;
}

.screenshot-phone {
    aspect-ratio: 9 / 19;
    border: none;
    border-radius: 0;
    background: var(--gray-100);
}

/* ===== STATS BAR ===== */
.stats-bar {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

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

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary-100);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-section {
    background: var(--gray-50);
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-card > p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots-section {
    background: var(--white);
}

.screenshots-showcase {
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
}

.screenshot-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-tab {
    padding: 10px 24px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.screenshot-tab:hover {
    color: var(--gray-700);
}

.screenshot-tab.active {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: var(--shadow-sm);
}

.screenshot-browser-frame {
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 12px 12px 12px;
    box-shadow: var(--shadow-xl);
}

.browser-dots {
    display: flex;
    gap: 6px;
    padding: 0 4px 12px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-600);
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:last-child { background: #28c840; }

.screenshot-display .screenshot-placeholder {
    border-radius: 0 0 8px 8px;
    border-color: var(--gray-600);
    background: var(--gray-700);
    color: var(--gray-400);
}

.screenshot-phone-row {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 3vw, 24px);
    margin-top: 48px;
}

.screenshot-phone-frame {
    width: clamp(120px, 20vw, 180px);
    background: var(--gray-800);
    border-radius: clamp(20px, 3vw, 28px);
    padding: 12px 8px 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    flex-shrink: 1;
    min-width: 0;
}

.phone-notch {
    width: 60px;
    height: 6px;
    background: var(--gray-700);
    border-radius: 4px;
    margin: 0 auto 8px;
}

.screenshot-phone-frame .screenshot-placeholder {
    border-radius: 20px;
    border-color: var(--gray-600);
    background: var(--gray-700);
    color: var(--gray-400);
}

/* ===== BENEFITS ===== */
.benefits-section {
    background: var(--gray-50);
}

.benefits-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.benefits-column {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.benefits-column-header {
    padding: 32px 32px 24px;
    text-align: center;
}

.benefits-organizers .benefits-column-header {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
}

.benefits-members .benefits-column-header {
    background: linear-gradient(135deg, #fef3e6 0%, #fde9d0 100%);
}

.benefits-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.benefits-organizers .benefits-icon {
    background: var(--primary);
    color: var(--white);
}

.benefits-members .benefits-icon {
    background: #e8850e;
    color: var(--white);
}

.benefits-column-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.benefits-column-header p {
    font-size: 0.92rem;
    color: var(--gray-500);
}

.benefits-list {
    padding: 8px 24px 28px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    padding: 16px 8px;
    border-bottom: 1px solid var(--gray-100);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary);
    margin-top: 2px;
}

.benefit-check-alt {
    background: #fef3e6;
    color: #e8850e;
}

.benefit-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.step-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    max-width: 280px;
    flex: 1;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-connector {
    color: var(--gray-300);
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 96px 0;
    background: var(--white);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -200px;
    right: -100px;
}

.cta-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -150px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    margin-bottom: 24px;
}

.cta-apps {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 12px;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    margin-top: 12px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--gray-400);
    padding: 4px 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 120px 0 80px;
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-page p,
.legal-page li {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-page li {
    margin-bottom: 6px;
}

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

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

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: var(--gray-400) !important;
    font-size: 0.85rem !important;
}

/* ===== ANIMATIONS ===== */
.animate-target {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.15s; }
.feature-card:nth-child(5) { transition-delay: 0.25s; }
.feature-card:nth-child(6) { transition-delay: 0.35s; }

.stat:nth-child(2) { transition-delay: 0.1s; }
.stat:nth-child(3) { transition-delay: 0.2s; }
.stat:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.6rem;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-mobile-toggle {
        display: block;
    }

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

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

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

    .hero-apps {
        align-items: center;
    }

    .hero-visual {
        order: -1;
    }

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

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

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

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

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .screenshot-phone-row {
        gap: 12px;
        flex-wrap: nowrap;
    }

    .screenshot-tabs {
        flex-wrap: wrap;
        border-radius: var(--radius-md);
    }

    .screenshot-browser-frame {
        padding: 8px 8px 8px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

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

    .cta-apps {
        flex-direction: column;
        align-items: center;
    }
}

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .screenshot-phone-row {
        flex-wrap: nowrap;
    }

    .screenshot-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .section {
        padding: 64px 0;
    }
}
