:root {
    /* Updated Palette - Minimal & Fun */
    --primary-color: #00B14F;
    --primary-dark: #009443;
    --primary-darker: #005339;
    --primary-light: #E8F5E9;
    --bg-soft: #FAFAF9; /* Warm off-white */
    --text-main: #18181b;
    --text-body: #52525b;
    --text-dark: #1a1a1a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --card-bg: #ffffff;
    --accent-yellow: #FEF08A;
    --accent-blue: #BAE6FD;
    --shadow-soft: 0 20px 40px -10px rgba(0, 0, 0, 0.05);

    /* Basecoat theme overrides (HSL values for green) */
    --primary: 145 100% 35%;
    --primary-foreground: 0 0% 100%;
    --ring: 145 100% 35%;
    --accent: 145 40% 94%;
    --accent-foreground: 145 100% 20%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* FLOATING ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* HERO ENTRANCE ANIMATIONS */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    70% {
        transform: scale(1.02) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes blobPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

@keyframes underlineGrow {
    from {
        transform: scaleX(0) rotate(-1deg);
        transform-origin: left center;
    }
    to {
        transform: scaleX(1) rotate(-1deg);
        transform-origin: left center;
    }
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

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

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

/* ============================================
   NEW HERO SECTION
   ============================================ */
.hero {
    min-height: 85vh;
    background-color: #fafaf9;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9.414 40l5.95-5.95-1.414-1.414L8 38.586l-5.95-5.95L.636 34.05 6.586 40l-5.95 5.95 1.414 1.414L8 41.414l5.95 5.95 1.414-1.414L9.414 40z' fill='%2300b14f' fill-opacity='0.07' fill-rule='evenodd'/%3E%3C/svg%3E");
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Gradient fade at bottom for smooth transition */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* LEFT SIDE: Text */
.hero-text {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--primary-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    /* Animation */
    opacity: 0;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    /* Animation */
    opacity: 0;
    animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
    white-space: nowrap;
}

/* Fun underline decoration */
.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent-yellow);
    z-index: -1;
    opacity: 0.6;
    border-radius: 4px;
    /* Animated underline */
    transform: scaleX(0) rotate(-1deg);
    transform-origin: left center;
    animation: underlineGrow 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    /* Animation */
    opacity: 0;
    animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.35s;
}

/* Buttons - Pill Shaped */
.hero-cta {
    display: flex;
    gap: 1rem;
    /* Animation */
    opacity: 0;
    animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 25px -5px rgba(0, 177, 79, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -5px rgba(0, 177, 79, 0.5);
}

.btn-hero-secondary {
    background: #fff;
    color: var(--text-main);
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-hero-secondary:hover {
    border-color: var(--text-main);
    background: #fff;
    transform: translateY(-2px);
}

/* RIGHT SIDE: Visual Composition */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Abstract Background Blob */
.visual-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #e6f6ec;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
    /* Animation */
    opacity: 0;
    animation: blobPulse 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: #fff;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
    max-width: 280px;
    /* Initial state for entrance animation */
    opacity: 0;
}

.float-card h3 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--text-main); }
.float-card p { font-size: 0.8rem; color: var(--text-body); margin: 0; }
.float-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Card Positioning & Staggered Entrance + Float */
.card-1 {
    top: 10%; right: 10%;
    animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               float 6s ease-in-out 0.9s infinite;
    animation-delay: 0.4s;
}
.card-1 .float-icon { background: #DCFCE7; color: #16A34A; }

.card-2 {
    bottom: 20%; left: 5%;
    z-index: 2;
    animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               float 6s ease-in-out 1.2s infinite;
    animation-delay: 1s;
}
.card-2 .float-icon { background: #FEF9C3; color: #CA8A04; }

.card-3 {
    top: 40%; right: -5%;
    z-index: 3;
    animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               float 6s ease-in-out 1.5s infinite;
    animation-delay: 1.6s;
}
.card-3 .float-icon { background: #DBEAFE; color: #2563EB; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 1.5rem;
}

.section-alt {
    background-color: #fafaf9;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9.414 40l5.95-5.95-1.414-1.414L8 38.586l-5.95-5.95L.636 34.05 6.586 40l-5.95 5.95 1.414 1.414L8 41.414l5.95 5.95 1.414-1.414L9.414 40z' fill='%2300b14f' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    position: relative;
}

/* Smooth fade transitions for alt sections */
.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #fff, transparent);
    pointer-events: none;
}

.section-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}

.section-alt .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    font-size: 1.125rem;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background-color: #fafaf9;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9.414 40l5.95-5.95-1.414-1.414L8 38.586l-5.95-5.95L.636 34.05 6.586 40l-5.95 5.95 1.414 1.414L8 41.414l5.95 5.95 1.414-1.414L9.414 40z' fill='%2300b14f' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    position: relative;
}

/* Smooth fade transitions */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #fff, transparent);
    pointer-events: none;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* ============================================
   USER TYPES (For Renters / For Owners)
   ============================================ */
.user-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.user-type-card {
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid #e8e8e8;
    background: #fff;
    transition: border-color 0.2s;
}

