/* ==========================================================================
   VERVA LANDING PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
    /* Colors - crisp whites with purple/pink tech accents */
    --color-bg-primary: #faf8fc;
    --color-bg-secondary: #f5f0f9;
    --color-bg-tertiary: #ebe4f0;
    --color-bg-card: #ffffff;
    --color-bg-nav: rgba(250, 248, 252, 0.92);

    --color-text-primary: #1e1b2e;
    --color-text-secondary: #4a4560;
    --color-text-tertiary: #6b6580;
    --color-text-accent: #a855f7;

    --color-accent-primary: #a855f7;
    --color-accent-secondary: #9333ea;
    --color-accent-light: rgba(168, 85, 247, 0.1);
    --color-accent-glow: rgba(168, 85, 247, 0.18);

    --color-border: #e9e0f0;
    --color-border-strong: #d4c6e0;

    /* Typography */
    --font-display: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;

    /* Spacing & Sizing */
    --border-radius-sm: 4px;
    --border-radius-md: 6px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.1);

    --gradient-hero:
        radial-gradient(ellipse 80% 50% at 85% 20%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, #faf8fc 0%, #f5f0f9 100%);
    --gradient-accent: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);

    /* Glow effects */
    --glow-primary: 0 0 24px rgba(168, 85, 247, 0.35);
    --glow-soft: 0 0 48px rgba(168, 85, 247, 0.2);

    /* Decorative */
    --pattern-opacity: 0.03;
    --noise-opacity: 0.015;
}


/* ==========================================================================
   BASE STYLES
   ========================================================================== */

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

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


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
}

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

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

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-accent);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 24px;
}

.section-text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-border-strong);
    background: var(--color-bg-secondary);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-ghost:hover {
    background: var(--color-bg-secondary);
}

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

.btn-primary {
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    box-shadow: var(--glow-primary), var(--shadow-lg);
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-bg-nav);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    color: white;
    font-family: var(--font-display);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-sm);
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    min-height: 100vh;
    padding: 120px 24px 80px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--gradient-hero);
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-accent);
    background: var(--color-accent-light);
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}

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

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

.hero-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* Hero Visual */
.hero-visual {
    position: relative;
}

.screenshot-frame {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.screenshot-main {
    transform: perspective(1000px) rotateY(-5deg);
}

.screenshot-frame {
    box-shadow: var(--glow-soft), var(--shadow-xl);
}

.screenshot-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

.screenshot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border-strong);
}

.screenshot-dot:first-child {
    background: #ff5f57;
}

.screenshot-dot:nth-child(2) {
    background: #febc2e;
}

.screenshot-dot:nth-child(3) {
    background: #28c840;
}

.screenshot-content {
    padding: 24px;
    min-height: 400px;
}

.screenshot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 350px;
    padding: 32px;
    background: var(--color-bg-secondary);
    border: 2px dashed var(--color-border);
    border-radius: var(--border-radius-md);
    text-align: center;
}

.placeholder-label {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.placeholder-desc {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    max-width: 280px;
}

/* Floating detail card */
.screenshot-detail {
    position: absolute;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.screenshot-changes {
    right: -40px;
    bottom: 60px;
    width: 260px;
    padding: 16px;
}

.screenshot-detail {
    box-shadow: var(--glow-soft), var(--shadow-lg);
}

.detail-header {
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-tertiary);
    margin-bottom: 12px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

.detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    background: var(--color-accent-light);
    color: var(--color-text-accent);
    border-radius: var(--border-radius-sm);
}


/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */

.problem {
    padding: 120px 24px;
    background: var(--color-bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-statement .section-title {
    margin-bottom: 16px;
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-accent);
    line-height: 1;
}

.stat-number {
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}


/* ==========================================================================
   SOLUTION SECTION
   ========================================================================== */

.solution {
    padding: 120px 24px;
}

.solution-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.solution-intro .section-text {
    margin: 0 auto;
}

.solution-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-soft), var(--shadow-lg);
}

