
:root {
  --bg: #fbf7f0;
  --surface: #ffffff;
  --surface-2: #fffaf3;
  --text: #1f2a24;
  --muted: #66756e;
  --line: #e6dfd3;
  --saffron: #e64a19;
  --saffron-dark: #b53010;
  --green: #78b63b;
  --green-dark: #497d20;
  --accent-soft: rgba(230,74,25,0.08);
  --radius: 22px;
  --shadow: 0 16px 40px rgba(44, 52, 45, 0.08);
  --container: min(1160px, calc(100% - 2rem));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(120,182,59,0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(230,74,25,0.12), transparent 26%),
    linear-gradient(180deg, #fffdfa 0%, var(--bg) 100%);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(120,182,59,0.12);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d22d1a;
}
h1, h2, h3, h4 {
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 4vw, 4.7rem); }
h2 { font-size: clamp(1.9rem, 3vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: 1.08rem; max-width: 64ch; }
.small { font-size: 0.95rem; }
.center { text-align: center; }
.stack > * + * { margin-top: 16px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border: 1px solid rgba(230,223,211,0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.card.soft {
  background: linear-gradient(180deg, rgba(255,250,243,0.96), rgba(255,255,255,0.9));
}
.badge-row, .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge, .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}
.badge::before, .pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: #d22d1a;
  
}
.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.88);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(120,182,59,0.25);
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,240,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230,223,211,0.72);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 74px;
  height: 56px;
  object-fit: contain;
}
.brand-copy strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}
.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}
.nav-toggle { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  color: #253129;
  font-weight: 600;
  font-size: 0.98rem;
}
.nav-links a.active, .nav-links a:hover { color: var(--saffron-dark); }
.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}
.mobile-toggle span::before { top: -6px; position: absolute; }
.mobile-toggle span::after { top: 6px; position: absolute; }
.hero {
  padding: 72px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.hero-visual-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero-panel {
  position: relative;
  margin-top: 20px; 
  width: 100%;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 72% 68%, rgba(120,182,59,0.14), transparent 26%),
    radial-gradient(circle at 60% 35%, rgba(230,74,25,0.08), transparent 26%),
    linear-gradient(145deg, #fdf9f2 0%, #f4efe3 100%);
}

.hero-panel::before {
  display: none;
}

.hero-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(76%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(31,42,36,0.10);
  box-shadow: inset 0 0 0 18px rgba(255,255,255,0.55);
  display: grid;
  place-items: center;
  overflow: hidden;
}



.hero-logo {
  position: relative;
  z-index: 2;
  width: min(82%, 300px);
  transform: translateY(18px);
  filter: drop-shadow(0 14px 24px rgba(31,42,36,0.10));
}

.hero-cta-below {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.hero-cta-below .btn {
  min-width: 170px;
}

.hero-stats,
.mini-card {
  display: none;
}
.feature-card, .service-card, .step-card, .info-card, .testimonial-card, .faq-item {
  height: 100%;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(230,74,25,0.12), rgba(120,182,59,0.16));
  margin-bottom: 18px;
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline-step {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(230,74,25,0.12), rgba(120,182,59,0.12));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--saffron-dark);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.form-card {
  padding: 32px;
}
form {
  display: grid;
  gap: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
input, select, textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(120,182,59,0.8);
  box-shadow: 0 0 0 4px rgba(120,182,59,0.12);
}
textarea { min-height: 140px; resize: vertical; }
.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
}
.check-row input { width: 18px; height: 18px; margin-top: 4px; }
.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.86);
}
.table th, .table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table th { background: rgba(120,182,59,0.08); }
.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-clean li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
}
.list-clean li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: 700;
}
.notice {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(230,74,25,0.07);
  border: 1px solid rgba(230,74,25,0.16);
}
.cta-band {
  padding: 28px;
  border-radius: 28px;
  background: #001a00;
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-band p, .cta-band h2, .cta-band h3 { color: #fff; }
.footer {
  margin-top: 40px;
  padding: 46px 0 24px;
  border-top: 1px solid rgba(230,223,211,0.72);
  background: rgba(255,255,255,0.45);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 28px;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(230,223,211,0.72);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}
.muted-box {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  border: 1px dashed var(--line);
}
.quote {
  font-size: 1.08rem;
  color: var(--text);
}
@media (max-width: 960px) {
  .hero-grid, .split, .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .kpi-grid, .hero-stats { grid-template-columns: 1fr; }
  .nav-links {
    position: absolute;
    inset: calc(100% + 10px) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .mobile-toggle { display: inline-flex; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .hero { padding-top: 48px; }
  .section { padding: 56px 0; }
  .page-hero { padding-top: 48px; }
  .card, .form-card { padding: 22px; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-step { width: 56px; height: 56px; border-radius: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .brand img { width: 62px; height: 48px; }
}
