:root {
  --red: #d71920;
  --red-dark: #b91016;
  --blue: #1664c8;
  --blue-dark: #06224b;
  --blue-soft: #eaf6ff;
  --sky: #dff3ff;
  --yellow: #f8b81f;
  --yellow-soft: #fff6d8;
  --navy: #061b3d;
  --text: #173052;
  --muted: #64748b;
  --line: #d9e6f2;
  --surface: #ffffff;
  --shadow-sm: 0 12px 28px rgba(6, 27, 61, 0.09);
  --shadow-md: 0 18px 48px rgba(6, 27, 61, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 86px 0;
}

section[id] {
  scroll-margin-top: 108px;
}

.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: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 230, 242, 0.8);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(6, 27, 61, 0.08);
}

.nav-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 13px 24px rgba(215, 25, 32, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 16px 30px rgba(215, 25, 32, 0.3);
}

.btn-secondary {
  color: var(--blue);
  background: #fff;
  border-color: var(--blue);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: #fff;
  background: var(--blue);
}

.btn-light {
  color: var(--blue-dark);
  background: #fff;
  border-color: #fff;
}

.btn-light:hover,
.btn-light:focus-visible {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
  place-items: center;
  padding: 10px;
}

.menu-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue-dark);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-icon path {
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .line-top {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .line-middle {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .line-bottom {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 47%, rgba(234, 246, 255, 0.85) 100%),
    radial-gradient(circle at 48% 82%, rgba(248, 184, 31, 0.24), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff 68%, var(--blue-soft) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 92px;
  background: var(--blue-soft);
  clip-path: polygon(0 35%, 16% 58%, 34% 39%, 53% 62%, 74% 33%, 100% 51%, 100% 100%, 0 100%);
  z-index: 0;
}

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

.hero-copy h1 {
  max-width: 690px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.25rem, 7.2vw, 6.8rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: inline-block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.hero-copy p {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-proof svg {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof div:nth-child(2) svg {
  stroke: var(--red);
}

.hero-proof div:nth-child(3) svg {
  stroke: var(--yellow);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.paint-splash {
  position: absolute;
  border-radius: 44% 56% 58% 42%;
  filter: saturate(1.08);
}

.paint-blue {
  top: 56px;
  right: 0;
  width: 360px;
  height: 214px;
  background: var(--blue);
  transform: rotate(-10deg);
}

.paint-yellow {
  top: 160px;
  right: 18px;
  width: 305px;
  height: 210px;
  background: var(--yellow);
  transform: rotate(11deg);
}

.paint-red {
  right: 60px;
  bottom: 56px;
  width: 280px;
  height: 124px;
  background: var(--red);
  transform: rotate(-4deg);
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 8px solid #fff;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.hero-photo-main {
  top: 70px;
  right: 56px;
  width: min(92%, 440px);
  height: 286px;
  border-radius: 38px;
}

.hero-photo-small {
  width: 250px;
  height: 206px;
  border-radius: 32px;
}

.left-card {
  left: 14px;
  bottom: 90px;
}

.right-card {
  right: 18px;
  bottom: 70px;
}

.photo-scene,
.card-media,
.campaign-media,
.profile-media {
  position: relative;
  overflow: hidden;
}

.photo-scene {
  width: 100%;
  height: 100%;
}

.counter-scene {
  background: url('assets/hero_counter.png') no-repeat center center;
  background-size: cover;
}

.service-scene {
  background: url('assets/hero_service.png') no-repeat center center;
  background-size: cover;
}

.help-scene {
  background: url('assets/hero_help.png') no-repeat center center;
  background-size: cover;
}

.photo-scene::after,
.card-media::after,
.campaign-media::after,
.profile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.32) 45%, transparent 56%),
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.28), transparent 22%);
  opacity: 0.75;
}

.photo-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: rgba(6, 27, 61, 0.82);
  font-size: 0.76rem;
  font-weight: 850;
}

.heart-medallion {
  position: absolute;
  right: 208px;
  bottom: 205px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 999px;
  color: var(--red);
  background: var(--yellow-soft);
  box-shadow: 0 18px 36px rgba(6, 27, 61, 0.16);
}

.heart-medallion svg {
  width: 55px;
  height: 55px;
  fill: currentColor;
}

.impact {
  position: relative;
  z-index: 2;
  padding: 34px 0 54px;
  background: var(--blue-soft);
}

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

.stat {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 18px 24px;
  text-align: center;
  border-right: 1px solid rgba(22, 100, 200, 0.16);
}

.stat:last-child {
  border-right: 0;
}

.stat-icon,
.step-icon,
.plan-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 999px;
}

