:root {
  color-scheme: only light;
  --ink: #19191c;
  --black: #000000;
  --card-dark: #141416;
  --lime: #a3c93c;
  --cobalt: #253ff6;
  --white: #ffffff;
  --paper: #f6f6f6;
  --paper-alt: #eeeeee;
  --gray-900: #464747;
  --gray-500: #828282;
  --gray-300: #c7c7c7;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.12);
  --display: "Anton", Impact, "Haettenschweiler", sans-serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.1;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--cobalt);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-lime {
  color: var(--lime);
}

.eyebrow-gray {
  color: var(--gray-500);
}

.uppercase-heading {
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.lime-text {
  color: var(--lime);
}

.clone-notice {
  margin: 0;
  padding: 6px 20px;
  background: #fff3cd;
  color: #664d03;
  font-family: var(--sans);
  font-size: 0.74rem;
  text-align: center;
}

/* Topbar */

.topbar {
  padding: 8px 20px;
  background: var(--cobalt);
  text-align: center;
}

.topbar p {
  margin: 0;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
}

/* Buttons */

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn-lg {
  min-height: 52px;
  padding: 0 30px;
  font-size: 0.92rem;
}

.solid-lime {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--black);
}

.solid-lime:hover {
  transform: translateY(-2px);
  background: #8fb32e;
}

.outline-white {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.outline-black {
  border-color: rgba(0, 0, 0, 0.55);
  color: var(--ink);
}

.outline-black:hover {
  border-color: var(--ink);
  background: rgba(0, 0, 0, 0.05);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.play-dot {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(180px, 16vw, 240px);
  height: auto;
}


.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
}

.site-nav > a,
.has-dropdown > a {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav > a:hover,
.has-dropdown > a:hover {
  color: var(--cobalt);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  min-width: 220px;
  margin-top: 14px;
  padding: 10px;
  border-radius: 10px;
  background: var(--ink);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.has-dropdown:hover .dropdown {
  display: flex;
}

.dropdown a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--gray-300);
  font-size: 0.84rem;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: var(--ink);
}

.hero-wrap {
  position: relative;
  z-index: 1;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 10, 12, 0.94) 0%, rgba(10, 10, 12, 0.72) 42%, rgba(10, 10, 12, 0.35) 100%),
    url("assets/photos/hero.jpg") center 68% / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gray-300);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 30px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-300);
  font-size: 0.94rem;
  line-height: 1.6;
}

.feature-list li > span:last-child {
  min-width: 0;
  overflow-wrap: break-word;
}

.feature-list strong {
  color: var(--white);
}

.feature-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lime);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero-actions .text-link {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.mini-badge {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gray-300);
  font-family: var(--display);
  font-size: 0.65rem;
}

.mini-badge--google {
  color: var(--white);
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 700;
}

/* Industry focus */

.industry {
  padding: 60px 0 84px;
  background: var(--white);
}

.industry-panel {
  padding: clamp(32px, 5vw, 64px);
  border-radius: 24px;
  background: var(--ink);
  text-align: center;
}

.industry-hero-heading {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.industry-card--a {
  background: linear-gradient(155deg, rgba(163, 201, 60, 0.14), rgba(255, 255, 255, 0.02));
}

.industry-card--b {
  background: linear-gradient(155deg, rgba(37, 63, 246, 0.22), rgba(255, 255, 255, 0.02));
}

.industry-card--c {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}

.industry-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--white);
}

.industry-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.industry-divider {
  height: 1px;
  margin: 0 0 48px;
  border: 0;
  background: var(--line);
}

.industry-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  text-align: left;
}

.industry-subhead {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.3;
}

.check-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-300);
  font-size: 0.94rem;
  line-height: 1.6;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 700;
}

.pledge-card {
  padding: 24px 24px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.pledge-card p {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.6;
}

.pledge-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-placeholder {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(163, 201, 60, 0.16);
  color: var(--lime);
  font-family: var(--display);
  font-size: 0.8rem;
}

.pledge-attribution strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
}

