/* ============================================
   Streetec — Claymorphism Design System
   ============================================ */

/* --- Design Tokens --- */
:root {
    --bg-canvas: #F4F1FA;
    --bg-recessed: #EFEBF5;
    --fg-text: #0B1120;
    --fg-muted: #5A5670;
    --accent-cyan: #00A8CC;
    --accent-cyan-light: #4DD0E1;
    --accent-navy: #0B1120;
    --accent-emerald: #10B981;
    --accent-violet: #7C3AED;
    --accent-pink: #DB2777;
    --white: #ffffff;

    --shadow-clayCard:
        16px 16px 32px rgba(160, 150, 180, 0.2),
        -10px -10px 24px rgba(255, 255, 255, 0.9),
        inset 6px 6px 12px rgba(0, 168, 204, 0.03),
        inset -6px -6px 12px rgba(255, 255, 255, 1);
    --shadow-clayPressed:
        inset 10px 10px 20px #d9d4e3,
        inset -10px -10px 20px #ffffff;
    --shadow-clayButton:
        8px 8px 16px rgba(160, 150, 180, 0.18),
        -6px -6px 12px rgba(255, 255, 255, 0.85),
        inset 3px 3px 6px rgba(255, 255, 255, 0.6),
        inset -3px -3px 6px rgba(160, 150, 180, 0.08);
    --shadow-clayHover:
        20px 20px 40px rgba(160, 150, 180, 0.28),
        -12px -12px 28px rgba(255, 255, 255, 0.95),
        inset 6px 6px 12px rgba(0, 168, 204, 0.05),
        inset -6px -6px 12px rgba(255, 255, 255, 1);

    --radius-sm: 20px;
    --radius-md: 32px;
    --radius-lg: 48px;
    --radius-xl: 60px;
    --radius-full: 9999px;

    --font-heading: 'Nunito', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-sub {
    text-align: center;
    color: var(--fg-muted);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Clay Components --- */
.clay-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-clayCard);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clay-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-clayHover);
}

.clay-pressed {
    background: var(--bg-recessed);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-clayPressed);
}

.clay-button {
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-clayButton);
}

.clay-orb {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-clayButton);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.orb-cyan { background: linear-gradient(135deg, var(--accent-cyan-light), var(--accent-cyan)); }
.orb-violet { background: linear-gradient(135deg, #a78bfa, var(--accent-violet)); }
.orb-pink { background: linear-gradient(135deg, #f472b6, var(--accent-pink)); }
.orb-emerald { background: linear-gradient(135deg, #34d399, var(--accent-emerald)); }

.clay-orb .icon {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

/* --- Icons --- */
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan-light), var(--accent-cyan));
    color: var(--white);
    box-shadow: var(--shadow-clayButton);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
    background: var(--white);
    color: var(--fg-text);
    box-shadow: var(--shadow-clayButton);
}

.btn-secondary:hover { transform: translateY(-2px); }

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-clayButton);
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover { transform: translateY(-2px); }
.btn-whatsapp:active { transform: scale(0.92); }

.btn-whatsapp:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 168, 204, 0.3), var(--shadow-clayButton);
}

.btn-whatsapp .icon {
    width: 24px;
    height: 24px;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(244, 241, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.nav-logo {
    height: 40px;
    width: auto;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-recessed);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: url('hero-bg.jpg') center center / cover no-repeat;
    background-blend-mode: soft-light;
    background-color: var(--bg-canvas);
}

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

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--fg-muted);
    margin-top: 20px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: clay-float 8s ease-in-out infinite;
    pointer-events: none;
}

.blob-cyan {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    top: -100px;
    right: -100px;
}

.blob-emerald {
    width: 400px;
    height: 400px;
    background: var(--accent-emerald);
    bottom: -50px;
    left: -100px;
    animation-delay: -4s;
}

@keyframes clay-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Hero Visual — Robot Arm */
.hero-visual-frame {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-clayCard);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    max-width: 480px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.robot-arm-mock {
    position: relative;
    width: 200px;
    height: 260px;
}

.arm-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, #e2e0e8, #d0cdd8);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-clayButton);
}

