:root {
  --c: #12b5a0;
  --c-deep: #0a7f72;
  --c-bright: #2ee6c8;
  --c-soft: #e4faf6;
  --c-glow: rgba(18, 181, 160, 0.4);
  --ink: #0c2420;
  --muted: #4a635e;
  --paper: #f2fbf8;
  --white: #ffffff;
  --line: rgba(16, 35, 31, 0.08);
  --danger: #c0392b;
  --ok: #12b5a0;
  --warn: #c47b16;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(10, 70, 60, 0.18);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", sans-serif;
  --max: 1120px;
  --grad-brand: linear-gradient(135deg, #1ad4b8 0%, #12b5a0 42%, #0a7f72 100%);
  --grad-mesh: radial-gradient(ellipse 80% 60% at 10% 20%, rgba(46, 230, 200, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(18, 181, 160, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 45% at 70% 90%, rgba(10, 127, 114, 0.22), transparent 55%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    var(--grad-mesh),
    linear-gradient(180deg, #f7fffc 0%, var(--paper) 40%, #e8f8f4 100%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--c-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--c);
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(244, 251, 249, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 251, 249, 0.94);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--c);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--c-soft);
  color: var(--ink);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 12px 30px var(--c-glow);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 16px 36px var(--c-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--c-soft);
  color: var(--ink);
  text-decoration: none;
}

.btn-soft {
  background: var(--c-soft);
  color: var(--c-deep);
}

.btn-soft:hover {
  background: #d5f1ec;
  color: var(--c-deep);
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  padding: 2rem 0 3.5rem;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 70% at 15% 85%, rgba(46, 230, 200, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(26, 212, 184, 0.35), transparent 50%),
    linear-gradient(125deg, rgba(6, 40, 36, 0.82) 0%, rgba(10, 127, 114, 0.55) 48%, rgba(18, 181, 160, 0.42) 100%),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1920&q=80")
      center / cover no-repeat;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 55%, rgba(8, 40, 36, 0.25) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(46, 230, 200, 0.28), transparent 55%);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.brand-mark {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: riseIn 0.8s ease both;
}

.brand-mark em {
  font-style: normal;
  color: #9ff3e4;
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.5rem;
  animation: riseIn 0.9s ease 0.08s both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
  animation: riseIn 1s ease 0.14s both;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ff3e4;
  box-shadow: 0 0 0 4px rgba(159, 243, 228, 0.25);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.check-panel {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 28px;
  padding: 1.35rem 1.35rem 1.2rem;
  box-shadow: var(--shadow);
  animation: riseIn 0.85s ease 0.12s both;
}

.check-panel h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.check-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(16, 35, 31, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--c);
  box-shadow: 0 0 0 4px var(--c-glow);
}

.field-hint {
  font-size: 0.78rem;
  color: var(--muted);
}

.field-error {
  color: var(--danger);
  font-size: 0.82rem;
  min-height: 1.1em;
}

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.4rem 0 1rem;
}

.consent input {
  margin-top: 0.2rem;
  accent-color: var(--c);
}

.price-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.price-chip strong {
  color: var(--c-deep);
  font-size: 1.05rem;
}

/* ——— Flowing sections ——— */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-tight {
  padding: 3rem 0;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
}

.section-lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(46, 230, 200, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 30%, rgba(26, 212, 184, 0.25), transparent 50%),
    linear-gradient(105deg, rgba(6, 50, 45, 0.9), rgba(18, 181, 160, 0.72)),
    url("https://images.unsplash.com/photo-1485291571150-772bfc365fa0?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.band .section-title,
.band .section-lead {
  color: var(--white);
}

.band .section-lead {
  color: rgba(255, 255, 255, 0.88);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 0.25rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--display);
  font-weight: 700;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.includes {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.includes-visual {
  min-height: 360px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 20%, rgba(46, 230, 200, 0.4), transparent 45%),
    linear-gradient(160deg, rgba(18, 181, 160, 0.35), rgba(6, 40, 36, 0.6)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1400&q=80")
      center / cover no-repeat;
  box-shadow: var(--shadow);
  animation: softFloat 7s ease-in-out infinite alternate;
}

@keyframes softFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 1.02rem;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, #fff 0 28%, transparent 29%),
    linear-gradient(135deg, var(--c), var(--c-deep));
  box-shadow: 0 6px 16px var(--c-glow);
}

/* ——— Pricing (no hard cards) ——— */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #f0fffb 45%, #d9f7f0 100%);
  box-shadow: var(--shadow);
}

.plan {
  padding: 1.6rem 1.4rem 1.5rem;
  position: relative;
}

.plan + .plan {
  border-left: 1px solid rgba(15, 157, 138, 0.15);
}

.plan.is-popular {
  background: linear-gradient(180deg, rgba(46, 230, 200, 0.22), rgba(255, 255, 255, 0) 75%);
}

.plan-badge {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.plan h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
}

.plan-price {
  margin: 0.55rem 0 0.25rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-deep);
}

.plan-price small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.plan-time {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.plan ul {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.94rem;
}

.plan li::before {
  content: "– ";
  color: var(--c);
  font-weight: 700;
}

/* ——— FAQ ——— */
.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--c);
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

/* ——— Contacts strip ——— */
.contacts-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0 0;
}

