
  :root {
    --brand-dark: #1A3A02;
    --accent-orange: #f97316;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --bg-surface: #F8FAFC;
  }

  /* --- STRUCTURE --- */
  .cropsupply-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Inter', sans-serif;
  }

  .cropsupply-card {
    background: white;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(26, 58, 2, 0.12);
    border: 1px solid var(--border-color);
    min-height: 620px;
  }

  /* --- VISUAL SIDE --- */
  .cropsupply-visual {
    flex: 0.9;
    background-color: var(--brand-dark);
    position: relative;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .visual-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 100% 0%, black, transparent 80%);
  }

  .visual-content-inner { position: relative; z-index: 2; color: white; }

  .brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .icon-frame {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 24px;
  }

  .visual-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 15px;
  }

  .visual-description {
    font-size: 1.1rem; opacity: 0.7; line-height: 1.6; max-width: 320px;
  }

  /* --- CONTENT SIDE --- */
  .cropsupply-content {
    flex: 1.1;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
  }

  .platform-meta {
    display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase;
  }

  .pulse-indicator { width: 8px; height: 8px; background: #10B981; border-radius: 50%; position: relative; }
  .pulse-indicator::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #10B981; animation: pulse 2s infinite;
  }

  @keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(2); opacity: 0; } }

  .tagline { color: var(--brand-dark); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 12px; }

  .main-title {
    font-family: 'Space Grotesk', sans-serif; font-size: 3rem; line-height: 1; font-weight: 700; color: var(--text-main); letter-spacing: -2px; margin-bottom: 24px;
  }

  .main-title span { color: var(--brand-dark); }

  .main-subtext { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 40px; max-width: 480px; }

  /* --- BUTTONS: ZERO HOVER CHANGE --- */
  .action-grid { display: flex; flex-direction: column; gap: 16px; }

  .cropsupply-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: none !important; /* Disables all timing transitions */
  }

  .btn-icon {
    width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  }

  .btn-text { display: flex; flex-direction: column; }
  .btn-text strong { font-size: 16px; }
  .btn-text small { font-size: 12px; opacity: 0.7; font-weight: 500; }

  /* BUYER (ORANGE) - LOCKED STATE */
  .cropsupply-btn-buyer {
    background: var(--accent-orange) !important;
    color: white !important;
  }
  .cropsupply-btn-buyer .btn-icon {
    background: rgba(255,255,255,0.15) !important;
  }
  .cropsupply-btn-buyer:hover {
    background: var(--accent-orange) !important; /* No color change on hover */
    box-shadow: none !important;
    transform: none !important;
  }

  /* SUPPLIER (OUTLINE) - LOCKED STATE */
  .cropsupply-btn-outline {
    border: 1px solid var(--border-color) !important;
    color: var(--text-main) !important;
    background: var(--bg-surface) !important;
  }
  .cropsupply-btn-outline .btn-icon {
    background: white !important;
    color: var(--brand-dark) !important;
  }
  .cropsupply-btn-outline:hover {
    background: var(--bg-surface) !important; /* No color change on hover */
    border-color: var(--border-color) !important;
    color: var(--text-main) !important;
    box-shadow: none !important;
    transform: none !important;
  }

  /* MOBILE */
  @media (max-width: 992px) {
    .cropsupply-card { flex-direction: column; }
    .cropsupply-visual { padding: 40px; min-height: 300px; }
    .cropsupply-content { padding: 40px; }
    .main-title { font-size: 2.2rem; }
  }