.stat-icon {
  color: #fff;
  margin-bottom: 8px;
}

.stat-icon svg,
.step-icon svg,
.plan-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-blue {
  background: var(--blue);
}

.stat-red {
  background: var(--red);
}

.stat-yellow {
  color: #fff;
  background: var(--yellow);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 950;
}

.stat span:last-child {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 850;
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 52px;
  height: 4px;
  border-radius: 99px;
  background: var(--red);
  transform: translateX(-50%);
}

.how {
  background: #fff;
}

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

.step {
  position: relative;
  padding: 10px;
  text-align: center;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 62px;
  right: -30px;
  width: 56px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(22, 100, 200, 0.35) 0 8px, transparent 8px 14px);
}

.step-number {
  position: absolute;
  top: 0;
  left: 12%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
}

.step-icon {
  color: var(--blue);
  background: var(--blue-soft);
  margin: 0 auto 18px;
}

.step-icon.yellow-icon {
  color: var(--yellow);
  background: var(--yellow-soft);
}

.step-icon.red-icon {
  color: var(--red);
  background: #ffe9ea;
}

.step h3 {
  max-width: 210px;
  min-height: 58px;
  margin: 0 auto 10px;
  color: var(--navy);
  font-size: 1.27rem;
  line-height: 1.12;
  font-weight: 950;
}

.step p {
  max-width: 230px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.93rem;
}

.businesses {
  padding-top: 52px;
  background: #fff;
}

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

.business-card,
.campaign-card,
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.business-card:hover,
.campaign-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 100, 200, 0.34);
  box-shadow: var(--shadow-md);
}

.card-media {
  height: 156px;
}

.media-divas {
  background: url('assets/biz_divas.png') no-repeat center center;
  background-size: cover;
}

.media-junkd {
  background: url('assets/biz_junkd.png') no-repeat center center;
  background-size: cover;
}

.media-social {
  background: url('assets/biz_social.png') no-repeat center center;
  background-size: cover;
}

.media-booking {
  background: url('assets/biz_booking.png') no-repeat center center;
  background-size: cover;
}

.media-roadside {
  background: url('assets/biz_roadside.png') no-repeat center center;
  background-size: cover;
}

.media-notary {
  background: url('assets/biz_notary.png') no-repeat center center;
  background-size: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding: 18px;
}

.business-card h3,
.campaign-card h3,
.price-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.13rem;
  line-height: 1.16;
  font-weight: 950;
}

.category {
  min-height: 38px;
  margin: 7px 0 10px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.23;
}

.business-card p:not(.category) {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
}

.price-row {
  display: grid;
  gap: 1px;
  margin-top: auto;
  padding-top: 18px;
}

.price-row span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.price-row strong {
  color: var(--red);
  font-size: 1.36rem;
  line-height: 1;
  font-weight: 950;
}

.btn-card {
  min-height: 39px;
  width: 100%;
  margin-top: 14px;
  padding: 0 10px;
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  border-radius: 8px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.btn-card:hover,
.btn-card:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.profile-link:hover,
.profile-link:focus-visible {
  color: var(--red);
}

.campaigns {
  background: #fff;
}

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

.campaign-media {
  height: 190px;
}

.campaign-fathers {
  background: url('assets/campaign_fathers.png') no-repeat center center;
  background-size: cover;
}

.campaign-grad {
  background: url('assets/campaign_grad.png') no-repeat center center;
  background-size: cover;
}

.campaign-boost {
  background: url('assets/campaign_boost.png') no-repeat center center;
  background-size: cover;
}

.campaign-family {
  background: url('assets/campaign_family.png') no-repeat center center;
  background-size: cover;
}

.campaign-body {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 22px;
  text-align: center;
}

.campaign-body p {
  margin: 10px 0 22px;
  color: var(--text);
  font-size: 0.95rem;
}

.campaign-progress {
  display: grid;
  gap: 8px;
  margin: auto 0 18px;
  text-align: left;
}

.campaign-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.campaign-progress-top strong {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 950;
}

.progress-track {
  overflow: hidden;
  height: 10px;
  background: var(--blue-soft);
  border: 1px solid rgba(22, 100, 200, 0.12);
  border-radius: 999px;
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--yellow));
  border-radius: inherit;
  transition: width 520ms ease;
}