.contact-lines {
  display: grid;
  gap: 0.55rem;
  font-size: 1.05rem;
}

.contact-lines a {
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

.contact-lines a:hover {
  color: var(--c-deep);
}

.legal-note {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 36rem;
}

/* ——— Footer ——— */
.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 2rem;
  background:
    linear-gradient(180deg, transparent, rgba(15, 157, 138, 0.08)),
    url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1400&q=70")
      center / cover no-repeat;
  position: relative;
  color: var(--white);
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 40, 35, 0.88), rgba(8, 40, 35, 0.94));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer a {
  color: #b7f0e5;
}

.site-footer h4 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: 0.95rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ——— Cookie ——— */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 560px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(16, 35, 31, 0.96);
  color: #fff;
  box-shadow: var(--shadow);
  display: none;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-bar.is-visible {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-bar a {
  color: #9ff3e4;
}

/* ——— Toast ——— */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 90;
  max-width: 360px;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Cabinet / Auth pages ——— */
.page-shell {
  min-height: calc(100vh - 72px);
  padding: 2rem 0 3rem;
}

.auth-wrap {
  width: min(100% - 2rem, 460px);
  margin: 1rem auto;
  padding: 1.6rem;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.auth-wrap h1 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.5rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 1rem 0 1.2rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: var(--c-soft);
}

.auth-tabs button {
  border: 0;
  border-radius: 999px;
  min-height: 42px;
  background: transparent;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.auth-tabs button.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(15, 157, 138, 0.15);
}

.cabinet-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.cabinet-side {
  position: sticky;
  top: 92px;
  padding: 1rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 70, 60, 0.08);
}

.cabinet-side a,
.cabinet-side button.linkish {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.85rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.cabinet-side a.is-active,
.cabinet-side a:hover,
.cabinet-side button.linkish:hover {
  background: var(--c-soft);
  color: var(--ink);
}

.cabinet-main {
  padding: 1.4rem 1.5rem 1.6rem;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 70, 60, 0.08);
  min-height: 420px;
}

.cabinet-main h1 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.45rem;
}

.muted {
  color: var(--muted);
}

.order-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.order-item {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(90deg, var(--c-soft), #fff 40%);
  border: 1px solid rgba(15, 157, 138, 0.12);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.order-item:hover {
  transform: translateY(-2px);
}

.order-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.order-top strong {
  font-family: var(--display);
  font-size: 0.95rem;
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-new {
  background: #e8f1ff;
  color: #2557a7;
}

.status-processing {
  background: #fff3df;
  color: var(--warn);
}

.status-done {
  background: #dff7f1;
  color: var(--c-deep);
}

.status-cancelled {
  background: #fde8e6;
  color: var(--danger);
}

.report-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--paper);
}

.report-box h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.05rem;
}

.report-section {
  margin-top: 0.9rem;
}

.report-section h4 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.report-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.report-section td {
  padding: 0.4rem 0.35rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.report-section td:first-child {
  width: 42%;
  color: var(--muted);
  font-weight: 600;
}

.timeline {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.timeline li {
  font-size: 0.9rem;
  color: var(--muted);
}

.timeline time {
  display: block;
  font-size: 0.78rem;
  color: #7a908b;
}

.empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
}

.legal-page {
  width: min(100% - 2rem, 820px);
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.legal-page h1 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 1.6rem 0 0.55rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.admin-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .hero-grid,
  .includes,
  .contacts-strip,
  .footer-grid,
  .cabinet-layout {
    grid-template-columns: 1fr;
  }

  .pricing {
    grid-template-columns: 1fr;
  }

  .plan + .plan {
    border-left: 0;
    border-top: 1px solid rgba(15, 157, 138, 0.15);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .cabinet-side {
    position: static;
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
  }

  .cabinet-side a,
  .cabinet-side button.linkish {
    white-space: nowrap;
    width: auto;
  }
}

@media (max-width: 780px) {
  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .burger {
    display: inline-block;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 72px;
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.is-open .nav-actions .btn-ghost {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 1.5rem;
  }

  .brand-mark {
    font-size: 2.2rem;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
