@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --brand-yellow: #f8de2f;
  --brand-gold: #f8bf21;
  --brand-orange: #f59b23;
  --brand-dark: #10131a;
  --ink: #1e2530;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f7f8fb;
  --border-soft: rgba(16, 19, 26, 0.08);
  --shadow-soft: 0 18px 48px rgba(16, 19, 26, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface-soft);
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-nav {
  background: rgba(16, 19, 26, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(16, 19, 26, 0.15);
}

.brand-logo {
  height: 75px;
  width: auto;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.navbar .nav-link {
  font-weight: 600;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--brand-yellow) !important;
}

.btn-brand {
  --bs-btn-color: #111;
  --bs-btn-bg: var(--brand-yellow);
  --bs-btn-border-color: var(--brand-yellow);
  --bs-btn-hover-color: #111;
  --bs-btn-hover-bg: var(--brand-gold);
  --bs-btn-hover-border-color: var(--brand-gold);
  --bs-btn-active-color: #111;
  --bs-btn-active-bg: var(--brand-gold);
  --bs-btn-active-border-color: var(--brand-gold);
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(248, 191, 33, 0.28);
}

.btn,
.btn-lg {
  font-weight: 700;
}

.btn-lg {
  --bs-btn-font-size: 0.94rem;
  --bs-btn-padding-y: 0.66rem;
  --bs-btn-padding-x: 1.1rem;
  --bs-btn-border-radius: 0.7rem;
}

.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(248, 222, 47, 0.22), transparent 35%),
    radial-gradient(circle at top right, rgba(245, 155, 35, 0.25), transparent 34%),
    linear-gradient(135deg, #11151d 0%, #171b25 48%, #0d1016 100%);
  color: #fff;
  padding: 3rem 0 2rem;
}

.hero-section::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -40px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(248, 222, 47, 0.3), rgba(245, 155, 35, 0.06));
  filter: blur(4px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.text-brand-dark {
  color: var(--brand-orange) !important;
}

h1,
h2,
h3 {
  text-wrap: normal;
}

h1 {
  font-size: clamp(1.9rem, 2.35vw, 2.85rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.5rem, 1.95vw, 2.1rem);
  line-height: 1.18;
}

h3 {
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.25;
}

.hero-section h1,
.page-hero h1 {
  font-size: clamp(1.75rem, 2.18vw, 2.65rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: none;
}

.hero-copy {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 62ch;
}

.hero-panel,
.info-panel,
.feature-card,
.step-card,
.service-card,
.testimonial-card,
.stack-card,
.cta-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
}

.hero-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-yellow);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero-list li + li {
  margin-top: 0.7rem;
}

.section-block {
  padding: 2rem 0;
}

.hero-section + .section-block,
.page-hero + .section-block {
  padding-top: 2rem;
}

.section-light {
  background: var(--surface-soft);
}

.section-white {
  background: #fff;
}

