/* Mirrors MicroCRMApp.Web's MudBlazor theme palette (Theme.cs) so the
   marketing site and the actual product feel like the same brand.
   Palette updated 2026-07-20 to match the approved homepage concept
   (workeasier-homepage-concept.bacalaca.chatgpt.site). */
:root {
    --primary: #6356DF;
    --primary-darken: #4F3FC7;
    --primary-lighten: #8B7FEA;
    --primary-tint: #F0EFFF;
    --text-primary: #15151A;
    --text-secondary: #686779;
    --text-muted: #92909B;
    --surface: #ffffff;
    --bg-tint: #FAF9F6;
    --bg-tint-purple: #F7F6FC;
    --dark-bg: #201D34;
    --border: #E5E3EB;
    --success: #15803D;
    --badge-orange-bg: #FFF0E5;
    --badge-orange-text: #BC5E1E;
    --badge-amber-bg: #FFF7D9;
    --badge-amber-text: #9B7413;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    background: var(--surface);
    line-height: 1.5;
}

a {
    color: var(--primary);
    text-decoration: none;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.03em;
}

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

/* ── Header ── */

.site-header {
    position: relative;
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
}

.site-header .brand {
    justify-self: start;
}

.site-header .site-nav {
    justify-self: center;
}

.site-header .header-actions {
    justify-self: end;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
}

.brand img {
    width: 22px;
    height: 22px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Mobile nav toggle ── */
/* Checkbox-driven so the panel works with zero JS (this page is
   deliberately server/interactivity-free) — the toggle script in
   MainLayout.razor only closes the panel after a link tap, it's not
   required for open/close to function. */

.mobile-menu-checkbox {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-panel {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 4px 24px;
    z-index: 20;
}

.mobile-nav-panel a {
    padding: 14px 0;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-panel a:last-child {
    border-bottom: none;
}

.site-header:has(.mobile-menu-checkbox:checked) .mobile-nav-panel {
    display: flex;
}

.site-header:has(.mobile-menu-checkbox:checked) .mobile-menu-btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header:has(.mobile-menu-checkbox:checked) .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

.site-header:has(.mobile-menu-checkbox:checked) .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ── Buttons ── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-darken);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

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

.btn-large {
    padding: 14px 26px;
    font-size: 16px;
}

.btn-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

/* ── Hero ── */

.hero {
    text-align: center;
    padding: 72px 24px 0;
    background: linear-gradient(180deg, var(--bg-tint-purple) 0%, var(--surface) 55%);
}

.hero-eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-tint);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.08;
    max-width: 780px;
    margin: 0 auto 20px;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.hero h1 span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.hero-actions .link-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-actions .link-with-icon .play-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.hero-note {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 56px;
}

.hero-note span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-note .check {
    color: var(--success);
    font-weight: 700;
}

/* ── Product mockup (hero visual — built with real markup, not an
   image, so it stays crisp at any size and needs no asset pipeline) ── */

.product-mockup-wrap {
    padding: 0 24px 88px;
}

.product-mockup {
    max-width: 1040px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 30px 60px -20px rgba(32, 29, 52, 0.25), 0 2px 8px rgba(32, 29, 52, 0.06);
    overflow: hidden;
    text-align: left;
}

.mockup-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-tint);
}

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

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
}

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3px 10px;
    margin-right: 40px;
}

.mockup-body {
    display: flex;
    min-height: 480px;
}

.mockup-sidebar {
    width: 190px;
    flex-shrink: 0;
    background: var(--bg-tint);
    border-right: 1px solid var(--border);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
}

.mockup-workspace {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
}

.mockup-workspace-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-workspace-name {
    font-size: 12px;
    font-weight: 700;
}

.mockup-nav-group {
    margin-bottom: 16px;
}

.mockup-nav-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0 8px 6px;
}

.mockup-nav-item {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 7px 8px;
    border-radius: 6px;
}

.mockup-nav-item.active {
    background: var(--primary-tint);
    color: var(--primary);
    font-weight: 700;
}

