:root {
  --red: #e52632;
  --red-dark: #b91425;
  --green: #0d7a3a;
  --green-deep: #07562b;
  --gold: #f4b43f;
  --ink: #1c1d22;
  --muted: #5e6673;
  --line: #e4e8ea;
  --paper: #ffffff;
  --soft: #f5f8f3;
  --dark: #102018;
  --body-bg: #fbfcfa;
  --surface: #ffffff;
  --surface-subtle: #f8fbf5;
  --surface-green: #f5fbf6;
  --surface-green-strong: #edf7ef;
  --surface-warm: #fffaf2;
  --surface-alert: #fff8e8;
  --field-bg: #ffffff;
  --field-border: #cfd7da;
  --header-bg:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48));
  --header-border: rgba(255, 255, 255, 0.68);
  --header-scrolled-bg:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66));
  --header-scrolled-border: rgba(255, 255, 255, 0.76);
  --menu-panel-bg: rgba(255, 255, 255, 0.94);
  --hero-bg:
    linear-gradient(135deg, rgba(229, 38, 50, 0.08) 0 12%, transparent 12% 100%),
    linear-gradient(90deg, #fff9f2 0%, #ffffff 48%, #eff8ef 100%);
  --about-bg: linear-gradient(180deg, #f8fbf5, #ffffff);
  --accent-text: var(--green-deep);
  --text-strong: #37403a;
  --toggle-bg: rgba(13, 122, 58, 0.12);
  --toggle-border: rgba(13, 122, 58, 0.22);
  --toggle-knob: #f4b43f;
  --shadow: 0 20px 60px rgba(16, 32, 24, 0.12);
  --shadow-strong: 0 28px 80px rgba(16, 32, 24, 0.18);
  --radius: 8px;
  --container: 1180px;
}

:root[data-theme="dark"] {
  --ink: #edf7ef;
  --muted: #b3c2b8;
  --line: rgba(184, 213, 193, 0.18);
  --paper: #101f17;
  --soft: #0b1710;
  --body-bg: #07100c;
  --surface: #101f17;
  --surface-subtle: #0d1a13;
  --surface-green: #11271a;
  --surface-green-strong: #183724;
  --surface-warm: #211d12;
  --surface-alert: #261f10;
  --field-bg: #0b1711;
  --field-border: #315443;
  --header-bg: rgba(18, 45, 31, 0.58);
  --header-border: rgba(143, 232, 173, 0.22);
  --header-scrolled-bg: rgba(19, 50, 34, 0.86);
  --header-scrolled-border: rgba(143, 232, 173, 0.24);
  --menu-panel-bg: rgba(7, 16, 12, 0.94);
  --hero-bg:
    linear-gradient(135deg, rgba(229, 38, 50, 0.16) 0 12%, transparent 12% 100%),
    linear-gradient(90deg, #0a130e 0%, #0d1b14 48%, #10261a 100%);
  --about-bg: #020403;
  --accent-text: #8fe8ad;
  --text-strong: #dce8df;
  --toggle-bg: rgba(143, 232, 173, 0.14);
  --toggle-border: rgba(143, 232, 173, 0.34);
  --toggle-knob: #dce7f7;
  --shadow: none;
  --shadow-strong: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  overflow-x: clip;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--body-bg);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.2s ease, color 0.2s ease;
}

body.nav-open {
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

::selection {
  color: #ffffff;
  background: var(--green);
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--green);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 18px 44px rgba(16, 32, 24, 0.07);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: var(--header-scrolled-bg);
  border-bottom-color: var(--header-scrolled-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64), 0 10px 30px rgba(16, 32, 24, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  width: 226px;
  min-width: 170px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a,
.header-actions a,
.contact-methods a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover,
.contact-methods a:hover,
.site-footer a:hover {
  color: var(--green);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a[aria-current],
.site-nav a.is-active {
  color: var(--accent-text);
}

.site-nav a[aria-current]::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 26px;
  padding: 3px;
  overflow: hidden;
  background: var(--toggle-bg);
  border: 1px solid var(--toggle-border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle span:not(.sr-only) {
  position: relative;
  z-index: 1;
  display: block;
  width: 18px;
  height: 18px;
  background: var(--toggle-knob);
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(16, 32, 24, 0.18);
  transform: translateX(0);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle span:not(.sr-only)::before {
  position: absolute;
  inset: 3px;
  background: var(--green-deep);
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0-16a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0V3a1 1 0 0 1 1-1Zm0 17a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1ZM4 11a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h1Zm17 0a1 1 0 1 1 0 2h-1a1 1 0 1 1 0-2h1ZM5.64 4.22l.7.7a1 1 0 1 1-1.42 1.42l-.7-.7a1 1 0 0 1 1.42-1.42Zm13.44 13.44.7.7a1 1 0 1 1-1.42 1.42l-.7-.7a1 1 0 1 1 1.42-1.42Zm.7-12.02-.7.7a1 1 0 0 1-1.42-1.42l.7-.7a1 1 0 1 1 1.42 1.42ZM6.34 19.08l-.7.7a1 1 0 1 1-1.42-1.42l.7-.7a1 1 0 1 1 1.42 1.42Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0-16a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0V3a1 1 0 0 1 1-1Zm0 17a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1ZM4 11a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h1Zm17 0a1 1 0 1 1 0 2h-1a1 1 0 1 1 0-2h1ZM5.64 4.22l.7.7a1 1 0 1 1-1.42 1.42l-.7-.7a1 1 0 0 1 1.42-1.42Zm13.44 13.44.7.7a1 1 0 1 1-1.42 1.42l-.7-.7a1 1 0 1 1 1.42-1.42Zm.7-12.02-.7.7a1 1 0 0 1-1.42-1.42l.7-.7a1 1 0 1 1 1.42 1.42ZM6.34 19.08l-.7.7a1 1 0 1 1-1.42-1.42l.7-.7a1 1 0 1 1 1.42 1.42Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

html[data-theme="dark"] .theme-toggle span:not(.sr-only) {
  box-shadow: none;
  transform: translateX(16px);
}

html[data-theme="dark"] .theme-toggle span:not(.sr-only)::before {
  background: #07100c;
  opacity: 1;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a9 9 0 1 0 8.99 8.61A7.5 7.5 0 0 1 12.39 3H12Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a9 9 0 1 0 8.99 8.61A7.5 7.5 0 0 1 12.39 3H12Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.theme-toggle:hover {
  border-color: var(--green);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(13, 122, 58, 0.22);
  outline-offset: 3px;
}

.theme-toggle-mobile {
  display: none;
}

.text-link {
  color: var(--green);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  color: #ffffff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(229, 38, 50, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 16px 34px rgba(229, 38, 50, 0.25);
  transform: translateY(-1px);
}

.button-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.button-icon::after {
  position: absolute;
  left: 5px;
  top: 4px;
  width: 5px;
  height: 5px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

.chat-icon::before {
  position: absolute;
  right: 1px;
  bottom: -4px;
  width: 6px;
  height: 6px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
}

.button-icon.chat-icon {
  width: 21px;
  height: 21px;
  background: url("../images/whatsapp-icon.png") center / contain no-repeat;
  border: 0;
  border-radius: 5px;
}

.button-icon.chat-icon::before,
.button-icon.chat-icon::after {
  display: none;
}

.button-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 14px;
}

.button-secondary {
  color: var(--accent-text);
  background: var(--paper);
  border-color: rgba(13, 122, 58, 0.28);
  box-shadow: 0 12px 30px rgba(16, 32, 24, 0.08);
}

.button-secondary:hover {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.button-light {
  color: var(--accent-text);
  background: var(--paper);
  border-color: var(--paper);
}

.button-light:hover {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  position: relative;
  z-index: 25;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--accent-text);
  background: transparent;
  border: 1px solid var(--header-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(13, 122, 58, 0.34);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: opacity 0.18s ease, transform 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  padding: 92px 0;
}

.section-band {
  padding: 86px 0 72px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
}

.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 30vw;
  height: 100%;
  background: linear-gradient(160deg, rgba(13, 122, 58, 0.12), transparent 62%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 48px;
}

.hero-copy,
.hero-media,
.training-copy,
.contact-copy,
.section-heading {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  background: var(--red);
  border-radius: 99px;
  content: "";
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 0.97;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.hero-chips span {
  padding: 7px 10px;
  color: var(--accent-text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 122, 58, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

html[data-theme="dark"] .hero-chips span {
  color: #e9fff0;
  background: rgba(143, 232, 173, 0.14);
  border-color: rgba(143, 232, 173, 0.34);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 660px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-strip div {
  padding: 16px;
  background: var(--paper);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 17px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  order: -1;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
  background: var(--dark);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  overflow: hidden;
  border-radius: inherit;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.7s ease, transform 4.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 70% center;
}

.hero-slide:nth-child(2) img {
  object-position: 66% center;
}

.hero-slide:nth-child(3) img {
  object-position: 58% bottom;
}

.hero-slide:nth-child(4) img {
  width: calc(100% + 400px);
  height: calc(100% + 200px);
  max-width: none;
  object-position: left center;
  transform: translate(-400px, -200px);
}

.hero-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(16, 32, 24, 0.58), transparent);
  border-radius: 0 0 var(--radius) var(--radius);
  pointer-events: none;
  content: "";
  z-index: 1;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 310px;
  padding: 18px;
  color: #ffffff;
  background: rgba(16, 32, 24, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  min-height: 144px;
  text-shadow: 0 2px 10px rgba(16, 32, 24, 0.72);
}

.hero-note::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 99px;
  content: "";
}

.hero-note strong,
.hero-note span {
  display: block;
}

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

.hero-note-panel.is-active {
  display: block;
  animation: heroNoteIn 0.36s ease both;
}

.hero-note strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.18;
}

.hero-note span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

@keyframes heroNoteIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  padding: 0;
  color: #ffffff;
  pointer-events: none;
}

.hero-slider-arrow,
.hero-slider-dots button {
  flex: 0 0 auto;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 38px;
  height: 52px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  text-indent: 120%;
  white-space: nowrap;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-slider-arrow:hover {
  opacity: 0.82;
  transform: translateY(-50%) scale(1.04);
}

.hero-slider-arrow::before {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

[data-hero-prev] {
  left: 8px;
}

[data-hero-next] {
  right: 8px;
}

[data-hero-next]::before {
  left: 8px;
  border-left: 0;
  border-bottom: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-slider-dots {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  pointer-events: auto;
  transform: translateX(-50%);
}

.hero-slider-dots button {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-slider-dots button.is-active {
  width: 24px;
  background: var(--gold);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 720px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact {
  max-width: 680px;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.list-panel,
.step-card,
.price-card,
.action-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(16, 32, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.feature-card:nth-child(2) img {
  object-position: 76% center;
}

.feature-card:nth-child(3) img {
  object-position: center 18%;
}

.feature-card:hover img {
  transform: scale(1.04);
}

.feature-card div {
  padding: 22px;
}

.card-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(16, 32, 24, 0.82);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card p,
.step-card p,
.price-card li,
.about-copy,
.action-panel p,
.faq-list p,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.feature-card h3,
.step-card h3,
.price-card h3 {
  text-wrap: balance;
}

.split-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.list-panel {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(244, 180, 63, 0.08), transparent 52%),
    var(--paper);
}

.list-panel-copy {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 11px;
  color: var(--accent-text);
  background: var(--surface-green-strong);
  border: 1px solid rgba(13, 122, 58, 0.16);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tag-list li:hover {
  background: var(--surface-green);
  transform: translateY(-1px);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(16, 32, 24, 0.06);
}

.step-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  background: rgba(13, 122, 58, 0.08);
  transform: rotate(18deg);
  content: "";
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: #ffffff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.training-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.training-media {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(13, 122, 58, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 32, 24, 0.1);
}

.training-media::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
  content: "";
}

.training-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.training-check-list li {
  padding-left: 34px;
  color: var(--ink);
  font-weight: 400;
}

.training-check-list li::before {
  top: 3px;
  width: 20px;
  height: 20px;
}

.training-check-list li::after {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  content: "";
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  --package-star: var(--green);
  --package-star-bg: rgba(13, 122, 58, 0.1);
  --package-star-border: rgba(13, 122, 58, 0.2);
  --package-cta-bg: var(--green);
  --package-cta-border: rgba(13, 122, 58, 0.24);
  --package-cta-hover: var(--green-deep);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 122, 58, 0.06), transparent 42%),
    var(--paper);
  border-color: rgba(13, 122, 58, 0.14);
  box-shadow: 0 16px 44px rgba(16, 32, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card.package-basic {
  --package-star: #0d7a3a;
  --package-star-bg: rgba(13, 122, 58, 0.11);
  --package-star-border: rgba(13, 122, 58, 0.2);
  --package-cta-bg: #0d7a3a;
  --package-cta-border: rgba(13, 122, 58, 0.28);
  --package-cta-hover: #07562b;
}

.price-card.package-advanced {
  --package-star: var(--red);
  --package-star-bg: rgba(229, 38, 50, 0.1);
  --package-star-border: rgba(229, 38, 50, 0.24);
  --package-cta-bg: var(--red);
  --package-cta-border: rgba(229, 38, 50, 0.32);
  --package-cta-hover: var(--red-dark);
}

.price-card.package-outsourcing {
  --package-star: #2389ad;
  --package-star-bg: rgba(35, 137, 173, 0.12);
  --package-star-border: rgba(35, 137, 173, 0.24);
  --package-cta-bg: #2389ad;
  --package-cta-border: rgba(35, 137, 173, 0.3);
  --package-cta-hover: #176f8f;
}

.price-card:hover {
  border-color: rgba(13, 122, 58, 0.28);
  box-shadow: 0 24px 64px rgba(16, 32, 24, 0.14);
  transform: translateY(-3px);
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(244, 180, 63, 0.12), transparent 44%),
    var(--paper);
  border-color: rgba(244, 180, 63, 0.54);
  box-shadow: 0 24px 70px rgba(16, 32, 24, 0.16);
}

.price-card.featured::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green-deep));
  content: "";
}

.package-ribbon {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 1;
  padding: 7px 10px;
  color: var(--accent-text);
  background: rgba(244, 180, 63, 0.22);
  border: 1px solid rgba(244, 180, 63, 0.52);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.package-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-bottom: 18px;
  padding-right: 96px;
}

.price-card:not(.featured) .package-topline {
  padding-right: 0;
}

.package-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--package-star);
  background: var(--package-star-bg);
  border: 1px solid var(--package-star-border);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(16, 32, 24, 0.09);
}

.package-icon::before {
  content: "\2605";
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.package-label {
  margin: 0;
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.package-time {
  margin-top: -4px;
  color: var(--green);
  font-weight: 800;
}

.package-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 22px;
}

.package-price-grid div {
  min-height: 70px;
  padding: 11px 12px;
  background: rgba(248, 251, 245, 0.76);
  border: 1px solid rgba(13, 122, 58, 0.14);
  border-radius: var(--radius);
}

.price-card.featured .package-price-grid div {
  background: rgba(255, 250, 242, 0.78);
  border-color: rgba(244, 180, 63, 0.34);
}

html[data-theme="dark"] .package-price-grid div {
  background: rgba(9, 23, 15, 0.88);
  border-color: rgba(143, 232, 173, 0.28);
}

html[data-theme="dark"] .price-card.featured .package-price-grid div {
  background: rgba(36, 28, 12, 0.9);
  border-color: rgba(244, 180, 63, 0.42);
}

.package-price-grid span,
.package-price-grid small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.package-price-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--accent-text);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.05;
}

html[data-theme="dark"] .package-price-grid span,
html[data-theme="dark"] .package-price-grid small {
  color: #c8d8ce;
}

html[data-theme="dark"] .package-price-grid strong {
  color: #f4fff7;
}

.package-price-grid small {
  margin-top: 4px;
  text-transform: none;
}

.package-features {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.package-features li {
  position: relative;
  padding-left: 30px;
  color: var(--text-strong);
  font-size: 15.5px;
  line-height: 1.45;
}

.package-features li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.package-features li::after {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  content: "";
}

.package-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  color: #ffffff;
  background: var(--package-cta-bg);
  border: 1px solid var(--package-cta-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 32, 24, 0.1);
  font-weight: 850;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.package-cta:hover {
  color: #ffffff;
  background: var(--package-cta-hover);
  box-shadow: 0 16px 34px rgba(16, 32, 24, 0.16);
  transform: translateY(-1px);
}

.payment-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 24px 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(244, 180, 63, 0.22) 0 20%, transparent 20%),
    var(--green-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.payment-panel h3,
.payment-panel p {
  margin-bottom: 0;
}

.payment-panel h3 {
  color: #ffffff;
}

.payment-panel p:not(.payment-label) {
  color: rgba(255, 255, 255, 0.78);
}

.payment-label {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.notice-section {
  background: var(--body-bg);
}

.notice-panel {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(244, 180, 63, 0.18) 0 18%, transparent 18%),
    var(--surface-warm);
  border: 1px solid rgba(244, 180, 63, 0.38);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(16, 32, 24, 0.09);
}

.notice-heading {
  max-width: 860px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(13, 122, 58, 0.12);
}

.notice-heading h2 {
  color: var(--accent-text);
}

.notice-heading p:last-child {
  color: var(--muted);
  font-size: 16px;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.notice-card {
  padding: 22px;
  background: var(--surface-green);
  border: 1px solid rgba(13, 122, 58, 0.16);
  border-radius: var(--radius);
  box-shadow: none;
}

.notice-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--accent-text);
  background: var(--surface-green-strong);
  border: 1px solid rgba(13, 122, 58, 0.18);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.notice-card h3 {
  color: var(--accent-text);
}

.notice-card p:last-child {
  margin-bottom: 0;
}

.notice-card p {
  color: var(--muted);
}

.notice-card strong {
  color: var(--accent-text);
}

.notice-card a {
  color: var(--accent-text);
  font-weight: 700;
  text-decoration: none;
}

.notice-card a:hover {
  color: var(--green);
}

.notice-alert {
  padding: 12px 14px;
  color: var(--ink);
  background: var(--surface-alert);
  border-left: 3px solid var(--gold);
  font-weight: 600;
}

.notice-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
  padding: 15px 18px;
  color: var(--accent-text);
  background: var(--surface-green);
  border: 1px solid rgba(13, 122, 58, 0.14);
  border-radius: var(--radius);
  font-weight: 700;
}

.page-hero {
  padding-top: 76px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid rgba(13, 122, 58, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 32, 24, 0.1);
}

.page-hero-media::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
  content: "";
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: var(--about-bg);
  color: var(--ink);
}

.about-teamwork-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.about-teamwork-image-dark {
  opacity: 0;
}

html[data-theme="dark"] .about-teamwork-image-light {
  opacity: 0;
}

html[data-theme="dark"] .about-teamwork-image-dark {
  opacity: 1;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-section .about-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 1.32fr);
  grid-template-areas:
    "heading image-space"
    "copy image-space";
  align-items: start;
  min-height: 344px;
  row-gap: 22px;
}

.about-section .about-grid > div:first-child {
  grid-area: heading;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.88);
}

.about-section .about-grid > div:first-child h2 {
  color: var(--accent-text);
}

.about-section .eyebrow {
  color: var(--green);
}

.about-copy {
  grid-area: copy;
  position: relative;
  padding: 26px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(244, 180, 63, 0.13) 0 24%, transparent 24%),
    linear-gradient(145deg, rgba(7, 86, 43, 0.94), rgba(16, 32, 24, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(16, 32, 24, 0.18);
  backdrop-filter: blur(8px);
}

.about-copy::after {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.about-copy-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 18px;
}

.about-copy-header span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--dark);
  background: var(--gold);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.about-copy-header small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.about-copy > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.68;
}

.about-proof-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.about-proof-list li {
  position: relative;
  padding: 13px 14px 13px 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.about-proof-list li::before {
  position: absolute;
  left: 15px;
  top: 17px;
  width: 17px;
  height: 17px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
}

.about-proof-list li::after {
  position: absolute;
  left: 21px;
  top: 20px;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  content: "";
}

.about-proof-list span {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.about-proof-list small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.45;
}

.about-read-more {
  display: flex;
  width: 100%;
  margin-top: 22px;
}

.about-detail-section {
  background: var(--body-bg);
}

.about-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.about-story-card,
.about-aside-card,
.about-value-card {
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(16, 32, 24, 0.08);
}

.about-story-card {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.about-story-card h2 {
  max-width: 740px;
}

.about-story-card p {
  color: var(--muted);
  font-size: 17px;
}

.about-story-card .about-lead {
  color: var(--text-strong);
  font-size: 18px;
}

.about-aside-card {
  position: sticky;
  top: 96px;
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(244, 180, 63, 0.16) 0 25%, transparent 25%),
    linear-gradient(145deg, var(--green), var(--green-deep));
}

.about-year {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  color: var(--dark);
  background: var(--gold);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.about-aside-card h3 {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
}

.about-aside-card p {
  color: rgba(255, 255, 255, 0.8);
}

.about-aside-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.about-aside-list span {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 14px;
}

.about-values-section {
  background: var(--surface-subtle);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-value-card {
  position: relative;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(13, 122, 58, 0.14);
}

.about-value-card > span {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(13, 122, 58, 0.1);
}

.about-value-card > span::after {
  position: relative;
  left: 11px;
  top: 5px;
  display: block;
  width: 6px;
  height: 13px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  content: "";
}

.about-value-card h3 {
  color: var(--accent-text);
}

.about-value-card p {
  color: var(--muted);
}

.about-scope-section {
  background: var(--body-bg);
}

.about-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.about-scope-grid p {
  color: var(--muted);
  font-size: 17px;
}

.about-service-tags {
  margin-top: 0;
}

.location-section {
  background: var(--body-bg);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.location-copy {
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(13, 122, 58, 0.08) 0 28%, transparent 28%),
    var(--surface-subtle);
  border: 1px solid rgba(13, 122, 58, 0.16);
  border-radius: var(--radius);
}

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

.location-details {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.location-details span {
  padding: 11px 12px;
  color: var(--accent-text);
  background: var(--paper);
  border: 1px solid rgba(13, 122, 58, 0.14);
  border-radius: var(--radius);
  font-weight: 750;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(13, 122, 58, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 32, 24, 0.1);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.values-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  width: min(940px, 100%);
  margin-top: 34px;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(13, 122, 58, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(16, 32, 24, 0.18);
  backdrop-filter: blur(10px);
}

.values-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(244, 180, 63, 0.18) 0 28%, transparent 28%),
    linear-gradient(145deg, rgba(13, 122, 58, 0.98), rgba(7, 86, 43, 0.96));
}

.values-heading .eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
}

.values-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}

.values-heading p:not(.eyebrow) {
  max-width: 260px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.values-content {
  padding: 28px;
}

.values-content > p {
  margin: 0;
  color: var(--text-strong);
  font-size: 17px;
  line-height: 1.65;
}

.values-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.values-list li {
  position: relative;
  min-height: 78px;
  padding: 16px 16px 15px 54px;
  background: var(--surface-subtle);
  border: 1px solid rgba(13, 122, 58, 0.14);
  border-radius: var(--radius);
}

.values-list li::before {
  position: absolute;
  left: 18px;
  top: 19px;
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(13, 122, 58, 0.1);
  content: "";
}

.values-list li::after {
  position: absolute;
  left: 26px;
  top: 23px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  content: "";
}

.values-list span {
  display: block;
  margin-bottom: 3px;
  color: var(--accent-text);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.values-list small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.action-section {
  padding: 50px 0;
}

html[data-theme="dark"] .action-section {
  background: #020403;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.action-panel {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(229, 38, 50, 0.08) 0 22%, transparent 22%),
    var(--surface-warm);
}

.action-panel.dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(244, 180, 63, 0.16) 0 22%, transparent 22%),
    var(--green-deep);
  border-color: var(--green-deep);
}

.action-panel.dark p {
  color: rgba(255, 255, 255, 0.75);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  grid-template-areas:
    "heading heading"
    "media list";
  gap: 28px 42px;
  align-items: center;
}

.faq-heading {
  grid-area: heading;
  margin-bottom: 0;
}

.faq-list {
  grid-area: list;
  align-self: center;
  display: grid;
  gap: 12px;
}

.faq-media {
  grid-area: media;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid rgba(13, 122, 58, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 32, 24, 0.1);
}

.faq-media::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
  content: "";
}

.faq-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

details {
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 32, 24, 0.05);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 400;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  content: "\2713";
}

summary::after {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  content: "";
}

details[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

html[data-theme="dark"] summary {
  color: var(--gold);
}

html[data-theme="dark"] summary::before,
html[data-theme="dark"] summary::after {
  color: var(--gold);
  border-color: var(--gold);
}

details p {
  margin: 12px 0 0;
}

.full-faq-list {
  max-width: 920px;
}

.section-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid rgba(13, 122, 58, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 32, 24, 0.05);
}

.section-more p {
  margin: 0;
  color: var(--muted);
}

.section-more strong {
  display: block;
  margin-bottom: 2px;
  color: var(--accent-text);
  font-weight: 700;
}

.faq-more-card {
  align-items: flex-start;
  background:
    linear-gradient(135deg, rgba(13, 122, 58, 0.08) 0 28%, transparent 28%),
    var(--paper);
}

.more-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 11px 16px;
  box-shadow: 0 12px 30px rgba(16, 32, 24, 0.08);
}

.more-link {
  flex: 0 0 auto;
  color: var(--accent-text);
  font-weight: 900;
  text-decoration: none;
}

.more-link:hover {
  color: var(--red);
}

.terms-section {
  background: var(--body-bg);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.terms-card {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(16, 32, 24, 0.08);
}

.terms-card h3 {
  color: var(--accent-text);
}

.terms-card .check-list {
  margin-top: 20px;
}

.terms-card .check-list li {
  padding-left: 36px;
  color: var(--muted);
  font-weight: 500;
}

.terms-card .check-list li::before {
  top: 2px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 8px 18px rgba(13, 122, 58, 0.18);
}

.terms-card .check-list li::after {
  position: absolute;
  left: 8px;
  top: 7px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  content: "";
}

.terms-card-button {
  width: fit-content;
  margin-top: 18px;
  box-shadow: 0 12px 30px rgba(16, 32, 24, 0.08);
}

.terms-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.terms-note h4 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 16px;
  text-transform: uppercase;
}

.terms-note p {
  color: var(--muted);
}

.terms-intro {
  margin: -4px 0 0;
  color: var(--green);
  font-weight: 800;
}

.full-terms-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-terms-grid .terms-card {
  align-self: start;
}

.full-terms-grid .placement-terms-card {
  grid-column: 1 / -1;
}

.contact-section {
  background: var(--body-bg);
}

.contact-grid {
  align-items: start;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.contact-methods a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-text);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-method.is-highlighted {
  padding: 8px 10px;
  background: var(--surface-green);
  border: 1px solid rgba(13, 122, 58, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 32, 24, 0.06);
}

.contact-method.is-highlighted::after {
  left: 18px;
}

.chat-method.is-highlighted {
  grid-column: 1 / -1;
  color: var(--accent-text);
  background: var(--surface-green);
  border-color: rgba(13, 122, 58, 0.22);
}

.contact-method::before {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: var(--surface-green-strong);
  border: 1px solid rgba(13, 122, 58, 0.16);
  border-radius: 50%;
  content: "";
}

.contact-method::after {
  position: absolute;
  left: 8px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--green);
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.7 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.7.6 4.1.6.7 0 1.3.6 1.3 1.3v3.5c0 .7-.6 1.3-1.3 1.3C10.4 22 2 13.6 2 3.3 2 2.6 2.6 2 3.3 2h3.5c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.6 4.1.1.4 0 .9-.3 1.2l-1.8 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.7 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.7.6 4.1.6.7 0 1.3.6 1.3 1.3v3.5c0 .7-.6 1.3-1.3 1.3C10.4 22 2 13.6 2 3.3 2 2.6 2.6 2 3.3 2h3.5c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.6 4.1.1.4 0 .9-.3 1.2l-1.8 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateY(-50%);
}