.arm-segment {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-cyan-light), var(--accent-cyan));
    border-radius: 16px;
    box-shadow: var(--shadow-clayButton);
}

.arm-segment-1 {
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 100px;
}

.arm-segment-2 {
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    transform-origin: bottom center;
    width: 24px;
    height: 80px;
    animation: arm-sway 4s ease-in-out infinite;
}

.arm-head {
    position: absolute;
    bottom: 185px;
    left: 50%;
    transform: translateX(-60%);
    width: 60px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-cyan), #0090b0);
    border-radius: 12px;
    box-shadow: var(--shadow-clayButton);
    animation: arm-sway 4s ease-in-out infinite;
}

.arm-nozzle {
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 10px;
    background: #0090b0;
    border-radius: 4px 0 0 4px;
}

.arm-light {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-emerald);
    animation: blink 2s ease-in-out infinite;
}

.water-drops {
    position: absolute;
    bottom: 190px;
    left: 10px;
}

.water-drops span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan-light);
    border-radius: 50%;
    opacity: 0;
    animation: drop-fall 2s ease-in infinite;
}

.water-drops span:nth-child(1) { left: 0; animation-delay: 0s; }
.water-drops span:nth-child(2) { left: -8px; animation-delay: 0.3s; }
.water-drops span:nth-child(3) { left: -16px; animation-delay: 0.6s; }
.water-drops span:nth-child(4) { left: -4px; animation-delay: 0.9s; }
.water-drops span:nth-child(5) { left: -12px; animation-delay: 1.2s; }

@keyframes arm-sway {
    0%, 100% { transform: translateX(-50%) rotate(-15deg); }
    50% { transform: translateX(-50%) rotate(-5deg); }
}

.arm-head {
    animation: head-sway 4s ease-in-out infinite;
}

@keyframes head-sway {
    0%, 100% { transform: translateX(-60%) rotate(-5deg); }
    50% { transform: translateX(-55%) rotate(2deg); }
}

@keyframes drop-fall {
    0% { opacity: 0.8; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(-20px, 60px) scale(0.3); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* --- The Deal --- */
.deal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.deal-card {
    padding: 40px;
}

.deal-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fg-muted);
    margin-bottom: 12px;
}

.deal-label-accent {
    color: var(--accent-cyan);
}

.deal-card h3 {
    margin-bottom: 12px;
}

.deal-card p {
    color: var(--fg-muted);
    line-height: 1.7;
}

.deal-icon-row {
    margin-top: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.deal-stat {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--fg-muted);
    opacity: 0.3;
}

.deal-stat-label {
    font-size: 0.9rem;
    color: var(--fg-muted);
}

.deal-sides {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.deal-side { flex: 1; }

.deal-side h4 {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.deal-side p {
    font-size: 0.95rem;
}

.deal-divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    border-radius: 2px;
}

/* --- Bento Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bento-item {
    padding: 36px;
}

.bento-item h3 { margin-bottom: 8px; }
.bento-item p { color: var(--fg-muted); line-height: 1.7; }

.bento-wide {
    grid-column: span 2;
}

/* --- Dashboard --- */
.dashboard-frame {
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 220px 1fr;
    overflow: hidden;
    margin-top: 32px;
}

.dashboard-frame:hover {
    transform: none;
}

.dash-sidebar {
    padding: 28px 20px;
    border-radius: var(--radius-md);
    margin: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dash-sidebar-logo {
    padding: 0 8px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dash-logo-img {
    height: 28px;
    width: auto;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--fg-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dash-nav-item.active {
    background: linear-gradient(135deg, var(--accent-cyan-light), var(--accent-cyan));
    color: var(--white);
    box-shadow: var(--shadow-clayButton);
}

.dash-nav-item:not(.active):hover {
    background: rgba(0, 168, 204, 0.08);
}

.dash-main {
    padding: 28px 32px;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dash-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--fg-muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.legend-washing { background: var(--accent-cyan); }
.legend-idle { background: #c4c0ce; }

.bay-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

.bay-btn {
    aspect-ratio: 1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.bay-btn:active { transform: scale(0.92); }

.bay-washing {
    background: linear-gradient(135deg, var(--accent-cyan-light), var(--accent-cyan));
    color: var(--white);
    box-shadow: var(--shadow-clayButton);
}

.bay-idle {
    background: var(--bg-recessed);
    color: var(--fg-muted);
    box-shadow: var(--shadow-clayPressed);
}

.dash-analytics h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    padding: 0 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-cyan), var(--accent-cyan-light));
    border-radius: 12px 12px 4px 4px;
    height: 0%;
    transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    box-shadow: var(--shadow-clayButton);
}

.chart-bar.animated {
    /* height set by JS */
}

.chart-bar span {
    position: absolute;
    bottom: -24px;
    font-size: 0.75rem;
    color: var(--fg-muted);
    font-weight: 600;
}

/* --- Badges --- */
.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.badge {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fg-text);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.testimonial {
    padding: 36px;
    border-radius: 40px 40px 40px 8px;
}

.testimonial:nth-child(2) {
    border-radius: 40px 40px 8px 40px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--fg-text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-cyan-light), var(--accent-cyan));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--fg-muted);
}

/* --- Vision --- */
.vision-card {
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.08), rgba(255, 255, 255, 0.8));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-clayCard);
    padding: 80px 64px;
    text-align: center;
}

