/* 
 * CSS - CropsConnect Landing — Premium Tech Design
 * Aseagro × CropsConnect. IA, dinamismo, glassmorphism.
 */

/* ========================================================
   GLOBAL OVERRIDES: header/body/footer en modo oscuro
   ======================================================== */
body.page-template-template-cropsconnect {
    background: #0a0f1a;
}



body.page-template-template-cropsconnect .site-header__cta {
    background: #8BC53F;
    color: #0a0f1a;
    border-color: #8BC53F;
}



/* ========================================================
   VARIABLES LOCALES CROPSCONNECT
   ======================================================== */
.page-cropsconnect {
    --crops-green: #8BC53F;
    --crops-green-dark: #6B9B2A;
    --crops-blue: #0D5C8C;
    --crops-blue-dark: #043A6B;
    --crops-dark: #0a0f1a;
    --crops-dark-2: #111827;
    --crops-glow-green: rgba(139, 197, 63, 0.4);
    --crops-glow-blue: rgba(13, 92, 140, 0.4);
    background: var(--crops-dark);
    color: #fff;
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px var(--crops-glow-green), 0 0 60px rgba(139,197,63,0.1); }
    50%      { box-shadow: 0 0 40px var(--crops-glow-green), 0 0 80px rgba(139,197,63,0.2); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.03; }
    50%      { opacity: 0.08; }
}

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

@keyframes scanLine {
    0%   { top: -2px; }
    100% { top: 100%; }
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(139,197,63,0.2); }
    50%      { border-color: rgba(139,197,63,0.5); }
}

@keyframes typewriter {
    from { width: 0; }
    to   { width: 100%; }
}

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

@keyframes orbit {
    from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

.crops-animate {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.crops-animate.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.crops-animate--up { transform: translateY(50px); }
.crops-animate--left { transform: translateX(-50px); }
.crops-animate--right { transform: translateX(50px); }
.crops-animate--scale { transform: scale(0.9); }

/* ========================================================
   HERO
   ======================================================== */
.crops-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(13,92,140,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(139,197,63,0.08) 0%, transparent 50%),
                var(--crops-dark);
}

/* Animated Grid BG */
.crops-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139,197,63,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,197,63,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 4s ease-in-out infinite;
    z-index: 1;
}

.crops-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.25;
    filter: saturate(0.6);
}

/* Dark overlay gradient */
.crops-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        90deg, 
        rgba(10,15,26,0.95) 0%, 
        rgba(10,15,26,0.7) 40%, 
        rgba(10,15,26,0.4) 70%, 
        rgba(10,15,26,0.6) 100%
    );
}

.crops-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 1340px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.crops-hero__content {
    animation: fadeInLeft 1s ease-out;
}

.crops-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(139,197,63,0.12);
    color: var(--crops-green);
    border: 1px solid rgba(139,197,63,0.25);
    margin-bottom: 1.5rem;
}

.crops-hero__badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--crops-green);
    animation: blink 2s infinite;
}

.crops-hero__title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -0.03em;
}

.crops-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--crops-green), #c2e87a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crops-hero__desc {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.crops-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.crops-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: var(--crops-green);
    color: var(--crops-dark);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.crops-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.crops-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--crops-glow-green);
    color: var(--crops-dark);
}

.crops-btn-primary:hover::after {
    transform: translateX(100%);
}

.crops-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.crops-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Stats strip */
.crops-hero__stats {
    display: flex;
    gap: 2.5rem;
}

.crops-hero__stat {
    text-align: left;
}

.crops-hero__stat-number {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 2rem;
    font-weight: 800;
    color: var(--crops-green);
    line-height: 1;
}

.crops-hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

/* Hero Visual (right side) */
.crops-hero__visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.crops-hero__device {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(139,197,63,0.2);
    animation: pulseGlow 4s ease-in-out infinite;
}

.crops-hero__device img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