.pledge-attribution span {
  color: var(--gray-500);
  font-size: 0.84rem;
}

.industry-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 30px;
  border-radius: 16px;
  background: linear-gradient(155deg, var(--cobalt), #1a2ec7);
  text-align: center;
}

.visual-label {
  margin: 0;
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}

.avatar-row {
  display: flex;
  gap: 8px;
}

.visual-caption {
  margin: 0;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* Services / tabs */

.services {
  padding: 90px 0;
  background: var(--white);
  text-align: center;
}

.tab-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 40px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: var(--paper);
  color: var(--gray-900);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn svg {
  width: 18px;
  height: 18px;
  color: var(--gray-500);
}

.tab-btn.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.tab-btn.is-active svg {
  color: var(--lime);
}

.tab-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  text-align: left;
}

.tab-photo {
  position: relative;
  min-height: 320px;
  border-radius: 14px;
  background: url("assets/photos/services.jpg") center / cover no-repeat;
  overflow: hidden;
}

.tab-photo-cta {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.tab-copy h3 {
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.tab-copy > p {
  margin-bottom: 22px;
  color: var(--gray-900);
  font-size: 0.96rem;
  line-height: 1.75;
}

.compare-table {
  border-top: 1px solid var(--line-dark);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.9rem;
  line-height: 1.55;
}

.compare-head {
  color: var(--gray-500);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-row span:first-child {
  color: var(--gray-900);
}

.compare-row span:last-child {
  color: var(--ink);
  font-weight: 600;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.tab-arrow {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

/* Process */

.process {
  padding: 90px 0;
  background: var(--white);
  text-align: center;
}

.process-sub {
  max-width: 640px;
  margin: 0 auto 46px;
  color: var(--gray-900);
  font-size: 0.98rem;
  line-height: 1.75;
}

.process-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  align-items: start;
}

.process-accordion {
  display: grid;
  gap: 0;
}

.process-item {
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
}

.process-item:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.process-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--gray-500);
  font-size: 1.15rem;
  font-weight: 700;
  list-style: none;
}

.process-item summary::-webkit-details-marker {
  display: none;
}

.process-item[open] summary {
  color: var(--ink);
}

.process-num {
  color: var(--gray-300);
  font-family: var(--display);
  font-size: 1.1rem;
}

.process-item[open] .process-num {
  color: var(--lime-text, var(--lime));
  -webkit-text-stroke: 0.5px var(--ink);
}

.process-item p {
  max-width: 480px;
  margin: 14px 0 0;
  color: var(--gray-900);
  font-size: 0.94rem;
  line-height: 1.7;
  border-top: 2px solid var(--ink);
  padding-top: 14px;
  width: 60px;
  border-image: none;
}

.process-item p {
  width: auto;
}

.process-photo {
  min-height: 420px;
  border-radius: 16px;
  background: url("assets/photos/process.jpg") center / cover no-repeat;
}

/* Golden rule */

.golden-rule {
  padding: 60px 0;
  background: var(--white);
}

.golden-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 20px;
  background: var(--paper);
}

.golden-photo {
  position: relative;
  min-height: 380px;
  border-radius: 14px;
  background: url("assets/photos/pledge.jpg") center / cover no-repeat;
}

.golden-badge {
  position: absolute;
  left: 20px;
  bottom: -18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50% / 45%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.82rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.golden-badge-key {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.golden-copy .eyebrow {
  color: var(--cobalt);
}

.golden-quote {
  margin: 18px 0 22px;
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.75;
}

.golden-sign {
  margin: 0 0 22px;
  font-weight: 600;
}

/* Pricing */

.packages {
  padding: 90px 0;
  background: var(--black);
  text-align: center;
}

.pricing-sub {
  max-width: 620px;
  margin: 0 auto 44px;
  color: var(--gray-300);
  font-size: 0.98rem;
  line-height: 1.75;
}

.package-grid {
  display: grid;
  gap: 18px;
  text-align: center;
}

.package-grid--6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-dark);
}

.package-card.is-featured {
  border-color: var(--lime);
}

.package-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(163, 201, 60, 0.08);
  color: var(--lime);
}