.progress-goal {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.campaign-body .btn {
  width: min(100%, 176px);
  margin: auto auto 0;
  min-height: 43px;
  background: #fff;
}

.btn-outline-red {
  color: var(--red);
  border-color: var(--red);
}

.btn-outline-red:hover,
.btn-outline-red:focus-visible {
  color: #fff;
  background: var(--red);
}

.btn-outline-blue {
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-blue:hover,
.btn-outline-blue:focus-visible {
  color: #fff;
  background: var(--blue);
}

.btn-outline-yellow {
  color: #7a5300;
  border-color: var(--yellow);
}

.btn-outline-yellow:hover,
.btn-outline-yellow:focus-visible {
  color: var(--navy);
  background: var(--yellow);
}

.pricing {
  background: linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%);
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.featured-plan {
  border: 2px solid var(--red);
}

.plan-icon {
  margin-bottom: 20px;
  color: #fff;
}

.blue-plan {
  background: var(--blue);
}

.red-plan {
  background: var(--red);
}

.yellow-plan {
  background: var(--yellow);
}

.plan-price {
  margin: 16px 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
  font-weight: 950;
}

.plan-price span {
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.96rem;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.btn-plan-blue {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.btn-plan-blue:hover,
.btn-plan-blue:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-plan-yellow {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.btn-plan-yellow:hover,
.btn-plan-yellow:focus-visible {
  background: #e5a900;
  border-color: #e5a900;
}

.mvp {
  background:
    linear-gradient(180deg, var(--blue-soft) 0%, #fff 58%),
    radial-gradient(circle at 12% 15%, rgba(248, 184, 31, 0.16), transparent 28%);
}

.section-heading p {
  max-width: 710px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.mvp-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.mvp-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.mvp-panel h3,
.board-header h3,
.modal-heading h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 950;
  letter-spacing: 0;
}

.mvp-panel h3 {
  font-size: 1.5rem;
  line-height: 1.1;
}

.mvp-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mvp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mini-stat-list {
  display: grid;
  gap: 14px;
}

.mini-stat-list div {
  display: grid;
  gap: 3px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
  border: 1px solid rgba(22, 100, 200, 0.13);
}

.mini-stat-list strong {
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}

.mini-stat-list span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.mvp-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.board-column {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.board-header h3 {
  font-size: 1.12rem;
}

.board-header span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.activity-list {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
}

.activity-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.activity-item strong {
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.25;
}

.activity-item span,
.activity-item small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.activity-item .activity-tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
}

.empty-state {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: var(--blue-soft);
  border: 1px dashed rgba(22, 100, 200, 0.24);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-root.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 19, 39, 0.58);
  backdrop-filter: blur(10px);
}

.modal {
  position: relative;
  z-index: 1;
  display: none;
  width: min(100%, 760px);
  max-height: min(90vh, 820px);
  overflow-y: auto;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(3, 19, 39, 0.32);
}

.modal.is-active {
  display: block;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--blue-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  transform: translateY(-2px);
  background: var(--sky);
}

.modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.modal-heading {
  padding-right: 48px;
  margin-bottom: 24px;
}

.modal-heading span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.04;
}

.modal-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.mvp-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.mvp-form input,
.mvp-form select,
.mvp-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mvp-form input,
.mvp-form select {
  min-height: 48px;
  padding: 0 13px;
}

.mvp-form textarea {
  resize: vertical;
  padding: 13px;
}

.mvp-form input:focus,
.mvp-form select:focus,
.mvp-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 100, 200, 0.12);
}

.full-field {
  grid-column: 1 / -1;
}

.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: var(--blue-soft);
  border: 1px solid rgba(22, 100, 200, 0.16);
  border-radius: var(--radius-sm);
}

.checkout-summary span {
  color: var(--navy);
  font-weight: 900;
}

.checkout-summary strong {
  color: var(--red);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 950;
}

.payment-box {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.payment-box[hidden] {
  display: none;
}

.payment-box-heading {
  display: grid;
  gap: 4px;
}

.payment-box-heading strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}

.payment-box-heading span {
  color: var(--muted);
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  max-width: min(360px, calc(100vw - 44px));
  padding: 15px 18px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-weight: 850;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.final-cta {
  padding: 68px 0;
  background: var(--blue-soft);
}

.final-cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 42px 48px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 27, 61, 0.95), rgba(22, 100, 200, 0.92)),
    radial-gradient(circle at 88% 25%, rgba(248, 184, 31, 0.55), transparent 22%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.final-cta-panel::before {
  content: "";
  position: absolute;
  inset: auto -8% -30% 42%;
  height: 180px;
  background: rgba(248, 184, 31, 0.28);
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
}

.final-cta-panel > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  font-weight: 950;
}