.flow-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-accent);
    margin-bottom: 16px;
}

.flow-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.flow-desc {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    color: var(--color-border-strong);
    font-size: 1.5rem;
}

.flow-connector::before {
    content: '→';
}


/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features {
    padding: 120px 24px;
    background: var(--color-bg-secondary);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.feature-visual .screenshot-frame {
    box-shadow: var(--shadow-md);
}

.feature-visual .screenshot-content {
    min-height: 240px;
}

.feature-visual .screenshot-placeholder {
    min-height: 200px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    background: var(--color-accent-light);
    color: var(--color-text-accent);
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}


/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */

.benefits {
    padding: 120px 24px;
}

.benefits-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.benefits-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.benefit-tab {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.benefit-tab:hover {
    border-color: var(--color-border-strong);
}

.benefit-tab.active {
    background: var(--color-accent-light);
    border-color: var(--color-accent-primary);
    color: var(--color-text-accent);
}

.benefits-content {
    max-width: 700px;
    margin: 0 auto;
}

.benefit-panel {
    display: none;
}

.benefit-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
}

.benefit-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 0.875rem;
    background: var(--color-accent-light);
    color: var(--color-text-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin: 0;
}


/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.how-it-works {
    padding: 120px 24px;
    background: var(--color-bg-secondary);
}

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

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.hiw-step {
    text-align: center;
}

.hiw-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-accent);
    background: var(--color-accent-light);
    border-radius: 50%;
    box-shadow: var(--glow-soft);
}

.hiw-step h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.hiw-step p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}


/* ==========================================================================
   INTEGRATIONS SECTION
   ========================================================================== */

.integrations {
    padding: 120px 24px;
    text-align: center;
}

.integrations-content {
    max-width: 700px;
    margin: 0 auto;
}

.integrations .section-text {
    margin: 0 auto 48px;
}

.integration-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.integration-logo {
    padding: 16px 32px;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-tertiary);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    transition: border-color 0.2s ease;
}

.integration-logo:hover {
    border-color: var(--color-border-strong);
}


/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta {
    padding: 120px 24px;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    box-shadow:
        inset 0 1px 0 0 rgba(168, 85, 247, 0.15),
        0 -20px 40px -20px rgba(168, 85, 247, 0.08);
}

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

.cta-title {
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    padding: 80px 24px 40px;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
}

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

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

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

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

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-tertiary);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

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

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

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


/* ==========================================================================
   PAGE CONTENT (About, Contact, Demo pages)
   ========================================================================== */

.page-content {
    padding: 140px 24px 80px;
    min-height: calc(100vh - 200px);
}

.page-header {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
}

.page-body {
    max-width: 700px;
    margin: 0 auto;
}

.page-body p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.page-body h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
}

.page-body ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.page-body li {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.page-body a:not(.btn) {
    color: var(--color-text-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-body a:not(.btn):hover {
    text-decoration-thickness: 2px;
}

.page-cta {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

.video-placeholder {
    margin-bottom: 48px;
}

.video-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    background: var(--color-bg-secondary);
    border: 2px dashed var(--color-border);
    border-radius: var(--border-radius-lg);
    color: var(--color-text-tertiary);
    font-size: 1.125rem;
}


/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 100px 24px 80px;
        min-height: auto;
        text-align: center;
    }

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

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

    .hero-visual {
        order: -1;
    }
    
    .screenshot-main {
        transform: none;
    }
    
    .screenshot-changes {
        right: 20px;
        bottom: -20px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .solution-flow {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .flow-connector {
        padding: 8px 0;
        transform: rotate(90deg);
    }
    
    .feature-large {
        grid-template-columns: 1fr;
    }
    
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta .btn-secondary {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-tabs {
        flex-wrap: wrap;
    }
    
    .hiw-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }

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

    .page-cta {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .screenshot-changes {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        width: 100%;
    }
}
