:root {
  --bg: #0a0f0a;
  --bg-elevated: #111a11;
  --bg-card: #162016;
  --fg: #e8ede8;
  --fg-muted: #8a9a8a;
  --accent: #c5a34e;
  --accent-glow: #d4b45f;
  --green: #2d6b3f;
  --green-light: #3a8c52;
  --green-subtle: rgba(45, 107, 63, 0.15);
  --gold-subtle: rgba(197, 163, 78, 0.12);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 120px 24px 100px;
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-subtle);
  border: 1px solid var(--green);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.accent {
  color: var(--accent);
}

.lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-gradient {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(45, 107, 63, 0.2) 0%, rgba(197, 163, 78, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* === SERVICES === */
.services {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: var(--green);
}

.service-card.featured {
  background: var(--bg-card);
  border-color: var(--green);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-subtle);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === WHY === */
.why {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.why-subtitle {
  font-size: 18px;
  color: var(--accent);
  margin-top: 16px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.why-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-light);
  flex-shrink: 0;
  padding-top: 2px;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === ADVANTAGE === */
.advantage {
  padding: 100px 0;
}

.advantage-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(197, 163, 78, 0.06) 100%);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 56px 48px;
}

.advantage-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--accent-glow);
}

.advantage-card p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 700px;
}

.advantage-metrics {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(197, 163, 78, 0.2);
}

.metric { flex: 1; }

.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

.metric-desc {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* === CLOSING === */
.closing {
  padding: 120px 0 80px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* === FOOTER === */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.footer-location {
  font-size: 14px;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .advantage-card {
    padding: 32px 24px;
  }

  .advantage-metrics {
    flex-direction: column;
    gap: 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--fg);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-links .nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: #0a0f0a;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, transform 0.1s;
}

.nav-links .nav-cta:hover {
  background: var(--accent-glow);
  color: #0a0f0a;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-elevated);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 20px;
  gap: 4px;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
  color: var(--accent);
  font-weight: 700;
}

/* === PRICING === */
.pricing {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pricing-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.pricing-subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

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

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}

.pricing-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.pricing-card.featured {
  background: var(--bg-card);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(197, 163, 78, 0.12);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: #0a0f0a;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1.5px;
}

.price-period {
  font-size: 14px;
  color: var(--fg-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 56px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
  font-size: 12px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--green-subtle);
  border: 1px solid var(--green);
  color: var(--green-light);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.pricing-btn:hover {
  background: var(--green);
  color: var(--fg);
}

.pricing-btn.featured-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0f0a;
}

.pricing-btn.featured-btn:hover {
  background: var(--accent-glow);
  color: #0a0f0a;
}

.pricing-note {
  margin-top: 40px;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  opacity: 0.7;
}

/* === CONTACT === */
.contact {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.contact-info-value {
  font-size: 15px;
  color: var(--fg-muted);
}

.contact-form {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138, 154, 138, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  font-size: 13px;
  color: #e05c5c;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: rgba(224, 92, 92, 0.1);
  border-radius: 6px;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  color: #0a0f0a;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.form-submit:hover:not(:disabled) {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
  gap: 12px;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--green-subtle);
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--green-light);
  margin-bottom: 8px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

.form-success p {
  font-size: 15px;
  color: var(--fg-muted);
}

/* === RESPONSIVE: nav, pricing, contact === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 28px 20px;
  }
}