:root {
  --bg: #fbf7f0;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-2: rgba(255, 255, 255, 0.62);
  --text: #0b1a10;
  --muted: rgba(11, 26, 16, 0.68);
  --border: rgba(11, 26, 16, 0.14);

  --link: #1b7a3a;

  --accent: #a8e63b;
  --accent-2: #4fb74e;

  --secondary: #1f6b3a;
  --secondary-2: #164a2a;

  --danger: #d94646;
  --warning: #d98b1f;
  --info: #1676b7;
  --success: #1f8f4e;

  --shadow: 0 22px 58px rgba(15, 30, 20, 0.14);
  --shadow-soft: 0 16px 44px rgba(15, 30, 20, 0.10);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1100px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at 12% 10%, rgba(168, 230, 59, 0.26) 0%, transparent 48%),
    radial-gradient(circle at 86% 18%, rgba(79, 183, 78, 0.18) 0%, transparent 46%),
    radial-gradient(circle at 50% 100%, rgba(31, 107, 58, 0.14) 0%, transparent 58%),
    linear-gradient(180deg, rgba(251, 247, 240, 1), rgba(248, 244, 235, 1));
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.12s ease;
}

a:hover {
  opacity: 0.92;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--text);
}

.brand-badge {
  width: px;
  height: 47px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(168, 230, 59, 1), rgba(79, 183, 78, 1));
  box-shadow: 0 14px 30px rgba(15, 30, 20, 0.16);
  position: relative;
  overflow: hidden;
}

.brand-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 55%);
}

.brand-badge::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(
    from 220deg,
    rgba(22, 74, 42, 0.90),
    rgba(31, 107, 58, 0.75),
    rgba(79, 183, 78, 0.95),
    rgba(168, 230, 59, 1),
    rgba(31, 107, 58, 0.78)
  );
  opacity: 0.35;
  transform: rotate(18deg);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-desktop a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14px;
  border: 1px solid transparent;
  opacity: 0.96;
}

.nav-desktop a:hover {
  background: rgba(22, 74, 42, 0.06);
  border-color: rgba(11, 26, 16, 0.14);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 26, 16, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  padding: 0;
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.12s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(11, 26, 16, 0.24);
  transform: translateY(-1px);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s ease;
  opacity: 0.95;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(168, 230, 59, 0.26) 0%, transparent 50%),
    radial-gradient(circle at 100% 10%, rgba(79, 183, 78, 0.20) 0%, transparent 52%),
    radial-gradient(circle at 50% 100%, rgba(31, 107, 58, 0.14) 0%, transparent 64%),
    rgba(251, 247, 240, 0.985);
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 22px 0;
  border-top: 1px solid rgba(11, 26, 16, 0.10);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-content a:not(.pill) {
  font-size: 18px;
  font-weight: 900;
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(11, 26, 16, 0.14);
  color: var(--text);
  display: block;
  letter-spacing: 0.2px;
  box-shadow: 0 18px 40px rgba(15, 30, 20, 0.10);
}

.mobile-nav-content a:not(.pill):hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(11, 26, 16, 0.22);
}

.main {
  flex: 1 0 auto;
  padding: 44px 0 92px;
  width: 100%;
}

