@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg-base: #0a0a0a;
  --bg-surface: #111111;
  --bg-surface-light: #1a1a1a;
  
  --accent-gold: #c9a84c;
  --accent-gold-hover: #dbc27a;
  
  --text-primary: #ffffff;
  --text-muted: #a0a0a0;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.05);
  --border-gold: 1px solid rgba(201, 168, 76, 0.3);
}

/* Base Reset & Globals */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Texture & Atmosphere Overlay */
.grain-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none; z-index: 9998; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.grid-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), 
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, transparent 70%);
}
.glow-orb {
  position: absolute; width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, rgba(10,10,10,0) 60%);
  top: -20vh; right: -10vw; pointer-events: none; z-index: -1;
}

/* Custom Cursor */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none; z-index: 9999;
}
.cursor-dot {
  width: 6px; height: 6px;
  background-color: var(--accent-gold);
  transition: transform 0.15s ease-out;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}
body.cursor-hover .cursor-dot { transform: translate(-50%, -50%) scale(0.2); }
body.cursor-hover .cursor-ring {
  width: 50px; height: 50px;
  background-color: rgba(201, 168, 76, 0.1);
  border-color: var(--accent-gold);
}

/* Typography */
h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-display);
  font-weight: 400; line-height: 1.15;
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: var(--space-sm); }
p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }

.text-gold { color: var(--accent-gold); }
.text-italic { font-style: italic; }
.text-center { text-align: center; }

/* Utilities */
.container { width: 90%; max-width: 1280px; margin: 0 auto; }
.section { padding: var(--space-xl) 0; }
.section-darker { background-color: var(--bg-surface); }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.divider { width: 100%; height: 1px; background: var(--border-subtle); margin: var(--space-lg) 0; }

/* Buttons & Links */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.2rem; font-family: var(--font-body);
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.1em; border: 1px solid var(--accent-gold);
  background: var(--bg-surface); color: var(--text-primary);
  transition: var(--transition-smooth);
}
.btn:hover { background: var(--accent-gold); color: var(--bg-base); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: var(--accent-gold); background: transparent; color: var(--accent-gold); }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent-gold); font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.link-arrow:hover { gap: 0.8rem; }

/* Header & Nav */
header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.5rem 0; background: transparent;
  transition: background var(--transition-smooth), padding var(--transition-smooth);
}
header.scrolled { padding: 1rem 0; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(12px); border-bottom: var(--border-subtle); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo.display-font { font-size: 1.8rem; font-weight: 600; letter-spacing: 0.02em; }
.nav-links { display: none; gap: var(--space-md); align-items: center; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.nav-links a:hover { color: var(--text-primary); }

/* Components: Cards */
.card {
  background: var(--bg-surface-light); border: var(--border-subtle);
  padding: var(--space-lg) var(--space-md); border-top: 2px solid transparent;
  transition: var(--transition-smooth);
}
.card:hover { transform: translateY(-8px); border-top-color: var(--accent-gold); background: rgba(26,26,26,0.8); }
.card-number { font-family: var(--font-display); font-size: 4rem; color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: var(--space-sm); font-style: italic; }
.card-title { font-size: 1.4rem; color: var(--text-primary); font-weight: 400; }
.card-subtitle { font-size: 0.9rem; color: var(--accent-gold); font-style: italic; margin-bottom: var(--space-sm); }
.card-icon { width: 32px; height: 32px; margin-bottom: var(--space-sm); opacity: 0.7; }
.card-icon svg { width: 100%; height: 100%; fill: var(--accent-gold); }

/* Services Row */
.service-row { display: flex; flex-direction: column; padding: var(--space-md) 0; border-bottom: var(--border-subtle); transition: var(--transition-smooth); }
@media (min-width: 768px) { .service-row { flex-direction: row; justify-content: space-between; align-items: center; } }
.service-row:hover { padding-left: var(--space-md); border-bottom-color: var(--accent-gold); }
.service-name { font-size: 1.5rem; }
.service-desc { color: var(--text-muted); font-size: 1rem; max-width: 500px; }
.service-agrinest { background: rgba(201, 168, 76, 0.03); border: var(--border-gold); padding: var(--space-sm) var(--space-md); margin-top: var(--space-md); display: flex; justify-content: space-between; align-items: center; }
.tag-gold { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bg-base); background: var(--accent-gold); padding: 0.2rem 0.6rem; border-radius: 2px; }

/* Pricing Packages */
.package-card { background: var(--bg-base); border: var(--border-subtle); padding: var(--space-lg) var(--space-md); display: flex; flex-direction: column; }
.package-featured { background: var(--bg-surface); border-top: 2px solid var(--accent-gold); transform: scale(1.02); z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.package-label { font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: var(--space-xs); }
.package-name { font-family: var(--font-display); font-size: 2rem; margin-bottom: var(--space-sm); }
.package-price { font-size: 2.5rem; font-weight: 300; margin-bottom: var(--space-md); display: flex; align-items: baseline; gap: 0.5rem; }
.package-price span { font-size: 1rem; color: var(--text-muted); }
.package-divider { height: 1px; background: rgba(201, 168, 76, 0.2); width: 100%; margin-bottom: var(--space-md); }
.feature-list { list-style: none; margin-bottom: var(--space-lg); flex-grow: 1; }
.feature-list li { padding: 0.6rem 0; font-size: 0.95rem; display: flex; align-items: center; gap: 0.8rem; color: var(--text-primary); border-bottom: 1px solid rgba(255,255,255,0.03); }
.feature-list li.muted { color: #555; }
.feature-list li::before { content: "✓"; color: var(--accent-gold); font-size: 1.1rem; }
.feature-list li.muted::before { content: "—"; color: #555; }

/* Positioning Strip */
.positioning-strip { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-md); padding: var(--space-md) 0; }
@media(min-width: 900px) { .positioning-strip { flex-direction: row; justify-content: center; } }
.positioning-item { font-size: 1.2rem; font-weight: 400; letter-spacing: 0.02em; }
.positioning-divider { color: var(--accent-gold); font-weight: 300; display: none; }
@media(min-width: 900px) { .positioning-divider { display: inline-block; padding: 0 var(--space-md); } }

/* Footer */
footer { background: var(--bg-surface); padding-top: var(--space-xl); border-top: var(--border-subtle); }
.footer-bottom { border-top: var(--border-subtle); padding: var(--space-md) 0; margin-top: var(--space-xl); display: flex; flex-direction: column; gap: var(--space-sm); align-items: center; text-align: center; }
@media(min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-logo { margin-bottom: var(--space-md); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-md); color: var(--text-primary); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent-gold); }

/* Forms */
.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-control { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); color: var(--text-primary); padding: 0.8rem 0; font-family: var(--font-body); font-size: 1.1rem; transition: var(--transition-smooth); outline: none; }
.form-control:focus { border-bottom-color: var(--accent-gold); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 0 center; background-size: 1em; }
select.form-control option { background: var(--bg-surface); color: var(--text-primary); }

/* Animation Classes */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Scroll Indicator */
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.5; }
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: var(--accent-gold); animation: drop 2s infinite ease-in-out; }
@keyframes drop { 0% { top: -50%; } 100% { top: 150%; } }
