/* --- Global Styles & Colors --- */
:root {
    --color-white-soft: #F9F9F9;
    --color-green-sage: #B7D2CC;
    --color-green-vibrant: #3C8D7C;
    --color-coral-muted: #E0A39A;
    --color-gold-warm: #F5C77E;
    --color-charcoal-dark: #1A2328;
}

/* Logo image in header */
.header .logo img {
    height: 50px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(43, 41, 41, 0.9));
    transition: filter 0.3s ease;
}

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

*,
*::before,
*::after {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-white-soft);
    color: var(--color-charcoal-dark);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    font-weight: 400;
    font-size: 16px;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-white-soft);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--color-green-vibrant);
    border-radius: 6px;
    border: 2px solid var(--color-white-soft);
}

::-webkit-scrollbar-thumb:hover {
    background: #2d6f63;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-green-vibrant) var(--color-white-soft);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-weight: 800; font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-weight: 800; font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-weight: 600; font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    font-weight: 400;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- Header & Navigation --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 10;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-green-sage);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo,
.header.scrolled .nav-menu a {
    color: var(--color-charcoal-dark);
}

.header.scrolled .nav-menu a:hover {
    color: var(--color-green-vibrant);
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white-soft);
    transition: color 0.3s;
    z-index: 1001;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-menu a {
    margin-left: 2rem;
    font-size: 0.95rem;
    transition: color 0.3s;
    color: var(--color-white-soft);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: var(--color-green-vibrant);
}

.cta-button, .submit-button {
    background: linear-gradient(135deg, #8BC34A 0%, #7CB342 50%, #689F38 100%);
    color: var(--color-white-soft);
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease, transform 0.2s;
    z-index: 1001;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.header.scrolled .cta-button {
    background: linear-gradient(135deg, #8BC34A 0%, #7CB342 50%, #689F38 100%);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.cta-button:hover, .submit-button:hover {
    background: linear-gradient(135deg, #7CB342 0%, #689F38 50%, #558B2F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    text-align: center;
    margin: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-background-scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.scroll-image-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: scrollUp 15s linear infinite;
    will-change: transform;
}

.scroll-image-item {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.scroll-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-background-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 40, 0.75), rgba(60, 141, 124, 0.65));
    z-index: 1;
    pointer-events: none;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 10%;
}

.hero-section h1,
.hero-section p {
    position: relative;
    z-index: 5;
}

.hero-section h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 1.2rem;
    color: var(--color-white-soft);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    max-width: 1000px;
    font-weight: 800;
    letter-spacing: -0.3px;
    text-align: center;
}

.hero-section p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--color-white-soft);
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.2px;
    max-width: 800px;
}

/* --- Plot Map Section --- */
.plot-map-section {
    padding: 3rem 5%;
    background-color: var(--color-white-soft);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
}

.map-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 2rem;
    width: 100% !important;
    height: 700px;
    background-color: transparent;
    align-items: stretch;
    justify-content: flex-start;
    opacity: 1 !important;
    visibility: visible !important;
    animation: containerFadeIn 0.8s ease-out 0.3s forwards;
}