.section-dark {
  background: linear-gradient(145deg, #121720 0%, #1b2230 100%);
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 2.5rem;
}

.section-heading.narrow {
  max-width: 48rem;
}

.intro-highlight-card {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 2.1rem;
  background: linear-gradient(180deg, #fff8e8 0%, #fffdf8 100%);
  border: 1px solid rgba(245, 155, 35, 0.14);
  border-radius: 1.5rem;
  box-shadow: 0 18px 44px rgba(16, 19, 26, 0.05);
}

.intro-highlight-card h2 {
  max-width: 24ch;
}

.intro-highlight-card p {
  max-width: 76ch;
}

.faq-intro-card {
  max-width: none;
  margin-bottom: 0;
  padding: 1.6rem 1.7rem;
  background: linear-gradient(180deg, #fff7e5 0%, #fffdf7 100%);
  border: 1px solid rgba(245, 155, 35, 0.16);
  border-radius: 1.5rem;
  box-shadow: 0 16px 36px rgba(16, 19, 26, 0.05);
  position: relative;
  overflow: hidden;
}

.faq-intro-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
}

.faq-intro-card h2 {
  max-width: none;
}

.faq-intro-card p {
  max-width: 74ch;
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: clamp(1.45rem, 1.85vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.16;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  max-width: none;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: #fff;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.services-intro-copy {
  max-width: 42ch;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.faq-intro-heading h2 {
  max-width: none;
}

.faq-intro-heading p {
  max-width: 74ch;
}

@media (min-width: 992px) {
  .faq-intro-heading h2 {
    font-size: clamp(1.35rem, 1.65vw, 1.8rem);
    line-height: 1.14;
    white-space: nowrap;
  }
}

.service-card {
  background: linear-gradient(180deg, #fff 0%, #fcfcfe 100%);
  padding: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 155, 35, 0.35);
  box-shadow: 0 24px 50px rgba(16, 19, 26, 0.12);
}

.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(248, 222, 47, 0.2), rgba(245, 155, 35, 0.25));
  color: #10131a;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.pest-icon-svg {
  width: 2.1rem;
  height: 2.1rem;
  display: block;
}

.service-card h3,
.feature-card h3,
.step-card h3,
.stack-card h3,
.info-panel h3,
.testimonial-card h3,
.footer-heading {
  font-size: 1.06rem;
  line-height: 1.24;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.service-card p,
.feature-card p,
.step-card p,
.stack-card p,
.info-panel p,
.testimonial-card p {
  color: var(--muted);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--brand-orange);
  font-weight: 700;
}

.feature-card,
.stack-card,
.info-panel {
  background: #fff;
  padding: 1.5rem;
}

.ant-species-card {
  max-width: 100%;
  padding: 1.75rem;
}

.ant-species-card > .card-heading {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  max-width: none;
}

.ant-species-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

.ant-species-item {
  background: #fffdf7;
  border: 1px solid rgba(245, 155, 35, 0.16);
  border-top: 4px solid var(--brand-gold);
  border-radius: 1rem;
  padding: 1.15rem;
  overflow: hidden;
}

.ant-species-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 0.85rem;
  margin-bottom: 0.9rem;
  background: #f1f3f6;
  border: 1px solid rgba(16, 19, 26, 0.08);
}

.ant-species-item h4 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 0 0 0.45rem;
}

.ant-species-item p {
  max-width: none;
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 992px) {
  .ant-species-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.step-card {
  position: relative;
  background: #fff;
  padding: 1.5rem;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
}

.step-number {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand-yellow), var(--brand-orange));
  color: #111;
  font-weight: 800;
}

.step-heading-inline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.step-heading-inline .step-number {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.step-card .step-heading-inline h3 {
  margin-bottom: 0;
  max-width: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  padding: 1.75rem;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand-yellow);
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.9rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  background: rgba(248, 222, 47, 0.28);
  color: #111;
  font-weight: 700;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(16, 19, 26, 0.08);
  background: transparent;
}

.faq-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 1.2rem 0;
  font-weight: 700;
  color: var(--brand-dark);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-orange);
}

.faq-accordion .accordion-body {
  padding: 0 0 1.2rem;
  color: var(--muted);
}