.mockup-user {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.mockup-user-name {
    font-size: 11px;
    font-weight: 700;
}

.mockup-user-role {
    font-size: 10px;
    color: var(--text-muted);
}

.mockup-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-avatar.tiny {
    width: 20px;
    height: 20px;
    font-size: 9px;
    background: var(--primary-lighten);
}

.mockup-main {
    flex: 1;
    padding: 20px 22px;
    min-width: 0;
}

.mockup-main-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mockup-eyebrow-small {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.mockup-title {
    font-size: 18px;
    font-weight: 700;
}

.mockup-actions {
    display: flex;
    gap: 8px;
}

.mockup-btn {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.mockup-btn.primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.mockup-stat {
    background: var(--bg-tint);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
}

.mockup-stat-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.mockup-stat-value {
    font-size: 16px;
    font-weight: 700;
}

.mockup-stat-value .up {
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
}

.mockup-stat-value .dim {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

.mockup-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mockup-column-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.mockup-column-header span {
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-column-value {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.mockup-deal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 7px;
    box-shadow: 0 2px 3px rgba(20, 20, 30, 0.02);
    padding: 11px;
    margin-bottom: 10px;
}

.mockup-pill {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.mockup-pill.orange {
    background: var(--badge-orange-bg);
    color: var(--badge-orange-text);
}

.mockup-pill.amber {
    background: var(--badge-amber-bg);
    color: var(--badge-amber-text);
}

.mockup-deal-name {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.mockup-deal-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.mockup-deal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
}

/* ── Trust strip ── */

.trust-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 28px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-tint);
}

.trust-strip-item {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
}

/* ── Sections ── */

.section {
    padding: 88px 24px;
}

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

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

.section-eyebrow {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* ── Differentiator sections (3 major benefits) ── */

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

.differentiator-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
}

.differentiator-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.differentiator-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
}

.differentiator-card > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0 0 20px;
}

.differentiator-visual {
    border-radius: 10px;
    background: var(--bg-tint);
    border: 1px solid var(--border);
    padding: 16px;
}

.diff-rotting-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--badge-orange-bg);
    color: var(--badge-orange-text);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
}

.diff-rotting-alert .diff-alert-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--badge-orange-text);
    color: white;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-rotting-alert .diff-sub {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}

.diff-rotting-link {
    display: block;
    text-align: right;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

.diff-timeline-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

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

.diff-timeline-item .diff-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.diff-timeline-item .diff-timeline-text {
    flex: 1;
}

.diff-timeline-item .diff-time {
    color: var(--text-muted);
}

.diff-checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding: 6px 0;
}

.diff-checklist-item .diff-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-checklist-item .diff-sub {
    color: var(--text-muted);
    margin-left: auto;
}

/* ── Founder quote + essentials (combined 2-column section) ── */

.founder-essentials-section {
    padding: 88px 24px;
}

.founder-essentials-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
    gap: 56px;
    align-items: start;
}

.founder-card {
    position: relative;
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 32px;
    color: white;
    overflow: hidden;
}

.founder-card .quote-mark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
    color: var(--primary-lighten);
    margin-bottom: 10px;
}

.founder-quote {
    position: relative;
    z-index: 1;
    font-size: 19px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
}

.founder-attribution {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-name {
    font-size: 13px;
    font-weight: 700;
}

.founder-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.founder-card .deco-ring {
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 26px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.essentials-panel .section-eyebrow,
.essentials-panel h2 {
    text-align: left;
}

.essentials-panel h2 {
    margin-bottom: 24px;
}

/* ── Compact feature grid ── */

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

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 4px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0;
}

/* ── Pricing ── */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.price-card {
    position: relative;
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    display: flex;
    flex-direction: column;
}

.price-card.is-popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

.price-card h3 {
    font-size: 16px;
    font-weight: 700;
}

.price-card .price-desc {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 6px 0 20px;
    min-height: 32px;
}

.price-amount {
    font-size: 34px;
    font-weight: 700;
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin: 20px 0 24px;
    padding: 0;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.price-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

.pricing-footnote {
    text-align: center;
    margin-top: 36px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ── FAQ ── */

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 12px 0 0;
    max-width: 620px;
}

/* ── Final CTA (dark) ── */

.cta-banner {
    position: relative;
    background: var(--dark-bg);
    padding: 88px 24px;
    text-align: center;
    overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cta-banner::before {
    width: 560px;
    height: 560px;
    margin: -280px 0 0 -280px;
}

.cta-banner::after {
    width: 380px;
    height: 380px;
    margin: -190px 0 0 -190px;
    border-color: rgba(255, 255, 255, 0.08);
}

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

.cta-banner .section-eyebrow {
    color: var(--primary-lighten);
}

.cta-banner h2 {
    color: white;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto 14px;
}

.cta-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 14px;
}

.cta-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.cta-form .btn-primary {
    white-space: nowrap;
}

.cta-fineprint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

/* ── Footer ── */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px 24px;
}

.footer-top {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .brand {
    margin-bottom: 6px;
}

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

.footer-links {
    display: flex;
    gap: 20px;
    padding-top: 4px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 13px;
}

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

.footer-bottom {
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 12px;
}

/* ── Responsive ── */

@media (max-width: 900px) {
    .founder-essentials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero h1 {
        font-size: 38px;
    }

    .mockup-sidebar {
        display: none;
    }

    .mockup-kanban {
        grid-template-columns: 1fr;
    }

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

    .trust-strip {
        flex-wrap: wrap;
        gap: 20px;
    }
}

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

    .mobile-menu-btn {
        display: flex;
    }

    .feature-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

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

    .hero-note {
        flex-direction: column;
        gap: 8px;
    }
}
