/* ParkingBreeze - Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --pb-bg: #F5F8FC;
    --pb-navy: #1F3A66;
    --pb-blue: #2F6FED;
    --pb-accent: #4FACFE;
    --pb-white: #ffffff;
    --pb-gray: #8A9BBD;
    --pb-text: #2C3E6B;
    --pb-border: rgba(47, 111, 237, 0.12);
    --pb-shadow: 0 4px 24px rgba(31, 58, 102, 0.09);
    --pb-shadow-lg: 0 20px 60px rgba(31, 58, 102, 0.16);
    --radius: 14px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--pb-bg);
    color: var(--pb-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(245, 248, 252, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pb-border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--pb-shadow);
    padding: 12px 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.pb-logo {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--pb-blue), var(--pb-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 12px rgba(47, 111, 237, 0.3);
    flex-shrink: 0;
}

.brand-wordmark {
    font-size: 17px;
    font-weight: 700;
    color: var(--pb-navy);
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-links a {
    color: var(--pb-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links a:hover {
    background: rgba(47, 111, 237, 0.08);
    color: var(--pb-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: -0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pb-blue) 0%, #1a5dd4 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(47, 111, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(47, 111, 237, 0.5);
    text-decoration: none;
    color: #fff;
}

.btn-secondary {
    background: var(--pb-white);
    color: var(--pb-navy);
    border: 1.5px solid var(--pb-border);
    box-shadow: var(--pb-shadow);
}

.btn-secondary:hover {
    background: var(--pb-bg);
    border-color: var(--pb-blue);
    color: var(--pb-blue);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 50px;
}

.btn-ghost {
    background: transparent;
    color: var(--pb-text);
    padding: 8px 16px;
}

.btn-ghost:hover {
    color: var(--pb-blue);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 111, 237, 0.08);
    border: 1px solid rgba(47, 111, 237, 0.2);
    color: var(--pb-blue);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--pb-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(52px, 5vw, 80px);
    font-weight: 900;
    color: var(--pb-navy);
    letter-spacing: -3px;
    line-height: 1.0;
    margin-bottom: 16px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title span {
    background: linear-gradient(135deg, var(--pb-blue), var(--pb-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--pb-navy);
    margin-bottom: 12px;
    opacity: 0.85;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-desc {
    font-size: 17px;
    color: var(--pb-gray);
    margin-bottom: 36px;
    max-width: 440px;
    line-height: 1.65;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.5s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--pb-gray);
    font-weight: 500;
}

.hero-feature .icon {
    color: var(--pb-blue);
    font-size: 16px;
}

/* ── iPhone Mockup ───────────────────────────────────────────────────────── */
.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.phone-mockup {
    width: 280px;
    background: var(--pb-navy);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 40px 100px rgba(31, 58, 102, 0.35), 0 0 0 1.5px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-16px) rotate(-2deg);
    }
}

.phone-notch {
    width: 90px;
    height: 28px;
    background: var(--pb-navy);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: var(--pb-bg);
    border-radius: 32px;
    overflow: hidden;
    min-height: 520px;
    position: relative;
}

.phone-header {
    background: var(--pb-white);
    padding: 16px;
    border-bottom: 1px solid var(--pb-border);
}

.phone-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--pb-navy);
}

.phone-subtitle {
    font-size: 11px;
    color: var(--pb-gray);
    margin-top: 2px;
}

.phone-map {
    height: 220px;
    background: linear-gradient(to bottom, #dce8f5, #e8f0f8);
    position: relative;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(47, 111, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 111, 237, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-road {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 24px;
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%);
}

.map-road-v {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45%;
    width: 20px;
    background: rgba(255, 255, 255, 0.7);
}

.map-pin {
    position: absolute;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--pb-blue), #1a5dd4);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 10px rgba(47, 111, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map-pin::before {
    content: 'P';
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    transform: rotate(45deg);
    display: block;
}

.map-pin.pin-1 {
    top: 30%;
    left: 20%;
}

.map-pin.pin-2 {
    top: 50%;
    left: 58%;
}

.map-pin.pin-3 {
    top: 20%;
    left: 65%;
    transform: rotate(-45deg) scale(0.85);
    opacity: 0.7;
}

.price-bubble {
    position: absolute;
    background: var(--pb-white);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--pb-navy);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.price-bubble.b1 {
    top: 18%;
    left: 25%;
}

.price-bubble.b2 {
    top: 38%;
    left: 62%;
    background: var(--pb-blue);
    color: #fff;
}

.map-route {
    position: absolute;
    top: 30%;
    left: 25%;
    width: 120px;
    height: 60px;
    border: 2.5px solid var(--pb-blue);
    border-bottom: none;
    border-right: none;
    border-radius: 12px 0 0 0;
    opacity: 0.6;
}

.phone-spot-list {
    padding: 12px 14px;
}

.spot-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--pb-border);
}

