:root {
  --chambray: #79a3c3;
  --espresso: #3a2119;
  --glacier: #d2e2ec;
  --bisque: #ebcdb7;
  --clay: #957662;
  --bg: #f7eee6;
  --bg-soft: #d2e2ec;
  --text: #3a2119;
  --heading: #3a2119;
  --muted: #7a5f4e;
  --accent: #79a3c3;
  --accent-dark: #3a2119;
  --accent-soft: #d2e2ec;
  --card: #fff8f1;
  --line: rgba(58, 33, 25, 0.14);
  --border-glow-soft: rgba(121, 163, 195, 0.22);
  --border-glow: rgba(121, 163, 195, 0.74);
  --border-glow-light: rgba(235, 205, 183, 0.96);
  --border-glow-warm: rgba(149, 118, 98, 0.52);
  --shadow: 0 24px 70px rgba(58, 33, 25, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(121, 163, 195, 0.36), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(235, 205, 183, 0.72), transparent 24rem),
    linear-gradient(180deg, #f7eee6 0%, #f4e3d5 42%, #d2e2ec 100%);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}

main {
  padding-top: 108px;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2 {
  color: var(--heading);
  font-family: "Raleway", "Manrope", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(34px, 5.2vw, 64px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.6vw, 44px);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

ul {
  margin: 0;
  padding: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.86);
  box-shadow: 0 12px 40px rgba(58, 33, 25, 0.09);
  backdrop-filter: blur(18px);
}

.logo {
  display: grid;
  gap: 2px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.header-phone {
  transition: color 0.2s ease;
}

.nav a:hover,
.header-phone:hover {
  color: var(--accent-dark);
}

.header-phone {
  color: var(--accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  min-height: 44px;
  padding: 10px 18px;
  color: #fff8f1;
  background: var(--espresso);
  box-shadow: 0 10px 24px rgba(58, 33, 25, 0.18);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--clay);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100svh - 108px);
  padding-top: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 21px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 250, 244, 0.18) 43%,
    rgba(255, 250, 244, 0.72) 50%,
    rgba(255, 250, 244, 0.18) 57%,
    transparent 64%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: button-shine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.97);
}

.button-primary {
  color: #fff8f1;
  background: var(--espresso);
  box-shadow: 0 16px 34px rgba(58, 33, 25, 0.24);
}

.button-primary:hover {
  background: var(--clay);
  box-shadow: 0 18px 38px rgba(58, 33, 25, 0.28);
}

.button-secondary {
  color: var(--accent-dark);
  border-color: rgba(121, 163, 195, 0.38);
  background: rgba(210, 226, 236, 0.56);
}

.button-secondary::before {
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 36%,
    rgba(121, 163, 195, 0.04) 43%,
    rgba(121, 163, 195, 0.34) 50%,
    rgba(121, 163, 195, 0.04) 57%,
    transparent 64%,
    transparent 100%
  );
}

.button-secondary:hover {
  border-color: rgba(58, 33, 25, 0.26);
  box-shadow: 0 14px 30px rgba(58, 33, 25, 0.1);
}

@keyframes button-shine {
  0% {
    transform: translateX(-120%);
  }

  46%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes border-gradient-rotate {
  from {
    --gradient-angle: 0deg;
  }

  to {
    --gradient-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button::before {
    animation: none;
  }
}

.note {
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
}

.hero-card,
.about-card,
.education-card,
.price-card,
.final-card,
.soft-panel {
  --block-bg: rgba(255, 248, 241, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 241, 0.82);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(121, 163, 195, 0.22), transparent 17rem),
    linear-gradient(160deg, rgba(235, 205, 183, 0.62), transparent 52%);
  pointer-events: none;
}

.hero-card > * {
  position: relative;
}

.portrait {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  margin-bottom: 28px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--glacier);
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.card-label {
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-weight: 700;
}

.card-title {
  margin-bottom: 22px;
  color: var(--muted);
}

.stats {
  display: grid;
  gap: 12px;
}

.stats div,
.price-info div {
  --block-bg: rgba(210, 226, 236, 0.38);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(210, 226, 236, 0.38);
}

.stats strong {
  color: var(--accent-dark);
  font-size: 28px;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card {
  --block-bg: rgba(255, 248, 241, 0.84);
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 241, 0.84);
  color: var(--espresso);
  font-weight: 600;
}

.card:nth-child(3n + 1) {
  --block-bg: rgba(210, 226, 236, 0.52);
  background: rgba(210, 226, 236, 0.52);
}

.card:nth-child(3n + 2) {
  --block-bg: rgba(235, 205, 183, 0.42);
  background: rgba(235, 205, 183, 0.42);
}

.muted {
  width: 100%;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(210, 226, 236, 0.72), rgba(235, 205, 183, 0.42));
}

.split,
.about-layout,
.price-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.text-block p,
.about-card p,
.price-card p,
.final-card p {
  color: var(--muted);
  font-size: 17px;
}