/* Scanner effect over device */
.crops-hero__device::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--crops-green), transparent);
    animation: scanLine 3s linear infinite;
    z-index: 2;
}

/* Floating Orbs */
.crops-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.crops-hero__orb--1 {
    width: 300px;
    height: 300px;
    background: rgba(139,197,63,0.08);
    top: 10%;
    right: -5%;
    animation: float 8s ease-in-out infinite;
}

.crops-hero__orb--2 {
    width: 200px;
    height: 200px;
    background: rgba(13,92,140,0.1);
    bottom: 10%;
    left: -3%;
    animation: float 6s ease-in-out infinite 1s;
}

/* ========================================================
   SOCIAL PROOF — Trusted Strip
   ======================================================== */
.crops-trust {
    position: relative;
    padding: 3rem 2rem;
    background: var(--crops-dark-2);
    border-top: 1px solid rgba(139,197,63,0.1);
    border-bottom: 1px solid rgba(139,197,63,0.1);
}

.crops-trust__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.crops-trust__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.crops-trust__item svg {
    width: 20px;
    height: 20px;
    color: var(--crops-green);
    flex-shrink: 0;
}

.crops-trust__item strong {
    color: #fff;
}

/* ========================================================
   PLATAFORMA — Features Grid
   ======================================================== */
.crops-platform {
    padding: 7rem 2rem;
    position: relative;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(13,92,140,0.08) 0%, transparent 50%),
        var(--crops-dark);
}

.crops-platform__inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.crops-section-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-family: var(--font-mono, monospace);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(13,92,140,0.15);
    color: var(--crops-blue);
    color: #5ba8d4;
    border: 1px solid rgba(13,92,140,0.25);
    margin-bottom: 1.25rem;
}

.crops-section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.crops-section-header h2 span {
    color: var(--crops-green);
}

.crops-section-header p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards - Glassmorphism */
.crops-platform__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.crops-feature {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.crops-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,197,63,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crops-feature:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(139,197,63,0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 60px rgba(139,197,63,0.05);
}

.crops-feature:hover::before {
    opacity: 1;
}

.crops-feature__head {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.crops-feature__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(139,197,63,0.2);
    position: relative;
}

.crops-feature__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crops-feature__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(139,197,63,0.2));
}

.crops-feature__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.crops-feature__tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.crops-feature__tag {
    font-family: var(--font-mono, monospace);
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    background: rgba(139,197,63,0.1);
    color: var(--crops-green);
    border: 1px solid rgba(139,197,63,0.15);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.crops-feature__desc {
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-size: 0.95rem;
}

.crops-feature__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--crops-green);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.crops-feature__link:hover {
    gap: 10px;
    color: var(--crops-green);
}

/* ========================================================
   METRICS — Dashboard Style Numbers
   ======================================================== */
.crops-metrics {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--crops-blue-dark) 0%, var(--crops-blue) 100%);
    position: relative;
    overflow: hidden;
}

.crops-metrics::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.crops-metrics__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.crops-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.crops-metric {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.crops-metric:hover {
    transform: translateY(-4px);
}

.crops-metric__number {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--crops-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.crops-metric__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ========================================================
   TECNOLOGIA — Split Layout
   ======================================================== */
.crops-tech {
    padding: 7rem 2rem;
    background: var(--crops-dark);
    position: relative;
    overflow: hidden;
}

.crops-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(139,197,63,0.15), transparent);
}

.crops-tech__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.crops-tech__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.crops-tech__row:last-child {
    margin-bottom: 0;
}

.crops-tech__row--reverse {
    direction: rtl;
}

.crops-tech__row--reverse > * {
    direction: ltr;
}

.crops-tech__media {
    position: relative;
}

.crops-tech__img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.crops-tech__img-wrapper img {
    width: 100%;
    display: block;
    border-radius: 16px;
    transition: transform 0.6s ease;
}

.crops-tech__img-wrapper:hover img {
    transform: scale(1.03);
}