.final-cta p {
  max-width: 570px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer {
  color: #fff;
  background: linear-gradient(180deg, #061b3d, #031327);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.75fr 0.85fr 1.1fr;
  gap: 46px;
  padding: 62px 0 42px;
}

.footer-brand img {
  width: 205px;
  height: auto;
}

.site-footer p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 950;
}

.site-footer a:not(.social-links a) {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  background: var(--red);
  border-color: var(--red);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.profile-page {
  background: linear-gradient(180deg, var(--blue-soft) 0, #fff 360px);
}

.profile-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.profile-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.profile-nav img {
  width: 170px;
  height: auto;
}

.profile-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-hero {
  padding-top: 66px;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: start;
}

.profile-copy {
  display: grid;
  gap: 22px;
}

.profile-kicker {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.profile-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  font-weight: 950;
}

.profile-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
}

.profile-media {
  min-height: 320px;
  border: 9px solid #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.profile-facts div,
.profile-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.profile-facts div {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.profile-facts span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-facts strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}

.profile-panel {
  padding: 26px;
}

.profile-panel h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.12;
  font-weight: 950;
}

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

.profile-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border: 2px solid var(--blue);
  border-radius: 999px;
}

.profile-sidebar {
  display: grid;
  gap: 18px;
}

.profile-offer-price {
  display: grid;
  gap: 3px;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--blue-soft);
  border-radius: var(--radius-sm);
}

.profile-offer-price span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.profile-offer-price strong {
  color: var(--red);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 950;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, var(--blue-soft), #fff 420px),
    radial-gradient(circle at 18% 14%, rgba(248, 184, 31, 0.18), transparent 26%);
}

.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-panel {
  width: min(100%, 430px);
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.admin-login-panel img {
  width: 190px;
  height: auto;
  margin-bottom: 24px;
}

.admin-login-panel h1,
.admin-hero h1,
.admin-table-heading h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 950;
  letter-spacing: 0;
}

.admin-login-panel h1 {
  font-size: 2.1rem;
}

.admin-login-panel p,
.admin-hero p {
  margin: 10px 0 0;
  color: var(--muted);
}