.check-list,
.result-list,
.education-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li,
.result-list li,
.education-card li {
  position: relative;
  padding-left: 28px;
  color: var(--espresso);
}

.check-list li::before,
.result-list li::before,
.education-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--chambray);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  --block-bg: rgba(255, 248, 241, 0.78);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 241, 0.78);
}

.step span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--accent-dark);
  font-weight: 800;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.soft-panel {
  margin-top: 16px;
  padding: 28px;
  color: var(--muted);
}

.about-card,
.education-card {
  padding: 34px;
}

.education-card {
  --block-bg: rgba(235, 205, 183, 0.4);
  background: rgba(235, 205, 183, 0.4);
}

.method-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.methods-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.methods-photo {
  --block-bg: rgba(58, 33, 25, 0.92);
  min-height: 100%;
  margin: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(var(--block-bg), var(--block-bg)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      var(--border-glow-soft),
      var(--border-glow),
      var(--border-glow-light),
      var(--border-glow-warm),
      var(--border-glow-soft)
    ) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow);
  animation: border-gradient-rotate 8s linear infinite;
}

.methods-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.method-grid article,
.reviews-grid blockquote {
  --block-bg: rgba(255, 248, 241, 0.78);
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 241, 0.78);
}

.method-grid p,
.reviews-grid blockquote {
  color: var(--muted);
}

.result-list {
  --block-bg: rgba(210, 226, 236, 0.48);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(210, 226, 236, 0.48);
}

.accordion-list {
  display: grid;
  gap: 12px;
}

details {
  --block-bg: rgba(255, 248, 241, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 241, 0.84);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: -6px 24px 24px;
  color: var(--muted);
}

.hero-card,
.about-card,
.education-card,
.price-card,
.final-card,
.soft-panel,
.stats div,
.price-info div,
.card,
.step,
.method-grid article,
.reviews-grid blockquote,
.result-list,
details,
.methods-photo {
  border-color: transparent;
  background:
    linear-gradient(var(--block-bg), var(--block-bg)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      var(--border-glow-soft) 0deg,
      var(--border-glow) 34deg,
      var(--border-glow-light) 52deg,
      var(--border-glow-warm) 72deg,
      var(--border-glow-soft) 112deg,
      rgba(58, 33, 25, 0.16) 180deg,
      var(--border-glow-soft) 238deg,
      var(--border-glow) 292deg,
      var(--border-glow-light) 312deg,
      var(--border-glow-warm) 330deg,
      var(--border-glow-soft) 360deg
    ) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: border-gradient-rotate 8s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-card,
  .about-card,
  .education-card,
  .price-card,
  .final-card,
  .soft-panel,
  .stats div,
  .price-info div,
  .card,
  .step,
  .method-grid article,
  .reviews-grid blockquote,
  .result-list,
  details,
  .methods-photo {
    animation: none;
  }
}

.price-section {
  padding-top: 86px;
}

.price-card {
  padding: 38px;
  align-items: center;
}

.price-info {
  display: grid;
  gap: 12px;
}

.price-info div {
  display: grid;
  justify-content: stretch;
  gap: 6px;
}

.price-info strong {
  display: block;
  color: var(--accent-dark);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.price-list {
  display: grid;
  gap: 4px;
}

.price-info div > span {
  color: var(--muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.25em;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.price-value {
  white-space: nowrap;
}

.final-section {
  padding-top: 80px;
}

.final-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
}

.final-card .eyebrow {
  justify-content: center;
}

.final-card .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.final-card h2,
.final-card p {
  margin-right: auto;
  margin-left: auto;
}

.final-card p {
  max-width: 650px;
}

.intro-consultation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 8px;
  margin-bottom: 0;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--espresso);
  background: rgba(210, 226, 236, 0.62);
  font-weight: 800;
}

.contact-actions {
  justify-content: center;
  margin: 14px 0 30px;
}

.contact-call-text {
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
  text-align: left;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lead-form label:nth-child(3),
.lead-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(138, 95, 71, 0.55);
  box-shadow: 0 0 0 4px rgba(138, 95, 71, 0.1);
}

textarea {
  resize: vertical;
}

.lead-form button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 0;
  text-align: center;
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--accent-dark);
  font-weight: 700;
}

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(58, 33, 25, 0.18);
  border-radius: 999px;
  background: rgba(210, 226, 236, 0.56);
}

.footer-admin-link:hover {
  border-color: rgba(58, 33, 25, 0.3);
  background: rgba(210, 226, 236, 0.78);
}

.policy-page {
  min-height: 100vh;
}

.policy-page main {
  padding-top: 0;
}

.policy-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.policy-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-weight: 800;
}

.policy-card {
  --block-bg: rgba(255, 248, 241, 0.84);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(var(--block-bg), var(--block-bg)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      var(--border-glow-soft),
      var(--border-glow),
      var(--border-glow-light),
      var(--border-glow-soft)
    ) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow);
  animation: border-gradient-rotate 8s linear infinite;
}