.vision-eyebrow {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.vision-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 800px;
    margin: 0 auto 24px;
}

.vision-sub {
    color: var(--fg-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    align-items: start;
}

.profile-card {
    padding: 40px;
    text-align: center;
}

.profile-card:hover { transform: none; }

.profile-well {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent-cyan-light), var(--accent-cyan));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: var(--shadow-clayButton);
}

.profile-role {
    color: var(--fg-muted);
    margin-top: 4px;
    margin-bottom: 20px;
}

.profile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    font-weight: 500;
    font-size: 0.9rem;
    justify-content: center;
}

.profile-link:hover {
    text-decoration: underline;
}

.cta-card {
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.06), rgba(255, 255, 255, 0.6));
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-clayCard);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-card h3 {
    font-size: 1.4rem;
}

.cta-card p {
    color: var(--fg-muted);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.footer-logo {
    height: 28px;
    width: auto;
}

.footer p {
    font-size: 0.85rem;
    color: var(--fg-muted);
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero { padding-top: 100px; }

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

    .hero-text .subtitle { margin: 20px auto 0; }
    .hero-ctas { justify-content: center; }

    .hero-visual-frame {
        max-width: 360px;
        margin: 0 auto;
    }

    .deal-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-wide { grid-column: span 1; }

    .dashboard-frame {
        grid-template-columns: 1fr;
    }

    .dash-sidebar {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin: 12px 12px 0;
        padding: 12px 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dash-sidebar-logo {
        padding: 0 8px 0 0;
        border-bottom: none;
        border-right: 1px solid rgba(0, 0, 0, 0.06);
        flex-shrink: 0;
    }

    .dash-nav {
        flex-direction: row;
        gap: 6px;
        flex-shrink: 0;
    }

    .dash-nav-item {
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .dash-main {
        padding: 20px 16px;
    }

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

    .vision-card { padding: 60px 32px; }
}

@media (max-width: 640px) {
    .hero { padding-top: 120px; }
    .section { padding: 64px 0; }

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

    .bay-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

    .dashboard-frame { border-radius: var(--radius-md); }

    .dash-sidebar {
        margin: 8px 8px 0;
        padding: 10px 12px;
        border-radius: var(--radius-sm);
    }

    .dash-sidebar-logo { display: none; }

    .dash-main { padding: 16px 12px; }

    .dash-header { flex-direction: column; align-items: flex-start; gap: 8px; }

    .chart-container { height: 80px; gap: 8px; }

    .deal-sides { flex-direction: column; }
    .deal-divider {
        width: 100%;
        height: 2px;
    }

    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }

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

    .badges { gap: 8px; }
    .badge { padding: 8px 16px; font-size: 0.8rem; }

    .dash-sidebar { flex-wrap: wrap; }
}
