/* ===== FONTS ===== */
:root {
  --green-deep: #0D2B1A;
  --green-mid: #1A4D2E;
  --green-light: #2A5A3A;
  --green-accent: #3D7A50;
  --amber: #F59E0B;
  --amber-light: #FBBF24;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --teal: #8FC9A3;
  --off-white: #F8F6F2;
  --off-white-dark: #EDE9E1;
  --charcoal: #1A1A1A;
  --muted: #6B7B6B;
  --border: rgba(42, 90, 58, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 43, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--off-white);
  letter-spacing: -0.3px;
}

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

.nav-links a {
  color: rgba(248, 246, 242, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ===== HERO ===== */
.hero {
  background: var(--green-deep);
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(61, 122, 80, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--off-white);
  font-weight: 800;
  letter-spacing: -1.5px;
}

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

.hero-sub {
  font-size: 18px;
  color: rgba(248, 246, 242, 0.75);
  line-height: 1.65;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--green-deep);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.btn-primary--large { font-size: 16px; padding: 16px 32px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(248, 246, 242, 0.8);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(248, 246, 242, 0.2);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(248, 246, 242, 0.5);
  color: var(--off-white);
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-visual {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
}

.hero-scroll-hint {
  max-width: 1160px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(248, 246, 242, 0.35);
  font-size: 12px;
  letter-spacing: 0.5px;
  animation: bounce 2.5s ease-in-out infinite;
}

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

/* ===== STATS ===== */
.stats-section {
  background: var(--green-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: rgba(248, 246, 242, 0.7);
  font-weight: 500;
  line-height: 1.4;
}

.stat-sub { color: rgba(248, 246, 242, 0.45); font-size: 12px; }

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 96px 24px;
  background: var(--off-white);
}

.services-inner { max-width: 1160px; margin: 0 auto; }

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--green-deep);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

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

.service-card {
  background: white;
  border: 1.5px solid var(--off-white-dark);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 8px 32px rgba(13, 43, 26, 0.08);
}

.service-card--featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--off-white);
  grid-column: span 1;
}

.service-card--featured .section-title,
.service-card--featured h2,
.service-card--featured h3 { color: var(--off-white); }

.service-card--featured p { color: rgba(248,246,242,0.7); }

.service-card--cta {
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-color: var(--amber);
  color: var(--off-white);
  grid-column: span 1;
  position: relative;
}

.service-card--cta h3 { color: var(--off-white); }
.service-card--cta p { color: rgba(248,246,242,0.7); }

.cta-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
  align-self: flex-start;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.service-card--featured .service-icon,
.service-card--cta .service-icon {
  background: rgba(245, 158, 11, 0.2);
  color: var(--amber);
}

.service-card h3 {
  font-size: 17px;
  color: var(--green-deep);
}

.service-price {
  font-size: 14px;
  color: var(--amber);
  font-weight: 600;
  margin-top: 4px;
}

.service-price strong {
  font-size: 18px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
}

.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.service-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-light);
  background: var(--off-white);
  padding: 3px 8px;
  border-radius: 20px;
}

.service-card--featured .service-tags span {
  background: rgba(248, 246, 242, 0.1);
  color: rgba(248, 246, 242, 0.7);
}

/* ===== PROCESS ===== */
.process-section {
  padding: 96px 24px;
  background: var(--off-white-dark);
}

.process-inner { max-width: 1160px; margin: 0 auto; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: -2px;
}

.step-content h3 {
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.process-connector {
  padding-top: 16px;
  flex-shrink: 0;
  align-self: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 96px 24px;
  background: var(--off-white);
}

.testimonials-inner { max-width: 1160px; margin: 0 auto; }

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

.testimonial-card {
  background: white;
  border: 1.5px solid var(--off-white-dark);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-quote p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.65;
  font-style: italic;
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--off-white-dark);
}

.attr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--off-white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.attr-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
}

.attr-role {
  font-size: 12px;
  color: var(--muted);
}

/* ===== CLOSING ===== */
.closing-section {
  padding: 96px 24px;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.closing-visual {
  width: 120px;
  height: 120px;
}

.closing-text { display: flex; flex-direction: column; gap: 20px; }

.closing-headline {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--off-white);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.closing-body {
  font-size: 17px;
  color: rgba(248, 246, 242, 0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.closing-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(248, 246, 242, 0.45);
}

.meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(248, 246, 242, 0.25);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand p { font-size: 14px; color: rgba(248,246,242,0.45); line-height: 1.6; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--amber); margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: 14px; color: rgba(248,246,242,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--off-white); }

.footer-bottom {
  max-width: 1160px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(248,246,242,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .stats-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-connector { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 56px 20px 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-headline { font-size: 30px; }
  .closing-headline { font-size: 24px; }
}