.email-method::before {
  background: var(--surface-alert);
  border-color: rgba(244, 180, 63, 0.35);
}

.email-method::after {
  left: 7px;
  width: 16px;
  height: 16px;
  background: #a96e00;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 1.95c-5.52 0-10 4.48-10 10s4.48 10 10 10h5v-2h-5c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 1.95c-5.52 0-10 4.48-10 10s4.48 10 10 10h5v-2h-5c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57v-1.43c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57v-1.43c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.chat-method::before {
  background: var(--surface-green-strong);
  border-color: rgba(13, 122, 58, 0.22);
}

.chat-method::after {
  width: 18px;
  height: 18px;
  background: url("../images/whatsapp-icon.png") center / contain no-repeat;
  -webkit-mask-image: none;
  mask-image: none;
}

html[data-theme="dark"] .contact-methods a:hover,
html[data-theme="dark"] .contact-methods a:focus-visible {
  color: var(--gold);
}

html[data-theme="dark"] .contact-method.is-highlighted:hover,
html[data-theme="dark"] .contact-method.is-highlighted:focus-visible {
  background: rgba(244, 180, 63, 0.12);
  border-color: rgba(244, 180, 63, 0.52);
}

html[data-theme="dark"] .contact-method:hover::before,
html[data-theme="dark"] .contact-method:focus-visible::before {
  background: rgba(244, 180, 63, 0.16);
  border-color: rgba(244, 180, 63, 0.48);
}