.policy-card h1 {
  max-width: 100%;
}

.policy-card h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-card p {
  color: var(--muted);
  font-size: 17px;
}

.policy-updated {
  margin-top: 34px;
  font-weight: 800;
}

.admin-page {
  min-height: 100vh;
}

.admin-page main {
  padding-top: 0;
}

.admin-header,
.admin-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.admin-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 70px 0 34px;
}

.admin-header h1 {
  max-width: 720px;
  margin-bottom: 18px;
}

.admin-header p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-counter {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255, 250, 244, 0.72);
  font-weight: 700;
  white-space: nowrap;
}

.admin-main {
  display: grid;
  gap: 18px;
  padding-bottom: 70px;
}

.admin-toolbar,
.admin-note,
.admin-lead-card,
.admin-empty,
.admin-login {
  --block-bg: rgba(255, 250, 244, 0.78);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background:
    linear-gradient(var(--block-bg), var(--block-bg)) padding-box,
    conic-gradient(
      from var(--gradient-angle),
      var(--border-glow-soft),
      var(--border-glow),
      var(--border-glow-light),
      var(--border-glow-soft)
    ) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: border-gradient-rotate 12s linear infinite;
  box-shadow: 0 18px 44px rgba(71, 48, 32, 0.08);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.admin-toolbar h2,
.admin-note h2,
.admin-login h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.8vw, 34px);
}

.admin-toolbar p,
.admin-note p,
.admin-empty,
.admin-login p {
  margin-bottom: 0;
  color: var(--muted);
}

.admin-login,
.admin-empty,
.admin-note {
  padding: 24px;
}

.admin-login {
  max-width: 560px;
}

.admin-login-form,
.admin-lead-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-error {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(139, 47, 47, 0.22);
  border-radius: var(--radius-sm);
  color: #8b2f2f;
  background: rgba(139, 47, 47, 0.08);
  font-weight: 800;
}

.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.password-field input {
  min-width: 0;
}

.password-toggle {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  color: var(--accent-dark);
  background: rgba(210, 226, 236, 0.56);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.password-toggle:hover {
  border-color: rgba(58, 33, 25, 0.26);
}

.admin-leads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.admin-lead-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.admin-lead-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.admin-lead-date {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-lead-card h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.admin-lead-contact a {
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 800;
}

.admin-lead-message {
  margin: 0;
  color: var(--muted);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.status-new {
  color: #6f4935;
  background: #ead7c6;
}

.status-contacted {
  color: #5f4a1b;
  background: #f0dfb5;
}

.status-scheduled {
  color: #355b43;
  background: #d7e8d8;
}

.status-completed {
  color: #4e433a;
  background: #e5ded5;
}

.admin-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.admin-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  outline: none;
}

.admin-delete {
  justify-self: start;
  border: 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.admin-delete:hover {
  color: var(--accent-dark);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .methods-layout,
  .hero,
  .split,
  .about-layout,
  .price-card {
    grid-template-columns: 1fr;
  }

  .methods-photo img {
    max-height: 560px;
  }

  .hero {
    min-height: auto;
  }

  .cards-grid,
  .steps,
  .admin-leads {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 104px;
  }

  main {
    padding-top: 96px;
  }

  .site-header {
    width: min(100% - 24px, 1180px);
    top: 12px;
    gap: 12px;
    padding: 12px;
  }

  .logo span {
    font-size: 14px;
  }

  .logo small {
    max-width: 150px;
    font-size: 8px;
  }

  .header-phone {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 14px;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 64px 0;
  }

  .muted {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero {
    padding-top: 24px;
    gap: 28px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions,
  .lead-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .about-card,
  .education-card,
  .price-card,
  .final-card {
    padding: 24px;
    border-radius: 24px;
  }

  .price-section {
    padding-top: 56px;
  }

  .price-card {
    gap: 24px;
  }

  .price-info {
    gap: 10px;
  }

  .price-info div {
    padding: 18px;
    border-radius: 20px;
  }

  .price-info div > span {
    font-size: 18px;
  }

  .price-info strong {
    font-size: 19px;
    line-height: 1.38;
  }

  .price-list {
    gap: 8px;
  }

  .cards-grid,
  .steps,
  .method-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .methods-photo img {
    min-height: 380px;
  }

  .card {
    min-height: auto;
  }

  .lead-form label,
  .lead-form label:nth-child(3),
  .lead-form button,
  .form-note {
    grid-column: auto;
  }

  .footer {
    display: grid;
    width: min(100% - 24px, 1180px);
  }

  .admin-header,
  .admin-main {
    width: min(100% - 24px, 1180px);
  }

  .admin-header,
  .admin-toolbar,
  .admin-header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-header {
    padding-top: 42px;
  }

  .admin-leads {
    grid-template-columns: 1fr;
  }

  .admin-lead-top {
    display: grid;
  }
}