.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.admin-login-form input {
  min-height: 50px;
  padding: 0 14px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.admin-back-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.admin-alert {
  margin-top: 18px;
  padding: 14px 16px;
  color: var(--navy);
  background: var(--yellow-soft);
  border: 1px solid rgba(248, 184, 31, 0.48);
  border-radius: var(--radius-sm);
  font-weight: 850;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px min(40px, 4vw);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.admin-brand img {
  width: 170px;
  height: auto;
}

.admin-nav,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-nav a {
  color: var(--blue);
  font-weight: 900;
}

.admin-shell {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: 48px 0 78px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.admin-hero span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-hero h1 {
  margin-top: 8px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.admin-stats article,
.admin-table-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.admin-stats article {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.admin-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-stats strong {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  font-weight: 950;
}

.admin-table-grid {
  display: grid;
  gap: 24px;
}

.admin-table-shell {
  overflow: hidden;
}

.admin-table-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.admin-table-heading h2 {
  font-size: 1.18rem;
}

.admin-table-heading a {
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 950;
}

.table-scroll {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.data-table th,
.data-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.9rem;
}

.data-table th {
  color: var(--navy);
  background: #f8fbff;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.data-table td {
  color: var(--text);
}

.data-table small {
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .business-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-body {
    min-height: 238px;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 76px;
  }

  .brand {
    width: 152px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    position: fixed;
    left: 20px;
    right: 20px;
    z-index: 31;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav {
    top: 88px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    box-shadow: var(--shadow-md);
  }

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

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

  .header-cta {
    top: 390px;
    width: auto;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .site-nav.is-open,
  .header-cta.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual {
    min-height: 520px;
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-proof {
    max-width: 720px;
  }

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

  .mvp-grid .mvp-panel:nth-child(2) {
    grid-column: 1 / -1;
  }

  .mvp-board {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    display: none;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(22, 100, 200, 0.16);
  }

  .final-cta-panel {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-content: flex-start;
  }

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

  .profile-layout,
  .admin-hero {
    grid-template-columns: 1fr;
  }

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

  .profile-sidebar .profile-panel:first-child {
    grid-column: 1 / -1;
  }

  .admin-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 66px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14.5vw, 4.2rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    flex: 1 1 210px;
  }

  .hero-proof {
    display: none;
  }

  .hero-visual {
    min-height: 436px;
  }

  .paint-blue {
    top: 48px;
    right: 8px;
    width: 260px;
    height: 166px;
  }

  .paint-yellow {
    top: 142px;
    width: 230px;
    height: 150px;
  }

  .paint-red {
    right: 42px;
    bottom: 58px;
    width: 210px;
  }

  .hero-photo-main {
    right: 20px;
    width: calc(100% - 40px);
    height: 236px;
    border-radius: 28px;
  }

  .hero-photo-small {
    width: 46%;
    min-width: 150px;
    height: 154px;
    border-width: 6px;
    border-radius: 24px;
  }

  .left-card {
    left: 2px;
    bottom: 62px;
  }

  .right-card {
    right: 0;
    bottom: 42px;
  }

  .heart-medallion {
    right: calc(50% - 51px);
    bottom: 170px;
    width: 76px;
    height: 76px;
    border-width: 6px;
  }

  .heart-medallion svg {
    width: 40px;
    height: 40px;
  }

  .photo-caption {
    display: none;
  }

  .impact {
    padding-top: 24px;
  }

  .business-grid,
  .campaign-grid,
  .pricing-grid,
  .mvp-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mvp-grid .mvp-panel:nth-child(2) {
    grid-column: auto;
  }

  .mvp-panel,
  .modal {
    padding: 24px;
  }

  .mvp-form {
    grid-template-columns: 1fr;
  }

  .modal-root {
    align-items: flex-end;
    padding: 12px;
  }

  .modal {
    width: 100%;
    max-height: 88vh;
    border-radius: var(--radius-lg) var(--radius-lg) 14px 14px;
  }

  .card-media,
  .campaign-media {
    height: 180px;
  }

  .card-body {
    min-height: auto;
  }

  .campaign-body {
    min-height: auto;
  }

  .price-card {
    padding: 26px;
  }

  .final-cta-panel {
    padding: 34px 24px;
  }

  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .profile-nav,
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-nav-actions,
  .profile-facts,
  .profile-sidebar,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .profile-nav-actions {
    width: 100%;
  }

  .profile-nav-actions .btn,
  .admin-actions .btn {
    width: 100%;
  }

  .profile-media {
    min-height: 240px;
  }

  .admin-shell {
    width: min(100% - 28px, 1240px);
  }
}

@media (max-width: 520px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(22, 100, 200, 0.16);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .site-nav,
  .header-cta {
    left: 14px;
    right: 14px;
  }

  .brand {
    width: 138px;
  }

  .profile-nav-actions,
  .admin-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .header-cta {
    width: auto;
  }
}

.admin-management-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 26px 0;
}

.admin-management-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.admin-management-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 950;
}

.admin-management-list {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.admin-management-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.admin-management-card .admin-management-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.admin-management-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-management-form input,
.admin-management-form select,
.admin-management-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: #fff;
  outline: none;
}

.admin-management-form input,
.admin-management-form select {
  min-height: 42px;
  padding: 0 11px;
}

.admin-management-form textarea {
  resize: vertical;
  padding: 11px;
}

.admin-management-form input:focus,
.admin-management-form select:focus,
.admin-management-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 100, 200, 0.12);
}

.admin-full,
.admin-checks {
  grid-column: 1 / -1;
}

.admin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.admin-checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-checks input {
  width: auto;
  min-height: auto;
}

@media (max-width: 980px) {
  .admin-management-grid,
  .admin-management-form {
    grid-template-columns: 1fr;
  }
}