html[data-theme="dark"] .contact-method:not(.chat-method):hover::after,
html[data-theme="dark"] .contact-method:not(.chat-method):focus-visible::after {
  background: var(--gold);
}

.branch-list {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.payment-mini {
  display: grid;
  gap: 3px;
  margin: 0 0 24px;
  padding: 16px;
  color: var(--accent-text);
  background: var(--surface-green);
  border: 1px solid rgba(13, 122, 58, 0.18);
  border-radius: var(--radius);
}

.payment-mini span {
  color: var(--muted);
  font-size: 14px;
}

.branch-list p {
  margin-bottom: 7px;
}

.contact-form {
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--green);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 900;
}

.contact-form label.soft-field {
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: var(--radius);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select {
  padding-right: 48px;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%2307562b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
}

select option {
  font-weight: 400;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(13, 122, 58, 0.18);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-guard {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 14px 0 0;
  font-size: 14px;
}

.site-footer {
  padding: 56px 0 22px;
  color: rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(135deg, rgba(229, 38, 50, 0.14) 0 16%, transparent 16%),
    #0b1710;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr 1.1fr;
  gap: 38px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
}

.footer-highlight {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.footer-other-numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  align-content: start;
}

.footer-other-numbers h2 {
  grid-column: 1 / -1;
}

.footer-other-numbers a {
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 20px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 5px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(16, 32, 24, 0.28);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 22px 52px rgba(16, 32, 24, 0.34);
  transform: translateY(-2px);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: contain;
}

html[data-theme="dark"] * {
  text-shadow: none !important;
}

html[data-theme="dark"] :where(
  .site-header,
  .button,
  .button:hover,
  .button-secondary,
  .hero-media,
  .feature-card,
  .feature-card:hover,
  .step-card,
  .training-media,
  .price-card,
  .price-card:hover,
  .price-card.featured,
  .package-star,
  .package-cta,
  .package-cta:hover,
  .payment-panel,
  .notice-panel,
  .page-hero-media,
  .about-copy,
  .about-story-card,
  .about-aside-card,
  .about-value-card,
  .map-frame,
  .values-panel,
  .faq-media,
  .section-more,
  .terms-card,
  .terms-card-button,
  .contact-method.is-highlighted,
  .contact-form,
  .floating-whatsapp,
  .floating-whatsapp:hover,
  .site-nav
) {
  box-shadow: none !important;
}

html[data-theme="dark"] details,
html[data-theme="dark"] .about-value-card > span,
html[data-theme="dark"] .values-list li::before,
html[data-theme="dark"] .terms-card .check-list li::before {
  box-shadow: none !important;
}

@media (max-width: 1020px) {
  .hero-grid,
  .page-hero-grid,
  .training-grid,
  .about-grid,
  .about-detail-grid,
  .about-scope-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 460px;
  }

  .service-feature-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notice-grid,
  .about-values-grid,
  .terms-grid {
    grid-template-columns: 1fr;
  }

  .about-aside-card {
    position: relative;
    top: auto;
  }

  .payment-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-teamwork-image {
    height: clamp(320px, 46vw, 460px);
    object-fit: cover;
    object-position: right center;
  }

  .about-section .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy";
    min-height: clamp(320px, 46vw, 460px);
    align-content: center;
  }

  .about-section .about-grid > div:first-child {
    max-width: min(430px, 48%);
  }

  .about-copy {
    max-width: 520px;
  }
}

