/* ============================================
   MIMPI FARM — Landing Page
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fafafa;
  --bg-2: #f3f3f0;
  --bg-3: #e8e8e4;
  --surface: #ffffff;
  --surface-2: #f5f5f2;
  --border: rgba(0, 0, 0, 0.06);
  --border-light: rgba(0, 0, 0, 0.1);
  --text: #1a1a1a;
  --text-secondary: #525252;
  --muted: #737373;
  --accent: #ca8a04;
  --accent-light: #ca8a04;
  --accent-glow: rgba(202, 138, 4, 0.15);
  --gradient-1: linear-gradient(135deg, #ca8a04, #e2a832);
  --gradient-2: linear-gradient(135deg, #ca8a04, #b45309);
  --gradient-3: linear-gradient(135deg, #e2a832, #ca8a04);
  --ig: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --tt: #00f2ea;
  --tw: #1da1f2;
  --threads: #000000;
  --green: #00b894;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(202, 138, 4, 0.08);
  --shadow-lg: 0 8px 48px rgba(202, 138, 4, 0.12);
  --font: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEVMaXFHcEz///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAAD///8AAADKM0FKAAAAG3RSTlMABAgMEBQYHCAkKCwwNDg8QERIT1NXW19jZ2unWmcAAADKSURBVHic7dNLDoAgDEXRVkD8oOL+F2qcOBBj2jjwjm9ySQMhhBBCCPkvNJMrzaT1MG9KjsNs3Q4z7VZPsnVdnWTLbveS7X2+k23v6yLb/p5X2VbvW8lW78vfyFaft5KtPtck29q7SNa3PcnWXmck64/zIVt9rkm2+twXybZ/nw/Z8nNfZAv3dZfNv/dDNn9fD9n8e31kc/d1lM3f90U2e19X2fLr/WQzr/UhW3rfSrb0upFs4bVuslnXushm3uctm3H/ASELyQd87k1hVVEuCwAAAABJRU5ErkJggg==");
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.25;
  pointer-events: none;
}

.section.cta::after {
  display: none;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.gradient-text {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(250, 250, 250, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(202, 138, 4, 0.05);
  transition: var(--transition);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.04);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.035em;
}

.logo-dot {
  color: var(--accent);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--gradient-1);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 80vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(202, 138, 4, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(180, 83, 9, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 10% 60%, rgba(202, 138, 4, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0c0c10 0%, #111118 40%, #0e0e14 100%);
  color: #f0f0f0;
}

/* Circuit board pattern */
.hero-circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(202, 138, 4, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 138, 4, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(0,0,0,0.6) 0%, transparent 70%);
  mask-image:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(0,0,0,0.6) 0%, transparent 70%);
}

/* Horizontal scanline sweep */
.hero-scanline {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(202, 138, 4, 0) 10%,
    rgba(202, 138, 4, 0.25) 30%,
    rgba(226, 168, 50, 0.5) 50%,
    rgba(202, 138, 4, 0.25) 70%,
    rgba(202, 138, 4, 0) 90%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  animation: scanline-sweep 5s linear infinite;
  box-shadow: 0 0 20px 4px rgba(202, 138, 4, 0.1);
}

@keyframes scanline-sweep {
  0% { top: -2%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 102%; opacity: 0; }
}

/* Floating particle canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow--1 {
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(202, 138, 4, 0.2) 0%, rgba(202, 138, 4, 0.05) 50%, transparent 70%);
  filter: blur(40px);
  animation: orb-float 7s ease-in-out infinite;
}

.hero-glow--2 {
  bottom: -15%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.14) 0%, transparent 65%);
  filter: blur(60px);
  animation: orb-float 9s ease-in-out infinite reverse;
}

.hero-glow--3 {
  top: 30%;
  left: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(202, 138, 4, 0.1) 0%, transparent 65%);
  filter: blur(50px);
  animation: orb-float 11s ease-in-out infinite 2s;
}

@keyframes orb-float {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-48%) translateY(-15px); }
}

/* Vignette on bottom edge for transition to light sections */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 4;
}