.hero {
  border: 1px solid rgba(11, 26, 16, 0.14);
  background:
    radial-gradient(900px 560px at 18% 0%, rgba(168, 230, 59, 0.30), transparent 62%),
    radial-gradient(900px 560px at 88% 8%, rgba(79, 183, 78, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-inner {
  padding: 34px;
  display: grid;
  gap: 16px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.6px;
}

.hero-sub {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 820px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 750;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 26, 16, 0.18);
  cursor: pointer;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  letter-spacing: 0.12px;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(11, 26, 16, 0.26);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(168, 230, 59, 1), rgba(79, 183, 78, 1));
  color: #082112;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(168, 230, 59, 1), rgba(31, 107, 58, 0.98));
  box-shadow: 0 12px 30px rgba(79, 183, 78, 0.22);
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 26, 16, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 18px 55px rgba(15, 30, 20, 0.10);
}

.card:hover {
  border-color: rgba(79, 183, 78, 0.40);
  transform: translateY(-1px);
  box-shadow: 0 24px 70px rgba(15, 30, 20, 0.14);
}

.section-title {
  margin: 34px 0 16px;
  font-size: 20px;
  font-weight: 950;
  color: rgba(22, 74, 42, 0.95);
  letter-spacing: 0.2px;
}

.footer-h {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(22, 74, 42, 0.90);
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(11, 26, 16, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  transition: all 0.2s ease;
  color: var(--text);
}

.pill:hover {
  border-color: rgba(79, 183, 78, 0.42);
  background: rgba(79, 183, 78, 0.08);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(168, 230, 59, 0.16);
  border: 1px solid rgba(79, 183, 78, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(22, 74, 42, 0.92);
}

.kicker-dot {
  width: 7px;
  height: 7px;
  background: rgba(79, 183, 78, 1);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(79, 183, 78, 0.26);
}

.field-wrapper {
  margin-bottom: 1.5rem;
}

.helptext {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.errorlist {
  color: var(--danger);
  list-style: none;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

input.btn,
select.btn {
  width: 100%;
}

select.btn {
  background-color: rgba(255, 255, 255, 0.78);
  color: var(--text);
  appearance: none;
}

select.btn option {
  background-color: #fbf7f0;
  color: var(--text);
}

.form-textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 26, 16, 0.18);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  resize: none;
  outline: none;
  line-height: 1.6;
}

.form-textarea:focus {
  border-color: rgba(79, 183, 78, 0.70);
  box-shadow: 0 0 0 4px rgba(79, 183, 78, 0.12);
}

.checkbox-pill {
  cursor: pointer;
  justify-content: flex-start;
  padding: 12px 16px;
}

.checkbox-pill input[type="checkbox"] {
  accent-color: rgba(79, 183, 78, 1);
  margin-right: 10px;
}

.data-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 26, 16, 0.14);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th {
  background: rgba(79, 183, 78, 0.10);
  padding: 16px;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(22, 74, 42, 0.92);
  letter-spacing: 0.9px;
}

td {
  padding: 16px;
  border-top: 1px solid rgba(11, 26, 16, 0.12);
  color: var(--text);
}

.site-footer {
  flex-shrink: 0;
  border-top: 1px solid rgba(11, 26, 16, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(168, 230, 59, 0.16) 0%, transparent 54%),
    radial-gradient(circle at 90% 0%, rgba(79, 183, 78, 0.12) 0%, transparent 54%),
    linear-gradient(180deg, rgba(251, 247, 240, 1), rgba(248, 244, 235, 1));
  padding: 64px 0 34px;
  width: 100%;
  overflow-x: hidden;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 40px;
  width: 100%;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  font-size: 14px;
  color: rgba(11, 26, 16, 0.68);
  font-weight: 700;
  opacity: 0.94;
}

.footer-list a:hover {
  opacity: 1;
  color: rgba(22, 74, 42, 0.95);
}

.footer-bottom {
  border-top: 1px solid rgba(11, 26, 16, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(11, 26, 16, 0.68);
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom > div {
  min-width: 0;
}

.loading-container {
  display: none;
  margin-top: 32px;
}

.loading-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-color: rgba(79, 183, 78, 0.35);
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: rgba(11, 26, 16, 0.16);
  border-radius: 999px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: rgba(79, 183, 78, 1);
  cursor: pointer;
  margin-top: -7px;
  box-shadow: 0 0 18px rgba(79, 183, 78, 0.25);
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.55;
  }
}

.loading-pulse {
  animation: pulse 1.5s infinite;
  width: 12px;
  height: 12px;
  background: rgba(79, 183, 78, 1);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(79, 183, 78, 0.25);
}

@media (max-width: 920px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 28px 0 44px;
  }

  .footer-bottom div {
    justify-content: center !important;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 26px;
  }

  .footer-bottom {
    gap: 15px;
    align-items: center;
    justify-content: center;
  }

  .site-footer {
    padding: 44px 0 24px;
  }

  .site-footer .pill,
  .site-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .site-footer form {
    width: 100%;
  }

  .site-footer input[type="email"] {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }
}

.home-two-col {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

@media (max-width: 900px) {
  .home-two-col {
    grid-template-columns: 1fr;
  }
}

.popular-guides-title {
  margin-bottom: 12px;
}

.popular-guides-list {
  display: grid;
  gap: 10px;
}

.popular-guide {
  display: block;
  padding: 14px;
  text-decoration: none;
}

.popular-guide-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
}

.popular-guide-thumb {
  width: 120px;
  height: 78px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  flex: 0 0 auto;
}

.popular-guide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popular-guide-meta {
  min-width: 0;
}

.popular-guide-name {
  font-weight: 900;
  color: var(--text);
  line-height: 1.35;
}

.popular-guide-read {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 6px;
}

.popular-guides-footer {
  margin-top: 14px;
}

.popular-guides-footer .btn {
  width: 100%;
  justify-content: center;
  padding: 10px 14px;
}

@media (max-width: 640px) {
  .popular-guide-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .popular-guide-thumb {
    width: 100%;
    height: 160px;
  }

  .popular-guide-name {
    font-size: 14px;
  }

  .popular-guide-read {
    font-size: 12px;
  }
}

.home-start {
  overflow: visible;
}

.home-start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-start-item {
  display: block;
  padding: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 26, 16, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(15, 30, 20, 0.09);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.home-start-item:hover {
  transform: none;
  box-shadow: 0 16px 42px rgba(15, 30, 20, 0.10);
  border-color: rgba(79, 183, 78, 0.35);
}

.home-start-name {
  font-weight: 950;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.1px;
  line-height: 1.2;
}

.home-start-sub {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 100%;
  word-break: break-word;
}

.home-start-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.home-start-title {
  margin-bottom: 0;
}

.home-start-btn {
  padding: 8px 12px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .home-start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .home-start-head {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .home-start-btn {
    width: 100%;
    justify-content: center;
  }

  .home-start-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-start-item {
    padding: 18px;
  }
}

@media (hover: none) {
  .home-start-item:hover {
    transform: none;
    box-shadow: 0 14px 36px rgba(15, 30, 20, 0.09);
  }
}

@media (max-width: 900px) {
  .contact-two-col {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .card {
    padding: 18px !important;
  }

  .contact-row {
    grid-template-columns: 1fr !important;
  }

  .contact-submit {
    flex-direction: column;
    align-items: stretch !important;
  }

  .contact-submit .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-radio {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-radio .pill {
    width: 100%;
    justify-content: center;
  }

  .contact-form-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .contact-form-head .pill {
    width: 100%;
    justify-content: center;
  }

  .footer-h {
    margin-bottom: 10px;
  }
}

.providers-filters {
  max-width: 100%;
}

.providers-filters input,
.providers-filters select {
  min-width: 0 !important;
}

@media (max-width: 900px) {
  .providers-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .providers-filters {
    width: 100%;
    justify-content: flex-start !important;
  }
}

@media (max-width: 520px) {
  .providers-filters {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100%;
  }

  .providers-filters input,
  .providers-filters select,
  .providers-filters button,
  .providers-filters a.btn {
    width: 100% !important;
  }

  .providers-filters button,
  .providers-filters a.btn {
    justify-content: center;
  }
}

.link{
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255,255,255,.35);
    font-weight: 850;
}
.link:hover{
    text-decoration-color: rgba(255,255,255,.7);
}