@media (max-width: 820px) {
  .container {
    width: calc(100% - 28px);
  }

  .site-header .container,
  .hero-grid,
  .hero-copy,
  .hero-media,
  .proof-strip,
  .hero-actions,
  .hero-lede,
  h1 {
    max-width: calc(100vw - 28px);
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px 44px;
    gap: 7px;
    min-height: 68px;
    width: calc(100vw - 28px);
  }

  .brand {
    width: 190px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .theme-toggle-mobile {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: auto;
    z-index: 39;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(300px, calc(100vw - 42px));
    max-height: calc(100dvh - 92px);
    padding: 16px;
    overflow-y: auto;
    background: var(--menu-panel-bg);
    border: 1px solid var(--header-border);
    border-radius: var(--radius);
    box-shadow: 0 24px 42px rgba(16, 32, 24, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateX(110vw);
    visibility: hidden;
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    transition: transform 0.22s ease, opacity 0.2s ease, visibility 0.2s ease;
    will-change: transform;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    display: none;
  }

  .section,
  .section-band {
    padding: 64px 0;
  }

  .notice-panel,
  .location-copy,
  .terms-card {
    padding: 24px;
  }

  .notice-heading p:last-child {
    font-size: 16px;
  }

  .hero-copy,
  .hero-actions,
  .hero-chips {
    min-width: 0;
    width: 100%;
  }

  .about-section .about-grid {
    gap: 20px;
  }

  .about-teamwork-image {
    display: none;
  }

  .about-section .about-grid {
    min-height: 0;
  }

  .values-panel {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    padding: 0;
  }

  .values-heading,
  .values-content {
    padding: 24px;
  }

  .values-heading p:not(.eyebrow) {
    max-width: 100%;
  }

  .values-list li {
    min-height: 0;
  }

  .about-story-card,
  .about-aside-card,
  .about-value-card {
    padding: 24px;
  }

  .about-section .about-grid > div:first-child {
    max-width: 100%;
  }

  .about-section .about-grid > div:first-child .eyebrow,
  .about-section .about-grid > div:first-child h2 {
    color: var(--accent-text);
  }

  .about-section .about-grid > div:first-child .eyebrow {
    color: var(--green);
  }

  h1 {
    font-size: 42px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }

  .proof-strip,
  .split-lists,
  .action-grid,
  .footer-grid,
  .contact-methods,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "media"
      "list";
    gap: 26px;
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 640px) {
  .service-feature-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .package-ribbon {
    position: static;
    width: fit-content;
    margin-bottom: 14px;
  }

  .package-topline {
    padding-right: 0;
  }

  .package-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .package-price-grid div {
    min-height: 64px;
    padding: 10px 8px;
  }

  .package-price-grid span,
  .package-price-grid small {
    font-size: 9.5px;
  }

  .package-price-grid strong {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .button {
    width: 100%;
  }

  .payment-panel {
    padding: 22px;
  }

  .notice-panel,
  .notice-card,
  .terms-card {
    padding: 22px;
  }

  .notice-footer {
    display: grid;
  }

  .section-more {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-note {
    left: 14px;
    right: 14px;
    bottom: 18px;
    max-width: none;
  }

  .hero-media {
    overflow: hidden;
    margin-bottom: 0;
  }

  .hero-slider-controls {
    inset: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .feature-card div,
  .price-card,
  .action-panel,
  .contact-form,
  .list-panel,
  .step-card {
    padding: 22px;
  }
}

html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .about-section .eyebrow,
html[data-theme="dark"] .about-section .about-grid > div:first-child .eyebrow {
  color: var(--gold);
}

html[data-theme="dark"] .site-nav a:hover,
html[data-theme="dark"] .site-nav a:focus-visible,
html[data-theme="dark"] .site-nav a:active,
html[data-theme="dark"] .site-nav a[aria-current],
html[data-theme="dark"] .site-nav a.is-active,
html[data-theme="dark"] .text-link,
html[data-theme="dark"] .text-link:hover,
html[data-theme="dark"] .text-link:focus-visible,
html[data-theme="dark"] .text-link:active {
  color: var(--gold);
}

html[data-theme="dark"] .site-nav a::after {
  background: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-slide {
    transform: none;
  }

  .hero-note-panel.is-active {
    animation: none;
  }
}
