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

:root {
    --blue: rgb(74, 142, 255);
    --blue-rgb: 74, 142, 255;
    --blue-dark: rgb(50, 110, 220);
    --blue-light: rgba(74, 142, 255, 0.15);
    --blue-glow: rgba(74, 142, 255, 0.4);

    --bg: #0a0e17;
    --bg-raised: #0f1420;
    --bg-card: #131926;
    --bg-card-hover: #1a2235;
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    --text: #e4e8f1;
    --text-secondary: #8892a6;
    --text-muted: #5a6378;

    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

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

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

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

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

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

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 0 20px rgba(var(--blue-rgb), 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 0 30px rgba(var(--blue-rgb), 0.45), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

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

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.03);
}

.btn-nav {
    background: var(--blue);
    color: #fff;
    padding: 8px 18px;
    font-size: 13px;
}

.btn-nav:hover {
    background: var(--blue-dark);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 14, 23, 0.95);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
}

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

.nav-links a:not(.btn) {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
    font-weight: 500;
}

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

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 4px;
    border-top: 1px solid var(--border);
}

.nav-mobile a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.nav-mobile .btn {
    margin-top: 8px;
    justify-content: center;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(var(--blue-rgb), 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 12px;
    background: var(--blue-light);
    border: 1px solid rgba(var(--blue-rgb), 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--blue-rgb), 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(var(--blue-rgb), 0); }
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--blue), #7bb4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-proof-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-proof-number {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text);
    letter-spacing: -0.02em;
}

.hero-proof-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

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

/* Hero Screenshot */
.hero-screenshot {
    position: relative;
    margin-top: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-screenshot-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    box-shadow:
        0 4px 24px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.03),
        0 40px 80px rgba(0,0,0,0.4);
}

.hero-screenshot-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border);
}

.hero-screenshot-dots {
    display: flex;
    gap: 6px;
}

.hero-screenshot-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

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

.hero-screenshot-url {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    padding: 4px 12px;
    border-radius: 6px;
    flex: 1;
    max-width: 300px;
}

.hero-screenshot-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120px;
    background: radial-gradient(ellipse, rgba(var(--blue-rgb), 0.15), transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}

/* Screenshot Placeholder */
.screenshot-placeholder {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, var(--bg-raised) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.screenshot-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--blue-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--blue-rgb), 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.screenshot-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.screenshot-placeholder-inner span {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* ============ LOGO BAR ============ */
.logo-bar {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logo-bar-label {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 28px;
}

.logo-bar-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-bar-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.3s;
    letter-spacing: 0.02em;
}

.logo-bar-item:hover {
    opacity: 0.8;
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    background: var(--blue-light);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.text-accent {
    background: linear-gradient(135deg, var(--blue), #7bb4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ FEATURES ============ */
.features {
    padding: 100px 0;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--blue-rgb), 0), transparent);
    transition: background 0.3s;
}

.feature-card:hover {
    border-color: rgba(var(--blue-rgb), 0.15);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(var(--blue-rgb), 0.5), transparent);
}

.feature-card-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 20px;
    padding: 40px;
}

.feature-card-large .feature-card-icon {
    grid-row: span 2;
    align-self: start;
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-raised);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(var(--blue-rgb), 0.3), rgba(var(--blue-rgb), 0.05));
}

.step {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    position: relative;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    width: 64px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ REPORTING ============ */
.reporting {
    padding: 100px 0;
}

.reporting-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.reporting-text .section-tag {
    margin-bottom: 16px;
}

.reporting-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.reporting-text > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.reporting-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reporting-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.reporting-features li svg {
    flex-shrink: 0;
}

.reporting-screenshot-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    box-shadow:
        0 4px 24px rgba(0,0,0,0.3),
        0 40px 80px rgba(0,0,0,0.3);
}

/* ============ STATS BAR ============ */
.stats-bar {
    padding: 80px 0;
    background: var(--bg-raised);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.stat-number {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============ PRICING ============ */
.pricing {
    padding: 100px 0;
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 40px rgba(0,0,0,0.2), 0 0 80px rgba(var(--blue-rgb), 0.05);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    border-radius: 2px;
}

.pricing-card-header {
    margin-bottom: 28px;
}

.pricing-plan-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}

.pricing-plan-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-toggle-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

.pricing-toggle-label.active {
    color: var(--text);
}

.pricing-save-badge {
    font-size: 11px;
    font-weight: 600;
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    padding: 2px 8px;
    border-radius: 100px;
}

.pricing-toggle {
    width: 44px;
    height: 24px;
    background: var(--bg-raised);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0;
}

.pricing-toggle.active {
    background: var(--blue);
    border-color: var(--blue);
}

.pricing-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: var(--text);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.pricing-toggle.active .pricing-toggle-knob {
    transform: translateX(20px);
    background: #fff;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-number {
    font-size: 56px;
    font-weight: 700;
    font-family: var(--font-mono);
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text);
    transition: all 0.3s;
}

.pricing-period {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 4px;
}

.pricing-annual-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    transition: all 0.3s;
}

.pricing-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-feature svg {
    flex-shrink: 0;
}

/* ============ CTA ============ */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(var(--blue-rgb), 0.08), transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

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

/* ============ FOOTER ============ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 5px 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

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

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large {
        grid-column: span 2;
    }

    .reporting-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

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

    .hero-proof {
        gap: 20px;
    }

    .hero-proof-divider {
        display: none;
    }

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

    .feature-card-large {
        grid-column: span 1;
        display: block;
    }

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

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

    .pricing-card {
        padding: 36px 28px;
    }

    .pricing-number {
        font-size: 48px;
    }

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

    .steps::before {
        left: 28px;
    }
}

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

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

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

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

    .hero-proof-item {
        align-items: center;
    }

    .logo-bar-logos {
        gap: 24px;
    }
}
