:root {
  --primary: #166534;
  --primary-dark: #14532d;
  --primary-light: #16a34a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; background: #fff; color: #111827; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
table { border-collapse: collapse; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* NAV */
.nav { position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--gray-100); z-index: 50; }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: .875rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo { font-size: 1.35rem; font-weight: 800; color: var(--gray-900); white-space: nowrap; }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 1.25rem; align-items: center; font-size: .875rem; flex-wrap: wrap; }
.nav-link { color: var(--gray-600); transition: color .2s; font-weight: 500; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-cta { background: var(--primary); color: #fff; padding: .625rem 1.25rem; border-radius: 9999px; font-weight: 600; font-size: .875rem; transition: background .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--primary-dark); }

/* HERO */
.hero { min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--gray-50), #fff); padding: 5rem 1.5rem; }
.hero-page { min-height: 60vh; padding: 4rem 1.5rem; }
.hero-blur-1 { position: absolute; top: 4rem; right: 2rem; width: 20rem; height: 20rem; background: rgba(22,101,52,0.06); border-radius: 9999px; filter: blur(64px); pointer-events: none; }
.hero-blur-2 { position: absolute; bottom: 4rem; left: 2rem; width: 26rem; height: 26rem; background: rgba(22,101,52,0.04); border-radius: 9999px; filter: blur(64px); pointer-events: none; }
.hero-content { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: center; position: relative; z-index: 10; width: 100%; }
.hero-page .hero-content { grid-template-columns: 1fr; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(22,101,52,0.08); color: var(--primary); padding: .45rem 1rem; border-radius: 9999px; font-size: .85rem; font-weight: 600; margin-bottom: 1.25rem; }
.hero-badge-dot { width: .5rem; height: .5rem; background: var(--primary); border-radius: 9999px; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; color: var(--gray-900); }
.hero h1 span { color: var(--primary); }
.hero > .hero-content > div > p, .hero-content > div > p { font-size: 1.15rem; color: var(--gray-500); margin-bottom: 1.75rem; max-width: 34rem; line-height: 1.7; }
.breadcrumb-nav { font-size: .85rem; color: var(--gray-400); margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.breadcrumb-nav a { color: var(--primary); }
.bc-sep { color: var(--gray-300); }

/* HERO EMAIL ROW */
.hero-email-row { margin-top: 1.25rem; display: flex; align-items: center; gap: .6rem; color: var(--gray-500); flex-wrap: wrap; }
.hero-email-row svg { width: 1.15rem; height: 1.15rem; color: var(--primary); flex-shrink: 0; }
.hero-email-row span { font-size: .875rem; }
.hero-email-row a { font-size: .9rem; font-weight: 700; color: var(--primary); }
.hero-email-row a:hover { text-decoration: underline; }

/* HERO STATS */
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.25rem; padding-top: 2.25rem; border-top: 1px solid var(--gray-100); flex-wrap: wrap; }
.hero-stat-number { font-size: 2rem; font-weight: 800; color: var(--gray-900); }
.hero-stat-label { color: var(--gray-500); font-size: .85rem; }

/* HERO VISUAL BOX */
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-glow { position: absolute; inset: 0; background: rgba(22,101,52,0.12); border-radius: 9999px; filter: blur(64px); transform: scale(0.8); }
.hero-visual-box { position: relative; z-index: 10; background: #fff; border: 1px solid var(--gray-200); border-radius: 1.25rem; padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,.08); width: 100%; }
.hv-line { display: flex; align-items: center; gap: .6rem; padding: .45rem 0; border-bottom: 1px solid var(--gray-100); font-size: .875rem; color: var(--gray-700); }
.hv-line:last-of-type { border-bottom: none; }
.hv-dot { width: .45rem; height: .45rem; background: var(--primary); border-radius: 9999px; flex-shrink: 0; }

/* BUTTONS */
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--primary); color: #fff; padding: .875rem 1.875rem; border-radius: 9999px; font-weight: 700; font-size: 1rem; display: inline-block; transition: background .2s, box-shadow .2s; box-shadow: 0 8px 20px rgba(22,101,52,0.25); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary { border: 2px solid var(--gray-200); color: var(--gray-700); padding: .875rem 1.875rem; border-radius: 9999px; font-weight: 600; display: inline-block; transition: all .2s; font-size: 1rem; }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* SECTIONS */
.section { padding: 5.5rem 1.5rem; }
.section-alt { padding: 5.5rem 1.5rem; background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: .75rem; color: var(--gray-900); }
.section-subtitle { color: var(--gray-500); max-width: 42rem; margin: 0 auto; font-size: 1rem; }

/* FEATURE CARDS */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.75rem; }
.feature-card { background: #fff; border-radius: 1.25rem; padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,.06); border: 1px solid var(--gray-100); transition: all .3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.feature-icon { width: 4rem; height: 4rem; background: rgba(22,101,52,0.08); border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--gray-900); }
.feature-card p { color: var(--gray-500); font-size: .9rem; line-height: 1.6; margin-bottom: .75rem; }

/* STAT CARDS */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1.5rem; }
.stat-card { text-align: center; background: #fff; border-radius: 1.25rem; padding: 2rem 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,.06); border: 1px solid var(--gray-100); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: .5rem; }
.stat-unit { font-size: .78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .25rem; }
.stat-label { font-weight: 600; color: var(--gray-900); font-size: .95rem; }
.stat-desc { color: var(--gray-400); font-size: .82rem; margin-top: .5rem; }

/* PROCESS STEPS */
.process-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1.25rem; }
.process-card { background: #fff; border-radius: 1.25rem; padding: 1.75rem; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,.06); border: 1px solid var(--gray-100); }
.process-number { width: 2.5rem; height: 2.5rem; background: var(--primary); color: #fff; border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-weight: 800; font-size: 1rem; }
.process-card h4 { font-weight: 700; margin-bottom: .5rem; color: var(--gray-900); }
.process-card p { color: var(--gray-500); font-size: .875rem; line-height: 1.55; }

/* SERVICE CARDS */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 1rem; }
.service-card { background: var(--gray-50); border-radius: 1rem; padding: 1.5rem 1rem; text-align: center; transition: all .2s; border: 1px solid var(--gray-100); display: block; }
.service-card:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.service-icon { font-size: 2rem; margin-bottom: .6rem; }
.service-card h4 { font-weight: 600; font-size: .9rem; }
.service-card p { font-size: .75rem; margin-top: .25rem; color: var(--gray-500); }
.service-card:hover p { color: rgba(255,255,255,.7); }

/* CTA */
.cta { padding: 5.5rem 1.5rem; background: linear-gradient(135deg, var(--primary-dark), var(--primary), #166534cc); }
.cta-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.cta h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.cta p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 1.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.cta-stats { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.5rem; }
.cta-stat { background: rgba(255,255,255,.15); border-radius: 1rem; padding: 1rem 1.5rem; text-align: center; color: #fff; border: 1px solid rgba(255,255,255,.2); }
.cta-stat-number { font-weight: 700; font-size: 1.35rem; }
.cta-stat-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: .2rem; }

/* CONTACT CARD */
.contact-card { background: rgba(255,255,255,.12); border-radius: 1.25rem; padding: 2.5rem; border: 1px solid rgba(255,255,255,.25); text-align: center; backdrop-filter: blur(8px); }
.contact-icon { width: 4rem; height: 4rem; background: rgba(255,255,255,.2); border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.contact-icon svg { width: 1.75rem; height: 1.75rem; color: #fff; }
.contact-card p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: .75rem; }
.contact-email { font-size: 1.75rem; font-weight: 800; color: #fff; word-break: break-all; display: block; }
.contact-email:hover { text-decoration: underline; color: #fff; }
.contact-hint { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: 1rem; }

/* SEO TEXT BLOCK */
.seo-text h2 { font-size: 1.35rem; font-weight: 700; color: var(--primary-dark); margin: 2.5rem 0 .875rem; padding-bottom: .4rem; border-bottom: 2px solid rgba(22,101,52,.15); }
.seo-text h2:first-child { margin-top: 0; }
.seo-text p { margin-bottom: 1rem; color: var(--gray-700); line-height: 1.8; font-size: .975rem; }
.seo-text ul { margin: .75rem 0 1rem 1.25rem; }
.seo-text li { margin-bottom: .6rem; line-height: 1.65; color: var(--gray-700); font-size: .975rem; }
.seo-text strong { color: var(--gray-900); }

/* LAYOUT WITH SIDEBAR */
.layout-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.content-sidebar { position: sticky; top: 80px; }
.sidebar-related { background: var(--gray-50); border-radius: 1rem; padding: 1.25rem; border: 1px solid var(--gray-200); }
.sidebar-related strong { display: block; font-size: .875rem; font-weight: 700; color: var(--gray-900); }

/* FOOTER */
.footer { padding: 4rem 1.5rem 2rem; background: var(--gray-900); color: var(--gray-400); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: .875rem; }
.footer-logo span { color: var(--primary-light); }
.footer p { font-size: .875rem; line-height: 1.6; }
.footer h4 { color: #fff; font-weight: 600; margin-bottom: .875rem; font-size: .925rem; }
.footer-links { display: flex; flex-direction: column; gap: .4rem; }
.footer-link { font-size: .875rem; color: var(--gray-400); transition: color .2s; }
.footer-link:hover { color: #fff; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid #1f2937; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .8rem; }
.footer-docs { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ANIMATIONS */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.animate-pulse { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }
.card-hover { transition: all .3s ease; }
.card-hover:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }

/* TABLE */
.table-wrap { overflow-x: auto; }
.table { width: 100%; background: #fff; border-radius: 1rem; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.table th { padding: 1rem; text-align: left; background: var(--primary); color: #fff; }
.table td { padding: .875rem 1rem; }
.table tbody tr { border-bottom: 1px solid var(--gray-100); }
.table tbody tr:nth-child(even) { background: var(--gray-50); }

/* RESPONSIVE */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hero-stats { flex-wrap: nowrap; }
}
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 3rem 1rem; min-height: auto; }
  .section, .section-alt { padding: 3.5rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .cta-stats { flex-direction: column; align-items: center; }
}