@keyframes containerFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.map-wrapper {
    flex: 0 0 55% !important;
    position: relative;
    background: linear-gradient(135deg, #8BC34A 0%, #7CB342 50%, #689F38 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.2);
    overflow: hidden;
    min-height: 500px;
    max-width: 55% !important;
    width: 55% !important;
    min-width: 55% !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: mapEntrance 1.2s ease-out forwards;
    order: 1 !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    display: block !important;
}

@keyframes mapEntrance {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.plot-labels {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 3rem;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: labelsSlideDown 0.8s ease-out 1s forwards;
    box-sizing: border-box;
}

@keyframes labelsSlideDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.plot-labels span {
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.color-box {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}

.label-available { color: #4CAF50; }
.label-available .color-box { background-color: #4CAF50; }
.label-hot { color: #FFC107; }
.label-hot .color-box { background-color: #FFC107; }
.label-sold { color: #E91E63; }
.label-sold .color-box { background-color: #E91E63; }

#plot-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
    background: white;
    z-index: 0;
}

#plot-canvas:active { cursor: grabbing; }

.mobile-instructions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 35, 40, 0.95);
    color: var(--color-white-soft);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 200;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: none;
    text-align: center;
}

.mobile-instructions.show { opacity: 1; }

/* --- Conversion Panel --- */
.conversion-panel {
    flex: 0 0 43% !important;
    background: var(--color-white-soft);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: visible !important;
    height: auto !important;
    max-height: 100%;
    order: 2 !important;
    max-width: 43% !important;
    width: 43% !important;
    min-width: 43% !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    display: flex !important;
    flex-direction: column;
    margin-left: 0 !important;
    box-sizing: border-box !important;
}

.conversion-panel h3 {
    color: var(--color-green-vibrant);
    margin-bottom: 1.5rem;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    text-align: center;
    font-weight: 700;
}

#plot-micro-details {
    background: #F0F4F4;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.conversion-panel input {
    width: 100%;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--color-green-sage);
    border-radius: 8px;
    background: var(--color-white-soft);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
}

.conversion-panel input:focus {
    outline: none;
    border-color: var(--color-green-vibrant);
    box-shadow: 0 0 0 3px rgba(60, 141, 124, 0.1);
}

.conversion-panel .submit-button {
    width: 100%;
    margin-top: 1rem;
}

.privacy-note {
    font-size: clamp(0.8rem, 1.2vw, 0.85rem);
    color: var(--color-charcoal-dark);
    opacity: 0.75;
    margin-top: 1rem;
    line-height: 1.6;
}

/* --- Trust Section --- */
.trust-section {
    padding: 0 5% 6rem 5%;
    background: linear-gradient(135deg, var(--color-white-soft) 0%, #F5F9F8 100%);
    position: relative;
    overflow-x: hidden;
    min-height: 500px;
    z-index: 1;
}

.trust-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1400px;
    padding: 2rem 0;
    min-height: 450px;
    height: auto;
    z-index: 2;
    display: block;
    visibility: visible;
    cursor: grab;
}

.trust-carousel-container:active {
    cursor: grabbing;
}

.trust-carousel {
    display: flex !important;
    gap: 2.5rem;
    animation: carousel-slide 40s linear infinite;
    width: max-content;
    will-change: transform;
    padding: 1rem 0;
    position: relative;
    z-index: 3;
}

@keyframes carousel-slide {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(calc(-1 * (320px + 2.5rem) * 3));
    }
}

.trust-carousel:hover { animation-play-state: paused; }

.trust-block {
    flex: 0 0 320px;
    min-width: 320px;
    max-width: 320px;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--color-white-soft);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(60, 141, 124, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(60, 141, 124, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 4;
}

.trust-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(60, 141, 124, 0.15);
    border-color: var(--color-green-sage);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-green-vibrant) 0%, var(--color-green-sage) 100%);
    border-radius: 22px;
    padding: 1.2rem;
    box-shadow: 0 6px 20px rgba(60, 141, 124, 0.2);
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    color: var(--color-white-soft);
    stroke-width: 2.2;
}

/* --- Promo Section --- */
.promo-section {
    padding: 2rem 5% 8rem 5%;
    background: linear-gradient(135deg, #0a1929 0%, #1a2328 50%, #0f1416 100%);
    position: relative;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 0;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--color-green-vibrant);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 15s infinite ease-in-out;
}

@keyframes particle-float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.promo-content { color: var(--color-white-soft); }

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.6rem;
    background: rgba(60, 141, 124, 0.15);
    border: 1px solid rgba(60, 141, 124, 0.3);
    border-radius: 50px;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--color-green-sage);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.promo-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-green-sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--color-green-vibrant) 0%, var(--color-green-sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.watchlist-count { display: inline-block; font-weight: 900; margin: 0 0.3em; }

.promo-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 3rem;
    max-width: 550px;
}

.promo-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: left;
    position: relative;
    padding-left: 1rem;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-green-vibrant), transparent);
    border-radius: 2px;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 900;
    color: var(--color-green-vibrant);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.promo-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: rgba(60, 141, 124, 0.1);
    border: 1px solid rgba(60, 141, 124, 0.2);
    border-radius: 30px;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--color-green-sage);
    transition: all 0.3s ease;
}

.promo-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 2.75rem;
    border: none;
    border-radius: 14px;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.promo-button.primary {
    background: linear-gradient(135deg, #8BC34A 0%, #7CB342 50%, #689F38 100%);
    color: var(--color-white-soft);
    box-shadow: 0 10px 40px rgba(124, 179, 66, 0.4);
}

.promo-button.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white-soft);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.promo-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float 8s ease-in-out infinite;
}