.package-icon svg {
  width: 26px;
  height: 26px;
}

.package-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.25rem;
}

.package-for {
  margin: 0 0 22px;
  color: var(--gray-300);
  font-size: 0.88rem;
  line-height: 1.65;
}

.package-price {
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--display);
  font-size: 2rem;
}

.package-price span {
  color: var(--gray-500);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
}

.package-caveat {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.78rem;
}

.packages-cta {
  margin-top: 44px;
}

/* Mission */

.mission {
  padding: 90px 0;
  background: var(--white);
}

.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mission-copy p {
  margin-bottom: 18px;
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.8;
}

.mission-collage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 380px;
}

.collage-block {
  border-radius: 12px;
}

.collage-block--a {
  grid-row: 1 / 3;
  background: url("assets/photos/mission-a.jpg") center / cover no-repeat;
}

.collage-block--b {
  background: url("assets/photos/mission-b.jpg") center / cover no-repeat;
}

.collage-block--c {
  background: linear-gradient(155deg, var(--cobalt), var(--ink));
}

/* FAQ */

.faq {
  padding: 90px 0;
  background: var(--white);
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  text-align: left;
}

.faq-item {
  padding: 20px 22px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  display: inline-flex;
  min-width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
  transition: transform 160ms ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--gray-900);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* Audit / final CTA */

.audit {
  padding: 60px 0 90px;
  background: var(--white);
}

.audit-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 5vw, 60px);
  border-radius: 24px;
  background: var(--black);
}

.audit-photo {
  min-height: 320px;
  border-radius: 16px;
  background: linear-gradient(160deg, #1c2c6b, #05070f 70%);
}

.audit-copy h2 {
  color: var(--white);
}

.audit-quote {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
}

.audit-form-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.audit-form-inline label {
  display: grid;
  gap: 8px;
}

.audit-form-inline span {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audit-form-inline input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.audit-form-inline input:focus {
  border-color: var(--lime);
}

.audit-form-inline .hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.audit-form-inline .form-status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.2em;
  font-size: 0.88rem;
}

.audit-form-inline .form-status.is-error {
  color: #ff8a8a;
}

.audit-form-inline .form-status.is-success {
  color: var(--lime);
}

.audit-form-inline button {
  grid-column: 1 / -1;
  width: max-content;
  margin-top: 4px;
}

/* Footer */

.site-footer {
  padding: 56px 0 0;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-contact-line {
  margin: 0 0 16px;
  color: var(--gray-300);
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-contact-line strong {
  color: var(--white);
}

.footer-contact-line a {
  color: var(--lime);
  text-decoration: none;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--gray-300);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-col p {
  margin: 0;
  color: var(--gray-300);
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--gray-300);
  text-decoration: underline;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gray-300);
  font-size: 0.7rem;
}

/* Responsive */

@media (max-width: 1100px) {
  .package-grid--6,
  .package-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .tab-panel,
  .process-body,
  .golden-panel,
  .mission-split,
  .audit-panel,
  .industry-cards,
  .industry-split {
    grid-template-columns: 1fr;
  }

  .golden-badge {
    position: static;
    margin-top: -60px;
    margin-left: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .package-grid--6,
  .package-grid--4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 20px 48px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .compare-head {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .navbar {
    gap: 10px;
    padding: 12px 16px;
  }

  .navbar .btn {
    padding: 0 14px;
    font-size: 0.76rem;
    min-height: 38px;
    white-space: nowrap;
  }

  .brand img {
    width: 150px;
  }

  h2 {
    overflow-wrap: break-word;
  }
}