.user-type-card:hover {
    border-color: var(--primary-color);
}

.user-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.user-type-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.user-type-card li {
    padding: 0.625rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
}

.user-type-card li svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--primary-dark);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #0f1f17;
    color: var(--text-light);
    padding: 4rem 1.5rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
}

.footer-section h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.875rem;
}

.footer-bottom p + p {
    margin-top: 0.5rem;
}

.footer-tagline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================
   CUSTOM BUTTONS - Pill Style
   ============================================ */

/* Base button styles */
.btn,
.btn-outline,
.btn-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 3rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, border-color 0.2s;
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Primary buttons */
.btn {
    background: var(--primary-color);
    border: none;
    color: #fff;
    box-shadow: 0 4px 14px -3px rgba(0, 177, 79, 0.4);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -3px rgba(0, 177, 79, 0.5);
}

/* Outline buttons */
.btn-outline {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    transform: translateY(-1px);
}

/* Large primary button */
.btn-lg:not(.btn-outline) {
    background: var(--primary-color);
    border: none;
    color: #fff;
    box-shadow: 0 8px 20px -4px rgba(0, 177, 79, 0.4);
}

.btn-lg:not(.btn-outline):hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(0, 177, 79, 0.5);
}

/* CTA white button */
.cta-btn-white {
    background: #fff !important;
    border: none !important;
    color: var(--primary-darker) !important;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.15);
}

.cta-btn-white:hover {
    background: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero h1 { font-size: 2.75rem; }
    .hero h1 span::after {
        left: 50%;
        width: 120px;
        transform-origin: center center;
        animation: none;
        transform: translateX(-50%) rotate(-1deg);
    }
    .hero-subtitle {
        margin: 0 auto 2rem;
        text-align: center;
    }
    .hero-cta { justify-content: center; }

    /* Mobile hero visual - centered with repositioned cards */
    .hero-visual {
        height: 350px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .visual-blob { width: 280px; height: 280px; }

    /* Reposition cards for mobile - all visible */
    .card-1 {
        top: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .card-2 {
        bottom: 0;
        left: 50%;
        transform: translateX(-70%);
    }
    .card-3 {
        display: flex;
        top: auto;
        bottom: 0;
        right: auto;
        left: 50%;
        transform: translateX(10%) scale(0.9);
    }
}

@media (max-width: 768px) {
    .user-types {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .user-type-card {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Stack cards vertically on small mobile */
    .hero-visual {
        height: auto;
        min-height: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }

    .visual-blob {
        width: 200px;
        height: 200px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .float-card {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        max-width: 100%;
        width: 100%;
    }

    .card-1, .card-2, .card-3 {
        animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .card-1 { animation-delay: 0.4s; }
    .card-2 { animation-delay: 0.55s; }
    .card-3 { animation-delay: 0.7s; display: flex; }

    .nav-links {
        display: none;
    }

    /* Match section padding with hero on mobile */
    .section {
        padding: 3rem 1.5rem;
    }

    .container {
        padding: 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .user-types {
        max-width: 100%;
    }

    .user-type-card {
        padding: 1.5rem;
    }

    .steps-grid {
        gap: 2rem;
    }
}

/* ============================================
   MOBILE LANDSCAPE
   ============================================ */
@media (max-width: 900px) and (orientation: landscape) {
    /* Hero adjustments for landscape */
    .hero {
        min-height: auto;
        padding: 1rem 0;
        padding-top: 70px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 2rem;
        padding: 1rem 1.5rem;
    }

    .hero-text {
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero h1 span::after {
        left: 0;
        transform-origin: left center;
        transform: scaleX(1) rotate(-1deg);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Floating cards - horizontal row layout */
    .hero-visual {
        height: auto;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.5rem;
    }

    .visual-blob {
        width: 200px;
        height: 200px;
    }

    .float-card {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        max-width: 100%;
        padding: 0.75rem 1rem;
    }

    .float-card h3 {
        font-size: 0.875rem;
    }

    .float-card p {
        font-size: 0.75rem;
    }

    .float-icon {
        width: 36px;
        height: 36px;
    }

    .float-icon svg {
        width: 18px;
        height: 18px;
    }

    .card-1, .card-2, .card-3 {
        animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .card-1 { animation-delay: 0.3s; }
    .card-2 { animation-delay: 0.4s; }
    .card-3 { animation-delay: 0.5s; display: flex; }

    /* Trust indicators - fit in landscape */
    .section {
        padding: 2rem 1.5rem;
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .trust-item h3 {
        font-size: 1.75rem;
    }

    .trust-item p {
        font-size: 0.875rem;
    }

    /* User type cards - align buttons at same level */
    .user-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }

    .user-type-card {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
    }

    .user-type-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .user-type-card ul {
        flex: 1;
        margin-bottom: 1.5rem;
    }

    .user-type-card li {
        padding: 0.4rem 0;
        font-size: 0.875rem;
    }

    .user-type-card li svg {
        width: 16px;
        height: 16px;
    }

    .user-type-card .btn {
        margin-top: auto;
        align-self: flex-start;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.875rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Steps grid */
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.875rem;
    }

    /* CTA section */
    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1.5rem 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}