.card-1 { top: 5%; left: 5%; width: 220px; }
.card-2 { top: 45%; right: 5%; animation-delay: 2.5s; width: 220px; }
.card-3 { bottom: 10%; left: 15%; animation-delay: 5s; width: 220px; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-content {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.card-text { color: var(--color-white-soft); font-weight: 700; font-size: 1.15rem; }
.card-subtext { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

/* --- Footer --- */
.footer {
    background: linear-gradient(180deg, var(--color-charcoal-dark) 0%, #0f1416 100%);
    color: var(--color-white-soft);
    padding: 4rem 5% 2rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(183, 210, 204, 0.2);
}

.footer-logo {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-green-vibrant);
    margin-bottom: 1rem;
}

.social-icons { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(60, 141, 124, 0.1);
    border-radius: 10px;
    color: var(--color-green-sage);
    transition: all 0.3s ease;
}

.footer-links-list { list-style: none; padding: 0; }
.footer-links-list li { margin-bottom: 0.75rem; }
.footer-links-list a:hover { color: var(--color-green-vibrant); }

.newsletter-signup { display: flex; margin-top: 1rem; }
.newsletter-signup input {
    flex: 1; padding: 0.85rem 1.25rem;
    border-radius: 10px 0 0 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(183, 210, 204, 0.3);
    color: white;
}
.newsletter-button {
    padding: 0.85rem 2rem;
    border-radius: 0 10px 10px 0;
    background: var(--color-green-vibrant);
    color: white;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.footer-bottom {
    display: flex; justify-content: space-between; padding-top: 2rem;
}

/* --- Responsive Media Queries --- */

@media (max-width: 768px) {
    .header { padding: 0.75rem 3%; }
    .nav-menu { display: none; }
    
    .hero-section {
        padding: 6rem 5% 4rem;
        background-attachment: scroll;
    }
    
    .hero-section h1 { font-size: 2rem; }
    
    /* 3D Map Section: Vertical Stack */
    .map-container {
        flex-direction: column !important;
        height: auto !important;
        gap: 1.5rem !important;
    }
    
    .map-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: 450px !important;
        min-height: 450px !important;
        order: 1;
    }
    
    .conversion-panel {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        flex: 0 0 100% !important;
        height: auto !important;
        order: 2;
        padding: 1.5rem !important;
        margin: 0 !important;
    }
    
    .mobile-instructions { display: block; bottom: 60px !important; }
    
    .plot-labels {
        top: 0px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0.8rem 1rem;
        gap: 2rem;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: row !important;
    }
    
    .plot-labels span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        gap: 0.4rem;
    }
    
    .color-box {
        width: 12px;
        height: 12px;
    }
    
    .trust-section { padding: 4rem 5%; }
    
    /* PROMO SECTION MOBILE FIXES */
    .promo-section {
        padding: 4rem 5% 2rem 5%; /* Reduced bottom padding */
    }

    .promo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .promo-title { font-size: 2.5rem; }
    
    /* Hide Promo Features on Mobile */
    .promo-features {
        display: none !important;
    }
    
    .promo-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    /* Ensure all stats show on mobile (override specific hide classes if needed) */
    .stat-item.hide-mobile { display: block !important; }
    
    .promo-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .promo-button {
        width: 100%;
        justify-content: center;
    }
    
    .promo-visual {
        height: 400px; /* Reduced height for mobile */
        margin-top: 1rem;
        display: none;
    }
    
    .floating-card {
        width: 180px !important;
    }
    
    .card-1 { top: 0; left: 0; }
    .card-2 { top: 40%; right: 0; }
    .card-3 { bottom: 0; left: 10%; }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter-signup {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-signup input {
        width: 100%;
        border-radius: 10px;
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        box-sizing: border-box;
    }
    
    .newsletter-button {
        width: 100%;
        border-radius: 10px;
        padding: 1rem 2rem;
        font-size: 1rem;
        box-sizing: border-box;
    }
}

@media (min-width: 769px) {
    .mobile-instructions { display: none; }
   
    .map-container {
        flex-direction: row !important;
    }
    
    .map-wrapper {
        flex: 0 0 55% !important;
        max-width: 55% !important;
    }
    
    .conversion-panel {
        flex: 0 0 43% !important;
        max-width: 43% !important;
    }
    
    .promo-features {
        display: flex !important;
    }
}