/**
 * PropMark Landing Page — Modern 3D CSS design
 */

/* ── Reset for landing page ── */
.landing-page {
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

.landing-page #main-content {
    padding: 0;
}

/* ── Navbar ── */
.land-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(245, 245, 240, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.3s;
}

.land-nav.scrolled {
    box-shadow: 0 4px 30px rgba(22, 35, 56, 0.08);
}

.land-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.land-nav-logo img {
    height: 32px;
    width: auto;
}

.land-nav-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.land-nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.land-nav-links a {
    text-decoration: none;
    color: var(--color-text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.land-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.land-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    border: none;
}

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

.land-btn--ghost:hover {
    background: var(--color-surface);
    border-color: var(--color-border-strong);
}

.land-btn--primary {
    background: #162338;
    color: #fff;
    box-shadow: 0 2px 12px rgba(22, 35, 56, 0.2);
}

.land-btn--primary:hover {
    background: #1e2f4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(22, 35, 56, 0.3);
}

.land-btn--large {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
}

.land-btn--secondary {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.land-btn--secondary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-border-strong);
    transform: translateY(-1px);
}

/* ── Hero ── */
.land-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10rem 3rem 6rem;
    min-height: 100vh;
}

.land-hero-text {
    max-width: 560px;
}

.land-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 1.25rem;
    padding: 0.4rem 0.85rem;
    background: var(--color-surface);
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

.land-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.land-hero h1 .accent {
    background: linear-gradient(135deg, #162338 0%, #2a4a7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.land-hero-sub {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--color-text-dim);
    margin-bottom: 2.25rem;
    max-width: 480px;
}

.land-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.land-trust {
    display: flex;
    gap: 2.5rem;
}

.land-trust-item {
    display: flex;
    flex-direction: column;
}

.land-trust-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.land-trust-label {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-top: 0.15rem;
}

/* ── Hero 3D Mockup ── */
.land-hero-visual {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.land-mockup {
    position: relative;
    width: 480px;
    height: 340px;
    transform: rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
    animation: landFloat 6s ease-in-out infinite;
}

@keyframes landFloat {
    0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
    50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-14px); }
}

.land-mockup-screen {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #87CEEB 0%, #b8d8e8 35%, #d4c89a 36%, #c4a86a 50%, #a8946a 65%, #8a7a5a 80%, #6a5a3a 100%);
    box-shadow:
        0 20px 60px rgba(22, 35, 56, 0.2),
        0 8px 24px rgba(22, 35, 56, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(22, 35, 56, 0.1);
}

.land-mockup-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: rgba(22, 35, 56, 0.85);
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.land-mockup-screen::after {
    content: '● ● ●';
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 8px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
}

/* Plot markers on mockup */
.land-mock-plot {
    position: absolute;
    border-radius: 4px;
    border: 2px solid;
    opacity: 0.8;
}

.land-mock-plot--available {
    top: 45%;
    left: 15%;
    width: 22%;
    height: 28%;
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.6);
}

.land-mock-plot--hold {
    top: 50%;
    left: 42%;
    width: 18%;
    height: 22%;
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.6);
}

.land-mock-plot--sold {
    top: 42%;
    right: 12%;
    width: 20%;
    height: 30%;
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.6);
}

/* Floating marker dots */
.land-mock-marker {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
    animation: landPulse 2s ease-in-out infinite;
}

.land-mock-marker:nth-child(5) {
    top: 55%;
    left: 25%;
}

.land-mock-marker:nth-child(6) {
    top: 60%;
    left: 50%;
    background: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
    animation-delay: 0.5s;
}

.land-mock-marker:nth-child(7) {
    top: 52%;
    right: 20%;
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
    animation-delay: 1s;
}

@keyframes landPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Floating tooltip on mockup */
.land-mock-tooltip {
    position: absolute;
    top: 38%;
    left: 18%;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    font-size: 0.65rem;
    color: #162338;
    white-space: nowrap;
    transform: translateZ(30px);
    animation: landTooltipFloat 4s ease-in-out infinite;
}

