/* ========================================
   GLOBAL LANDING PAGE SCOPED STYLES
   ======================================== */
.landing-page {
    background: #fff;
}

/* ========================================
   HERO SECTION
   ======================================== */
.landing-page .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #081c15;
    overflow: hidden;
    padding-top: 80px;
}

.landing-page .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.landing-page .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.landing-page .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(27, 67, 50, 0.4) 0%, transparent 70%);
}

.landing-page .hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .landing-page .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

.landing-page .hero-text {
    max-width: 640px;
}

@media (max-width: 1024px) {
    .landing-page .hero-text {
        margin: 0 auto;
    }
}

.landing-page .hero-badge {
    margin-bottom: 1.5rem;
}

.landing-page .hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.landing-page .hero-title-line {
    display: block;
}

.landing-page .text-gradient-accent {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-page .hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.landing-page .hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
    .landing-page .hero-actions {
        justify-content: center;
    }
}

.landing-page .hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .landing-page .hero-stats {
        justify-content: center;
    }
}

.landing-page .hero-stat {
    display: flex;
    flex-direction: column;
}

.landing-page .hero-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4ade80;
}

.landing-page .hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.landing-page .hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Floating Card Visual */
.landing-page .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.landing-page .hero-product-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.landing-page .hero-product-image {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
}

.landing-page .hero-product-info h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.landing-page .hero-product-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Scroll Indicator */
.landing-page .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-page .scroll-indicator-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.landing-page .scroll-indicator-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #4ade80;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* ========================================
   TRUST BADGES SECTION
   ======================================== */
.landing-page .trust-section {
    padding: 3rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.landing-page .trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
}

.landing-page .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-weight: 500;
    font-size: 0.875rem;
}

.landing-page .trust-logo {
    height: 36px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.landing-page .trust-item:hover .trust-logo {
    filter: grayscale(0);
    opacity: 1;
}

.landing-page .trust-icon {
    font-size: 1.5rem;
}

/* ========================================
   COMMON SECTION HEADERS & SPACING
   ======================================== */
.landing-page section,
.landing-page .section,
.landing-page .solutions-section,
.landing-page .crop-teaser,
.landing-page .trust-section,
.landing-page .stats-section,
.landing-page .cta-section {
    padding: 80px 0 !important;
}

.landing-page .solutions-section {
    background: #ffffff;
}

.landing-page .trust-section {
    padding: 40px 0 !important;
    /* Trust section uses less padding */
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.landing-page .section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.landing-page .section-label {
    display: inline-block;
    padding: 0.35rem 1.25rem;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 99px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.landing-page .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #081c15;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.landing-page .section-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
}

.landing-page .crop-teaser-subtitle {
    font-size: 1.25rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
    margin-bottom: 0 !important;
}

@media (min-width: 1024px) {
    .landing-page .crop-teaser-subtitle {
        white-space: nowrap;
        font-size: 1.25rem !important;
        /* Slightly smaller to ensure single-line fit */
    }
}

/* Specific overrides for Crop Teaser (Dark Section) */
.landing-page .crop-teaser .section-header {
    margin-bottom: 2.5rem;
}

.landing-page .crop-teaser .section-label {
    margin-bottom: 0.5rem;
    background: rgba(74, 222, 128, 0.25);
    border-color: rgba(74, 222, 128, 0.4);
    color: #4ade80;
}

.landing-page .crop-teaser .section-title {
    color: white !important;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.landing-page .crop-teaser-subtitle {
    font-size: 1.35rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.landing-page .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .landing-page .solutions-grid {
        grid-template-columns: 1fr;
    }
}

.landing-page .solution-card {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    height: 440px;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.landing-page .solution-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.landing-page .solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.landing-page .solution-card:hover .solution-card-image img {
    transform: scale(1.1);
}

.landing-page .solution-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 20%, rgba(8, 28, 21, 0.95) 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.landing-page .solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.landing-page .solution-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
}

.landing-page .solution-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.landing-page .solution-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-weight: 700;
    font-size: 0.9375rem;
}

/* ========================================
   CROP DATABASE TEASER
   ======================================== */
.landing-page .crop-teaser {
    background: #081c15;
}

.landing-page .crops-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 1100px) {
    .landing-page .crops-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .landing-page .crops-preview-grid {
        grid-template-columns: 1fr;
    }
}

.landing-page .crop-preview-card {
    position: relative;
    border-radius: 1.75rem;
    overflow: hidden;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.3);
}

.landing-page .crop-preview-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.landing-page .crop-preview-card:hover .crop-preview-card__image {
    transform: scale(1.1);
}

.landing-page .crop-preview-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
}

.landing-page .crop-preview-card__title {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.landing-page .crop-preview-card__region {
    color: rgba(74, 222, 128, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ========================================
   STATS GRID & STAT BOXES
   ======================================== */
.landing-page .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: 6rem;
}

@media (max-width: 1024px) {
    .landing-page .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .landing-page .stats-grid {
        grid-template-columns: 1fr !important;
    }
}

.landing-page .stat-box {
    background: #f8fafc;
    padding: 3rem 1.5rem;
    border-radius: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.landing-page .stat-box:hover {
    border-color: #4ade80;
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
}

.landing-page .stat-box__value {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: #081c15;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.landing-page .stat-box__label {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   TESTIMONIALS (Restored & Fixed)
   ======================================== */
.landing-page .testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
}

@media (max-width: 992px) {
    .landing-page .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

.landing-page .testimonial-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 2.5rem;
    padding: 3.5rem;
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.05);
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.landing-page .testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.12);
    border-color: #4ade80;
}

.landing-page .testimonial-card__quote {
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
    color: #334155 !important;
    font-style: italic !important;
    margin-bottom: 3rem !important;
    position: relative;
    padding-left: 0;
    z-index: 1;
}

.landing-page .testimonial-card__quote::before {
    content: '“';
    position: absolute;
    top: -1.75rem;
    left: -0.75rem;
    font-size: 5rem;
    color: rgba(74, 222, 128, 0.18);
    font-family: serif;
    z-index: -1;
    line-height: 1;
}

.landing-page .testimonial-card__author {
    margin-top: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 2.5rem !important;
}

.landing-page .testimonial-card__author img {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid white !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12) !important;
}

.landing-page .testimonial-card__author-name {
    display: block !important;
    font-weight: 800 !important;
    color: #081c15 !important;
    font-size: 1.15rem !important;
    margin-bottom: 0.25rem !important;
}

.landing-page .testimonial-card__author-role {
    display: block !important;
    font-size: 0.875rem !important;
    color: #64748b !important;
    font-weight: 500;
}

/* ========================================
   CTA SECTION
   ======================================== */
.landing-page .cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #081c15 0%, #1b4332 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.landing-page .cta-section__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.landing-page .cta-section__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ========================================
   BUTTONS (ACCENT)
   ======================================== */
.landing-page .btn-accent {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #081c15 !important;
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 12px 25px -5px rgba(74, 222, 128, 0.4);
    border: none;
}

.landing-page .btn-accent:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -10px rgba(74, 222, 128, 0.5);
}

.landing-page .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-page .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}