.spot-item:last-child {
    border-bottom: none;
}

.spot-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--pb-navy);
}

.spot-addr {
    font-size: 10px;
    color: var(--pb-gray);
}

.spot-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--pb-blue);
}

.phone-cta-area {
    padding: 12px 14px;
}

.phone-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--pb-blue), #1a5dd4);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(47, 111, 237, 0.4);
}

/* ── Trust Bar ───────────────────────────────────────────────────────────── */
.trust-bar {
    padding: 48px 0;
    border-top: 1px solid var(--pb-border);
    border-bottom: 1px solid var(--pb-border);
    background: var(--pb-white);
}

.trust-label {
    text-align: center;
    color: var(--pb-gray);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: var(--transition);
    filter: grayscale(1);
}

.trust-logo:hover {
    opacity: 0.65;
    filter: grayscale(0);
}

.trust-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--pb-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
}

.trust-logo-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--pb-navy);
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: rgba(47, 111, 237, 0.08);
    color: var(--pb-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--pb-navy);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--pb-gray);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── How It Works ────────────────────────────────────────────────────────── */
.how-it-works {
    background: var(--pb-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(to right, var(--pb-blue), var(--pb-accent));
    opacity: 0.3;
}

.step-card {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--pb-blue), #1a5dd4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(47, 111, 237, 0.35);
}

.step-number svg,
.step-number span {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--pb-navy);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--pb-gray);
    line-height: 1.55;
}

/* ── Feature Cards ───────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: var(--pb-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1.5px solid transparent;
    box-shadow: var(--pb-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(47, 111, 237, 0.25);
    box-shadow: var(--pb-shadow-lg);
    transform: translateY(-6px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(47, 111, 237, 0.1), rgba(79, 172, 254, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pb-navy);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.feature-desc {
    font-size: 15px;
    color: var(--pb-gray);
    line-height: 1.6;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--pb-blue);
    background: rgba(47, 111, 237, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
}

/* ── Dashboard Preview ──────────────────────────────────────────────────── */
.dashboard-preview {
    background: var(--pb-navy);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.12) 0%, transparent 60%);
    border-radius: 50%;
}

.dashboard-text {
    color: var(--pb-white);
    margin-bottom: 52px;
}

.dashboard-text .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.dashboard-text .section-title {
    color: var(--pb-white);
}

.dashboard-text .section-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0;
}

.dash-ui {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.dash-topbar {
    background: rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dash-dot.red {
    background: #ff5f57;
}

.dash-dot.yellow {
    background: #febc2e;
}

.dash-dot.green {
    background: #28c840;
}

.dash-body {
    padding: 28px;
}

.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dash-stat {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 16px;
}

.dash-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dash-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.dash-stat-change {
    font-size: 11px;
    color: #4ade80;
    margin-top: 4px;
    font-weight: 600;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dash-chart-area,
.dash-map-area {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    min-height: 180px;
}

.dash-chart-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--pb-blue), var(--pb-accent));
    border-radius: 4px 4px 0 0;
    opacity: 0.9;
    transition: opacity 0.2s;
    min-width: 8px;
}

.chart-bar:hover {
    opacity: 1;
}

/* ── CTA Band ────────────────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--pb-blue) 0%, #1a5dd4 50%, #0f4bbf 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.cta-band h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.cta-band p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

.cta-band-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--pb-blue);
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
    background: var(--pb-navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 32px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .pb-logo {
    margin-bottom: 14px;
}

.footer-brand p {
    line-height: 1.65;
    font-size: 14px;
    margin-top: 12px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 36px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 240px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 0 60px;
    }

    section {
        padding: 72px 0;
    }

    .dash-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .dash-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}