.land-mock-tooltip-title {
    font-weight: 700;
    margin-bottom: 2px;
}

.land-mock-tooltip-meta {
    display: flex;
    gap: 0.5rem;
    color: #6b7280;
}

.land-mock-tooltip-status {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #22c55e;
    font-weight: 600;
}

.land-mock-tooltip-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

@keyframes landTooltipFloat {
    0%, 100% { transform: translateZ(30px) translateY(0); }
    50% { transform: translateZ(30px) translateY(-6px); }
}

/* Mockup reflection */
.land-mockup-reflection {
    position: absolute;
    bottom: -60px;
    left: 5%;
    right: 5%;
    height: 60px;
    background: linear-gradient(to bottom,
        rgba(22, 35, 56, 0.06) 0%,
        transparent 100%);
    border-radius: 50%;
    filter: blur(8px);
}

/* Legend card on mockup */
.land-mock-legend {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 0.5rem;
    font-size: 0.55rem;
    color: #162338;
    transform: translateZ(20px);
}

.land-mock-legend-item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
}

.land-mock-legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.land-mock-legend-dot--green { background: #22c55e; }
.land-mock-legend-dot--orange { background: #f97316; }
.land-mock-legend-dot--red { background: #ef4444; }

/* ── Section shared ── */
.land-section {
    padding: 6rem 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.land-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.land-section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.land-section-header p {
    font-size: 1.05rem;
    color: var(--color-text-dim);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Features Grid ── */
.land-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.land-feature-card {
    background: var(--color-surface-strong);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.land-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-border);
    transition: background 0.3s;
}

.land-feature-card:nth-child(1)::before { background: #22c55e; }
.land-feature-card:nth-child(2)::before { background: #f97316; }
.land-feature-card:nth-child(3)::before { background: #162338; }
.land-feature-card:nth-child(4)::before { background: #ef4444; }
.land-feature-card:nth-child(5)::before { background: #2a4a7f; }
.land-feature-card:nth-child(6)::before { background: #f59e0b; }

.land-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(22, 35, 56, 0.1);
}

.land-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    font-size: 1.3rem;
}

.land-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--color-text);
}

.land-feature-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-dim);
}

/* ── How It Works ── */
.land-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.land-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(90deg,
        var(--color-border-strong) 0px,
        var(--color-border-strong) 8px,
        transparent 8px,
        transparent 16px);
}

.land-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.land-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #162338;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(22, 35, 56, 0.2);
}

.land-step h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.land-step p {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    max-width: 200px;
    line-height: 1.5;
}

/* ── Demo Mockup Section ── */
.land-demo-section {
    padding: 6rem 3rem;
    background: var(--color-surface-strong);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.land-demo-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.land-demo-perspective {
    perspective: 1500px;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.land-demo-browser {
    width: 100%;
    max-width: 960px;
    border-radius: 14px;
    overflow: hidden;
    background: #fafaf8;
    box-shadow:
        0 30px 80px rgba(22, 35, 56, 0.15),
        0 10px 30px rgba(22, 35, 56, 0.08);
    border: 1px solid var(--color-border);
    transform: rotateY(-3deg) rotateX(2deg);
    animation: landDemoFloat 8s ease-in-out infinite;
}

@keyframes landDemoFloat {
    0%, 100% { transform: rotateY(-3deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-3deg) rotateX(2deg) translateY(-10px); }
}

.land-demo-chrome {
    height: 36px;
    background: #162338;
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 8px;
}

.land-demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.land-demo-dot:nth-child(1) { background: #ef4444; }
.land-demo-dot:nth-child(2) { background: #f59e0b; }
.land-demo-dot:nth-child(3) { background: #22c55e; }

.land-demo-url {
    flex: 1;
    margin-left: 12px;
    height: 22px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
}

.land-demo-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    height: 420px;
}

.land-demo-sidebar {
    background: #f0efec;
    border-right: 1px solid var(--color-border);
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.land-demo-thumb {
    height: 48px;
    border-radius: 6px;
    background: linear-gradient(135deg, #d4c89a 0%, #87CEEB 100%);
    border: 2px solid transparent;
    transition: border-color 0.2s;
    opacity: 0.6;
}

.land-demo-thumb.active {
    border-color: #162338;
    opacity: 1;
}

.land-demo-viewport {
    position: relative;
    background:
        linear-gradient(180deg, #87CEEB 0%, #acd4e8 30%, #d4c89a 31%, #c9b87a 50%, #a89060 70%, #7a6a4a 100%);
    overflow: hidden;
}

/* Demo plot overlays */
.land-demo-plot {
    position: absolute;
    border: 2px solid;
    border-radius: 3px;
    transition: opacity 0.3s;
}

.land-demo-plot--1 {
    clip-path: polygon(15% 45%, 35% 40%, 38% 70%, 12% 68%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 197, 94, 0.2);
    border: none;
}

.land-demo-plot--2 {
    clip-path: polygon(42% 48%, 58% 42%, 62% 72%, 40% 70%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 115, 22, 0.2);
    border: none;
}

.land-demo-plot--3 {
    clip-path: polygon(65% 40%, 85% 38%, 88% 68%, 68% 72%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(239, 68, 68, 0.2);
    border: none;
}

/* Demo marker dots */
.land-demo-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.land-demo-marker--1 {
    top: 50%;
    left: 25%;
    background: #22c55e;
}

.land-demo-marker--2 {
    top: 52%;
    left: 50%;
    background: #f97316;
}

.land-demo-marker--3 {
    top: 48%;
    left: 75%;
    background: #ef4444;
}

/* Demo floating legend */
.land-demo-legend {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #162338;
}

.land-demo-legend-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.land-demo-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Demo info tooltip */
.land-demo-info {
    position: absolute;
    top: 35%;
    left: 20%;
    background: #fff;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.7rem;
    color: #162338;
    animation: landDemoInfoPulse 3s ease-in-out infinite;
}

.land-demo-info strong {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.land-demo-info span {
    color: #22c55e;
    font-weight: 700;
}

@keyframes landDemoInfoPulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.9; transform: translateY(-4px); }
}

/* ── Stats Bar ── */
.land-stats {
    background: #162338;
    padding: 4.5rem 3rem;
}

.land-stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.land-stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

.land-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ── CTA Banner ── */
.land-cta {
    padding: 6rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.land-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 40px,
            rgba(22, 35, 56, 0.015) 40px,
            rgba(22, 35, 56, 0.015) 80px);
    pointer-events: none;
}

.land-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.land-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.land-cta p {
    font-size: 1.05rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ── Footer ── */
.land-footer {
    background: #162338;
    color: #fff;
    padding: 4rem 3rem 2rem;
}

.land-footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.land-footer-brand {
    max-width: 300px;
}

.land-footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.land-footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.land-footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.land-footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.3rem 0;
    transition: color 0.2s;
}

.land-footer-col a:hover {
    color: #fff;
}

.land-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .land-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 8rem 2rem 4rem;
        min-height: auto;
    }

    .land-hero-text {
        max-width: 100%;
        text-align: center;
    }

    .land-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .land-hero-ctas {
        justify-content: center;
    }

    .land-trust {
        justify-content: center;
    }

    .land-mockup {
        width: 400px;
        height: 280px;
    }

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

    .land-demo-body {
        grid-template-columns: 1fr;
    }

    .land-demo-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .land-nav {
        padding: 0.85rem 1.5rem;
    }

    .land-nav-links {
        display: none;
    }

    .land-section {
        padding: 4rem 1.5rem;
    }

    .land-hero {
        padding: 7rem 1.5rem 3rem;
    }

    .land-mockup {
        width: 320px;
        height: 230px;
    }

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

    .land-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .land-steps::before {
        display: none;
    }

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

    .land-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .land-footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .land-demo-browser {
        transform: none;
        animation: none;
    }

    .land-demo-body {
        height: 280px;
    }

    .land-demo-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .land-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .land-trust {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .land-mockup {
        width: 280px;
        height: 200px;
        transform: rotateY(-4deg) rotateX(2deg);
    }

    .land-mock-tooltip {
        display: none;
    }
}