.hero-content {
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(74, 222, 128, 0.6); }
  50% { opacity: 0.4; box-shadow: 0 0 12px rgba(74, 222, 128, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 0 60px rgba(202, 138, 4, 0.15);
}

.hero .gradient-text {
  background: linear-gradient(90deg, #e2a832, #fbbf24, #ca8a04, #e2a832);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.hero .hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(202, 138, 4, 0.5);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(202, 138, 4, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
  animation: btn-glow 3s ease-in-out infinite;
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
  50% { box-shadow: 0 4px 32px rgba(202, 138, 4, 0.45); }
}

.btn-primary:hover {
  box-shadow: 0 8px 32px var(--accent-glow);
  color: #fff;
  animation: none;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(202, 138, 4, 0.1);
  color: var(--text);
}

.farm-section {
  background: var(--bg);
  padding: 60px 0 80px;
  position: relative;
  overflow: visible;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Farm Visual ---------- */
.farm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 140px);
  gap: 14px;
  justify-content: center;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.farm-phone {
  position: relative;
}

.phone-frame {
  width: 140px;
  height: 240px;
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 2px 12px rgba(202, 138, 4, 0.08);
}

.phone-notch {
  width: 48px;
  height: 6px;
  background: #e0e0ec;
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  padding: 6px 10px 10px;
  height: calc(100% - 6px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.screen-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.screen-header .platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.screen-header .task-label {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Platform colors */
.farm-phone[data-platform="ig"] .platform-dot { background: #e1306c; }
.farm-phone[data-platform="tt"] .platform-dot { background: var(--tt); }
.farm-phone[data-platform="tw"] .platform-dot { background: var(--tw); }
.farm-phone[data-platform="ig"] .screen-header { border-bottom-color: rgba(225, 48, 108, 0.2); }
.farm-phone[data-platform="tt"] .screen-header { border-bottom-color: rgba(0, 242, 234, 0.15); }
.farm-phone[data-platform="tw"] .screen-header { border-bottom-color: rgba(29, 161, 242, 0.15); }

.screen-activity {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.screen-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.screen-row .avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface-2);
  flex-shrink: 0;
}

.screen-row .text-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.screen-row .text-lines span {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.06);
}

.screen-row .text-lines span:first-child { width: 85%; }
.screen-row .text-lines span:last-child { width: 60%; }

/* Action indicator overlay */
.screen-action-indicator {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  z-index: 3;
}

.screen-action-indicator .action-icon {
  font-size: 2rem;
  transform: scale(0);
  transition: none;
}

.farm-phone.is-active .phone-frame {
  border-color: rgba(0, 184, 148, 0.5);
  box-shadow: 0 0 24px rgba(0, 184, 148, 0.25), 0 0 8px rgba(0, 184, 148, 0.15) inset;
  transform: scale(1.03);
}

.farm-phone .phone-frame {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.farm-phone.is-scrolling .screen-activity {
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.farm-phone.show-action .screen-action-indicator {
  opacity: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.farm-phone.show-action .action-icon {
  transform: scale(1);
  animation: action-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes action-pop {
  0% { transform: scale(0) rotate(-10deg); }
  50% { transform: scale(1.4) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Connector lines between phones */
.farm-grid::before,
.farm-grid::after {
  content: '';
  position: absolute;
  border: 1px dashed rgba(202, 138, 4, 0.15);
  pointer-events: none;
  animation: connector-pulse 1.5s ease-in-out infinite;
}

.farm-grid::before {
  top: 120px;
  left: 140px;
  width: calc(100% - 280px);
  height: 0;
}

.farm-grid::after {
  top: 240px;
  left: 70px;
  width: 0;
  height: calc(100% - 480px);
}

@keyframes connector-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Floating notifications */
.farm-notifications {
  position: absolute;
  inset: -80px 0 0 0;
  pointer-events: none;
  overflow: visible;
}

.farm-notif {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  will-change: transform, opacity;
  animation: notif-drift 2s ease-out forwards;
  box-shadow: 0 4px 12px rgba(202, 138, 4, 0.1);
}

@keyframes notif-drift {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.7);
  }
  10% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  }
  20% {
    transform: translateY(-15px) scale(1);
  }
  60% {
    opacity: 1;
    transform: translateY(-50px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-80px) scale(0.85);
  }
}

/* Activity ticker */
.farm-ticker {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.farm-ticker-track {
  display: flex;
  gap: 24px;
  animation: ticker-scroll 18s linear infinite;
  width: max-content;
}

.farm-ticker-track span {
  font-size: 0.6rem;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.farm-ticker-track .ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(202, 138, 4, 0.1);
  justify-content: center;
  width: 100%;
  max-width: 560px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fbbf24;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Brands / Social Proof ---------- */
.brands {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.brands-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.brand-item:hover {
  opacity: 1;
}

.brand-item .brand-icon {
  font-size: 1.6rem;
}

/* ---------- Platforms ---------- */
.platforms {
  background: var(--bg);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.platform-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.platform-card.instagram::before {
  background: var(--ig);
}

.platform-card.tiktok::before {
  background: var(--tt);
}

.platform-card.twitter::before {
  background: var(--tw);
}

.platform-card.threads::before {
  background: linear-gradient(135deg, #000000, #444444);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 138, 4, 0.3);
  box-shadow: 0 0 30px rgba(202, 138, 4, 0.1);
}

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.platform-icon svg {
  width: 28px;
  height: 28px;
}

.platform-card.instagram .platform-icon {
  background: linear-gradient(45deg, rgba(240, 148, 51, 0.15), rgba(188, 24, 136, 0.15));
  color: #e1306c;
}

.platform-card.tiktok .platform-icon {
  background: rgba(0, 242, 234, 0.1);
  color: var(--tt);
}

.platform-card.twitter .platform-icon {
  background: rgba(29, 161, 242, 0.1);
  color: var(--tw);
}

.platform-card.threads .platform-icon {
  background: rgba(0, 0, 0, 0.06);
  color: #000000;
}

.platform-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.platform-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.platform-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platform-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.platform-features li .check {
  color: var(--green);
  font-weight: bold;
  flex-shrink: 0;
}

/* ---------- How It Works ---------- */
.how-it-works {
  background: var(--bg-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--border-light);
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: border-color var(--transition);
}

.step:hover .step-number {
  border-color: var(--accent);
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Features ---------- */
.features {
  background: var(--bg);
  overflow: hidden;
}

.features-scroll-wrap {
  margin-top: 48px;
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.features-scroll {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: features-marquee 40s linear infinite;
  will-change: transform;
}

.features-scroll:hover {
  animation-play-state: paused;
}

@keyframes features-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.feature-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.25s ease;
  cursor: default;
}

.feature-card:hover {
  border-color: rgba(202, 138, 4, 0.35);
  box-shadow: 0 8px 32px rgba(202, 138, 4, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

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

.feature-card:nth-child(3n+2) .feature-icon {
  background: rgba(180, 83, 9, 0.12);
  color: #b45309;
}

.feature-card:nth-child(3n+3) .feature-icon {
  background: rgba(0, 184, 148, 0.1);
  color: var(--green);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ---------- Pricing ---------- */
.pricing {
  background: var(--bg-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card .price-features {
  flex: 1;
}

.price-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 138, 4, 0.3);
  box-shadow: 0 0 30px rgba(202, 138, 4, 0.1);
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-card-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card-header .price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.price-card-header .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card-header .price-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-features li .check {
  color: var(--green);
  font-weight: bold;
  flex-shrink: 0;
}

.price-features li .check-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.price-disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 0 0;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.price-features li.muted-feature {
  opacity: 0.4;
}

.price-features li.muted-feature .check {
  color: var(--muted);
}

.price-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* 2-column pricing layout */
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 3-column pricing layout */
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Savings badge */
.price-savings {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(0, 184, 148, 0.1);
  border: 1px solid rgba(0, 184, 148, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* Add-on banner */
.addon-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-top: 32px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.addon-banner:hover {
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}

.addon-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.addon-content {
  flex: 1;
}

.addon-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.addon-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.addon-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.addon-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(202, 138, 4, 0.3);
  box-shadow: 0 0 30px rgba(202, 138, 4, 0.1);
}

.testimonial-stars {
  color: #ffc312;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--bg-2);
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-question .arrow,
.faq-arrow {
  transition: transform var(--transition);
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 16px;
  width: 20px;
  height: 20px;
}

.faq-item.open .faq-question .arrow,
.faq-item.open .faq-question .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--bg);
  padding: 120px 0;
}

.cta-box {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: cta-glow 4s ease-in-out infinite;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(202, 138, 4, 0.1); }
  50% { box-shadow: 0 0 40px rgba(180, 83, 9, 0.12); }
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--muted);
  font-size: 1.1rem;
  transition: color var(--transition);
}

.footer-socials a:hover {
  color: var(--text);
}

/* ---------- WhatsApp Buttons ---------- */
.wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-wa {
  gap: 10px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- Floating WhatsApp Bubble ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px 14px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
  animation: wa-bounce 2s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  background: #22c35e;
  color: #fff;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wa-float-label {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.wa-float:hover {
  animation: none;
  transform: scale(1.05);
}

/* Fade in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .farm-grid {
    grid-template-columns: repeat(auto-fit, 100px);
    gap: 10px;
  }

  .phone-frame {
    width: 100px;
    height: 170px;
  }

  .farm-ticker {
    width: 100%;
  }

  .pricing-grid,
  .pricing-grid-2,
  .pricing-grid-3,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .addon-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
    max-width: 480px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-2);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .wa-float {
    bottom: 16px;
    right: 16px;
    padding: 12px;
    border-radius: 50%;
  }

  .wa-float-label {
    display: none;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }

  .farm-grid {
    grid-template-columns: repeat(auto-fit, 85px);
    gap: 8px;
  }

  .phone-frame {
    width: 85px;
    height: 145px;
  }

  .screen-header .task-label {
    font-size: 0.45rem;
  }

  .screen-row .avatar {
    width: 14px;
    height: 14px;
  }

  .screen-activity {
    gap: 5px;
  }

  .farm-ticker {
    width: 100%;
  }
}