.cta-strip {
  background: linear-gradient(180deg, var(--surface-soft), #eef1f6);
}

.cta-card {
  background: linear-gradient(135deg, rgba(248, 222, 47, 0.10), rgba(245, 155, 35, 0.10));
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cta-card h2 {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.45;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0;
  max-width: 62ch;
}

.cta-copy {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brand-dark);
  max-width: 50ch;
  margin-bottom: 0;
}

.cta-actions {
  flex-shrink: 0;
}

.site-footer {
  background: #10131a;
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 2rem;
}

.footer-main {
  align-items: start;
}

.footer-logo {
  height: 75px;
  width: auto;
}

.footer-title {
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
}

.footer-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-brand-copy {
  color: rgba(255, 255, 255, 0.76);
  max-width: 34ch;
  line-height: 1.7;
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li + li {
  margin-top: 0.55rem;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-yellow);
}

.footer-utility {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.footer-service-area {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--brand-yellow);
}

.related-card .service-link {
  display: none;
}

@media (max-width: 991.98px) {
  .footer-brand-copy {
    max-width: none;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .intro-highlight-card {
    padding: 1.6rem 1.35rem;
    border-radius: 1.25rem;
  }

  .faq-intro-card {
    padding: 1.45rem 1.25rem;
    border-radius: 1.25rem;
  }

  .step-heading-inline {
    align-items: flex-start;
  }

  .brand-text {
    display: none;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .hero-section,
  .page-hero {
    padding: 6rem 0 3.5rem;
  }

  .section-block {
    padding: 4rem 0;
  }

  .hero-section + .section-block,
  .page-hero + .section-block {
    padding-top: 2.5rem;
  }

  .hero-copy {
    font-size: 1rem;
  }
}



@media (min-width: 992px) {
  #faqHome .accordion-header {
    max-width: none;
  }

  #faqHome .accordion-button {
    font-size: 0.98rem;
    white-space: nowrap;
  }

  .step-card .step-heading-inline h3 {
    white-space: nowrap;
    max-width: none;
  }
}


.faq-accordion .accordion-header {
  max-width: none;
}

.faq-accordion .accordion-button {
  width: 100%;
  line-height: 1.45;
}

.info-panel .h4,
.faq-accordion .accordion-header,
.stack-card h3,
.step-card h3,
.feature-card h3 {
  max-width: 26ch;
}

.step-card .step-heading-inline h3 {
  max-width: none;
}

@media (min-width: 992px) {
  .stack-card h3 {
    max-width: none;
  }
}

@media (max-width: 991.98px) {
  .hero-section,
  .page-hero {
    padding: 4.4rem 0 3.5rem;
  }
}



@media (max-width: 767.98px) {
  .service-card {
    display: grid !important;
    grid-template-columns: auto 1fr;
    column-gap: 0.9rem;
    row-gap: 0.8rem;
    align-items: start;
  }

  .service-card .service-icon {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    min-width: 0;
  }

  .service-card p,
  .service-card .service-link {
    grid-column: 1 / -1;
  }

  .service-card .service-link {
    margin-top: 0.25rem;
  }
}


.plannit-cta__btn-primary {
  color: #111;
  background-color: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.plannit-cta__btn-primary:hover,
.plannit-cta__btn-primary:focus {
  color: #111;
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
}

.plannit-cta__content {
  border-radius: 1.25rem;
}

.plannit-cta input.plannit-cta__form-control,
.plannit-cta select.plannit-cta__form-control,
.plannit-cta textarea.plannit-cta__form-control,
.plannit-cta .plannit-multiselect-dropdown,
.plannit-cta .plannit-cta__btn {
  border-radius: 0.9rem;
}


.manufacturer-block + .manufacturer-block {
  margin-top: 3rem;
}

.manufacturer-title {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}

.manufacturer-copy {
  color: var(--muted);
}

.resource-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.resource-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(248, 222, 47, 0.2), rgba(245, 155, 35, 0.25));
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.resource-card h3 {
  font-size: 1.06rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.8rem;
}

.resource-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}


.error-shell {
  padding: 5rem 0 6rem;
  background:
    radial-gradient(circle at top, rgba(248, 222, 47, 0.12), transparent 32%),
    var(--surface-soft);
}

.error-card {
  max-width: 560px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfe 100%);
  border: 1px solid var(--border-soft);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.error-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-yellow));
}

.error-code {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-orange);
}

.error-card h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
}

.error-card p {
  max-width: 40ch;
  margin: 0 auto 1.75rem;
  color: var(--muted);
}


@media (min-width: 992px) {
  .intro-highlight-card p {
    max-width: none;
  }

  .services-intro-copy {
    max-width: none;
  }

  .cta-card > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }

  .cta-copy {
    max-width: none;
  }
}


@media (min-width: 992px) {
  .faq-service-section .accordion-header {
    max-width: none;
  }

  .faq-service-section .accordion-button {
    font-size: 0.98rem;
  }

  .faq-service-section .faq-intro-card p {
    max-width: none;
  }
}

.faq-accordion .accordion-header,
.faq-accordion .accordion-button {
  max-width: none !important;
}

.faq-accordion .accordion-header {
  width: 100%;
}

.faq-accordion .accordion-button {
  white-space: normal;
  text-wrap: pretty;
}

/* Explicit card heading styling. This keeps visual titles bold even when they use the dedicated class. */
.card-heading,
.service-card h3,
.feature-card h3,
.step-card h3,
.stack-card h3,
.info-panel h3,
.resource-card h3,
.testimonial-card h3,
.footer-heading {
  display: block;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.06rem;
  line-height: 1.24;
  font-weight: 900 !important;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.info-panel .card-heading,
.info-panel h3,
.stack-card .card-heading,
.stack-card h3,
.step-card .card-heading,
.step-card h3,
.feature-card .card-heading,
.feature-card h3 {
  max-width: 26ch;
}

.step-card .step-heading-inline .card-heading,
.step-card .step-heading-inline h3 {
  margin-bottom: 0;
  max-width: none;
}

@media (min-width: 992px) {
  .stack-card .card-heading,
  .stack-card h3 {
    max-width: none;
  }
}