/* Scanline overlay on images */
.crops-tech__img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(139,197,63,0.03) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.crops-tech__content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.crops-tech__content h3 span {
    color: var(--crops-green);
}

.crops-tech__content > p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.crops-tech__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crops-tech__list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.crops-tech__list-item:last-child {
    border-bottom: none;
}

.crops-tech__list-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(139,197,63,0.15);
    border: 1px solid rgba(139,197,63,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.crops-tech__list-check svg {
    width: 10px;
    height: 10px;
    color: var(--crops-green);
}

.crops-tech__list-text {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.crops-tech__list-text strong {
    color: #fff;
}

/* ========================================================
   WHATSAPP IA — Feature Section
   ======================================================== */
.crops-whatsapp {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(139,197,63,0.06) 0%, var(--crops-dark-2) 50%, rgba(13,92,140,0.06) 100%);
    border-top: 1px solid rgba(139,197,63,0.08);
    border-bottom: 1px solid rgba(139,197,63,0.08);
}

.crops-whatsapp__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.crops-whatsapp__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 3s ease-in-out infinite;
    --crops-glow-green: rgba(37,211,102,0.3);
}

.crops-whatsapp__icon svg {
    width: 40px;
    height: 40px;
    color: #25D366;
}

.crops-whatsapp h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.crops-whatsapp h2 span {
    color: #25D366;
}

.crops-whatsapp__desc {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.crops-whatsapp__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.crops-whatsapp__feat {
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
}

.crops-whatsapp__feat h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.crops-whatsapp__feat p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================================
   FAQ — Accordion
   ======================================================== */
.crops-faq {
    padding: 7rem 2rem;
    background: var(--crops-dark);
}

.crops-faq__inner {
    max-width: 800px;
    margin: 0 auto;
}

.crops-faq__item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s ease;
}

.crops-faq__item:hover {
    border-color: rgba(139,197,63,0.2);
}

.crops-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s ease;
}

.crops-faq__question:hover {
    color: var(--crops-green);
}

.crops-faq__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--crops-green);
    transition: transform 0.3s ease;
}

.crops-faq__item.is-open .crops-faq__chevron {
    transform: rotate(180deg);
}

.crops-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.crops-faq__item.is-open .crops-faq__answer {
    max-height: 300px;
}

.crops-faq__answer-inner {
    padding: 0 2rem 1.5rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================================
   CTA FINAL
   ======================================================== */
.crops-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--crops-blue-dark) 0%, var(--crops-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.crops-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139,197,63,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(13,92,140,0.08) 0%, transparent 50%);
}

.crops-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.crops-cta h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #fff;
    margin-bottom: 1rem;
}

.crops-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.crops-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
    .crops-hero__inner {
        grid-template-columns: 1fr;
        padding: 7rem 2rem 4rem;
        text-align: center;
    }
    .crops-hero__desc { margin: 0 auto 2.5rem; }
    .crops-hero__actions { justify-content: center; }
    .crops-hero__stats { justify-content: center; }
    .crops-hero__visual { max-width: 500px; margin: 0 auto; }
    .crops-platform__grid { grid-template-columns: 1fr; }
    .crops-metrics__grid { grid-template-columns: repeat(2, 1fr); }
    .crops-tech__row,
    .crops-tech__row--reverse { grid-template-columns: 1fr; gap: 2rem; }
    .crops-tech__row--reverse { direction: ltr; }
    .crops-tech::before { display: none; }
}

@media (max-width: 768px) {
    .crops-hero__stats { flex-direction: column; gap: 1rem; align-items: center; }
    .crops-trust__inner { flex-direction: column; text-align: center; }
    .crops-whatsapp__features { grid-template-columns: 1fr; }
    .crops-hero__orb { display: none; }
}

@media (max-width: 480px) {
    .crops-hero__actions { flex-direction: column; align-items: stretch; text-align: center; }
    .crops-metrics__grid { grid-template-columns: 1fr; }
}
