/* =====================
   ANNA v3 — MD-inspired
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --barbie:      #FF76B7;
  --lavender:    #E2C6FE;
  --peach:       #FFA981;
  --grape:       #9E1F63;
  --pastel:      #FFD3F7;

  /* цветовая политика (п. 1–4 на макете) */
  --c-main-bg:   #FFF8FD;   /* 1 — основной фон */
  --c-accent:    #FF76B7;   /* 2 — акцентные */
  --c-accent-2:  #FFA981;   /* 2 — акцентные */
  --c-insert:    #E2C6FE;   /* 3 — вставки */
  --c-extra:     #FFFFFF;   /* 4 — доп. белый */

  --bg:          #FFF8FD;
  --white:       #FFFFFF;
  --heading:     #9E1F63;
  --text:        #5C2D4A;
  --muted:       #8A5A75;

  --font-h:      'Cormorant Garamond', Georgia, serif;
  --font-b:      'Manrope', system-ui, sans-serif;

  --nav-h:       68px;
  --wrap:        1180px;
  --gap:         100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--c-main-bg); /* п.1 */
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

/* typography */
.heading {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.heading em { font-style: italic; color: var(--heading); }
.heading--xl { font-size: clamp(2.8rem, 7vw, 5.5rem); }
.heading--light { color: var(--white); }
.heading--light em { color: var(--white); }

.slash {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--heading);
  margin-bottom: 14px;
}
.slash--light { color: var(--heading); }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--peach);
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  margin-bottom: 28px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--heading); color: var(--white); border-color: var(--heading); }
.btn--dark:hover { background: var(--barbie); border-color: var(--barbie); }
.btn--outline { background: transparent; color: var(--heading); border-color: var(--heading); }
.btn--outline:hover { background: var(--lavender); }
.btn--light { background: var(--white); color: var(--heading); border-color: var(--white); }
.btn--light:hover { background: var(--pastel); }
.btn--full { width: 100%; }

/* header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(255, 248, 253, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(158, 31, 99, 0.08);
}
.header__logo {
  font-family: var(--font-b);
  font-size: clamp(1rem, 2.6vw, 1.16rem);
  font-weight: 800;
  text-transform: lowercase;
  color: var(--heading);
  letter-spacing: -0.03em;
  min-width: 0;
}
.header__logo span { color: inherit; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--heading); }
.header__cta {
  background: var(--heading) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.header__cta:hover { background: var(--barbie) !important; }

.header__burger {
  display: none;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  position: relative;
  z-index: 2;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
}

.mobile-panel {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 199;
  border-bottom: 3px solid var(--barbie);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.mobile-panel.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-panel__link {
  font-family: var(--font-b);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--heading);
}

/* hero */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  background: var(--c-main-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 56px 28px 64px;
  width: 100%;
}
.hero__title {
  font-family: var(--font-b);
  color: var(--heading);
  margin-bottom: 24px;
}
.hero__line {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}
.hero__line--name {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 0.92;
  margin-top: 0;
  text-transform: none;
}
.hero__line--name em { font-style: italic; color: var(--heading); }

.hero__text {
  max-width: 460px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__frame {
  width: min(100%, 380px);
  aspect-ratio: 3/4;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid var(--heading);
  box-shadow: 16px 16px 0 var(--barbie);
  transform: rotate(2deg);
  background: var(--lavender);
}
.hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__badge {
  position: absolute;
  right: 0;
  bottom: -10px;
  background: var(--peach);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  transform: rotate(-6deg);
}

/* blocks */
.block { padding: var(--gap) 0; }
.block__head { margin-bottom: 48px; }

.block--about { background: var(--c-main-bg); }
.about__body { max-width: 640px; }
.about__lead {
  font-family: var(--font-b);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 18px;
}
.about__text { color: var(--muted); margin-bottom: 28px; font-weight: 500; }
.about__cta {
  margin-top: -12px;
  margin-bottom: 24px;
  font-weight: 500;
  color: var(--muted);
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: var(--peach);
  color: var(--white);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.chip:hover { background: var(--barbie); color: var(--white); transform: translateY(-2px); }

/* works */
.block--works { background: var(--c-main-bg); } /* п.1 */
.works {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.work {
  display: block;
  background: var(--white);
  border: 2px solid var(--heading);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.work:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(158, 31, 99, 0.12);
}
.work--wide { grid-column: span 2; }
.work__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--lavender);
}
.work--wide .work__media { aspect-ratio: 21/9; }
.work__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work:hover .work__media img { transform: scale(1.04); }
.work__info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid rgba(158, 31, 99, 0.1);
}
.work__name {
  font-family: var(--font-b);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--heading);
}
.work__cat { font-size: 0.82rem; font-weight: 600; color: var(--muted); }

/* services — folder tabs */
.block--price {
  background: var(--c-main-bg);
  padding: var(--gap) 0;
}
.block--price .block__head { margin-bottom: 36px; }
.block--price .heading--light,
.block--price .heading--light em { color: var(--heading); }
.block--price .price-foot--light { color: var(--muted); }
.block--price .price-foot--light a {
  color: var(--heading);
  border-bottom: 1px solid rgba(158, 31, 99, 0.28);
}

/* одна біла «папка» + язички на верхньому краї */
.svc-folder {
  --folder-r: 28px;
  --tab-r: 22px;
  --tab-notch: 20px;
  position: relative;
  margin-top: 56px;
  scroll-margin-top: calc(var(--nav-h) + 20px);
  background: var(--white);
  border-radius: 0 var(--folder-r) var(--folder-r) var(--folder-r);
  box-shadow:
    0 1px 0 rgba(158, 31, 99, 0.06),
    0 12px 40px rgba(158, 31, 99, 0.05);
  overflow: visible;
}

.svc-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 1px);
  display: flex;
  align-items: flex-end;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  z-index: 5;
}
.svc-tabs::-webkit-scrollbar { display: none; }

.svc-tab {
  flex-shrink: 0;
  position: relative;
  margin-right: 8px;
  padding: 14px 26px 12px;
  border: none;
  border-radius: var(--tab-r) var(--tab-r) 0 0;
  background: var(--pastel);
  color: var(--heading);
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}
.svc-tab::before,
.svc-tab::after {
  content: none;
  position: absolute;
  bottom: 0;
  width: var(--tab-notch);
  height: var(--tab-notch);
  pointer-events: none;
  z-index: 2;
}
.svc-tab:hover { background: rgba(255, 118, 183, 0.35); }
.svc-tab.is-active {
  background: var(--white);
  color: var(--heading);
  padding-bottom: 14px;
  margin-bottom: -1px;
  z-index: 6;
}
/* manila — вогнуте плече справа */
.svc-tab.is-active:not(:last-child)::after {
  content: '';
  right: calc(var(--tab-notch) * -1);
  background: radial-gradient(
    circle at 100% 0%,
    transparent calc(var(--tab-notch) - 1px),
    var(--white) var(--tab-notch)
  );
}
/* manila — вогнуте плече зліва */
.svc-tab.is-active:not(:first-child)::before {
  content: '';
  left: calc(var(--tab-notch) * -1);
  background: radial-gradient(
    circle at 0% 0%,
    transparent calc(var(--tab-notch) - 1px),
    var(--white) var(--tab-notch)
  );
}

.svc-panel {
  position: relative;
  z-index: 1;
  padding: 36px 40px 32px;
  min-height: 320px;
}

.svc-pane {
  display: none;
  animation: svcFade 0.28s ease;
}
.svc-pane.is-active { display: block; }
.svc-pane[hidden] { display: none !important; }

@keyframes svcFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.svc-pane__head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(158, 31, 99, 0.1);
}

.svc-pane:not([data-service="logo"]) .svc-pane__head {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 16px;
}

/* Айдентика, поліграфія, соцмережі — рамка только на блоке услуг */
.svc-pane:not([data-service="logo"]) .svc-pane__body {
  padding: 22px;
  border: 2px solid rgba(158, 31, 99, 0.12);
  border-radius: 16px;
  background: var(--c-main-bg);
}
.svc-pane__title {
  font-family: var(--font-b);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 600;
  font-style: normal;
  color: var(--muted);
  line-height: 1.05;
  margin-bottom: 14px;
}
.svc-pane__desc {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 18px;
}
.svc-pane__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-pane__badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--peach);
  border: none;
  color: var(--white);
}

.svc-pane__body { margin-bottom: 24px; }
.svc-pane__foot {
  padding-top: 20px;
  border-top: 1px solid rgba(158, 31, 99, 0.1);
}
.svc-pane__link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--heading);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.svc-pane__link:hover { color: var(--barbie); transform: translateY(-1px); }

.packs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pack {
  border: 2px solid rgba(158, 31, 99, 0.12);
  border-radius: 16px;
  padding: 22px;
  background: var(--c-main-bg);
}
.pack--hot {
  border-color: rgba(158, 31, 99, 0.12);
  background: var(--c-main-bg);
}
.pack__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(158, 31, 99, 0.15);
}
.pack__title {
  font-family: var(--font-b);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--muted);
}
.pack__time {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.pack__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.pack__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pack__list li {
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.pack__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--barbie);
}
.pack__list--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.price-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
}
.price-foot--light a { font-weight: 700; }

/* process */
.block--process { background: var(--c-main-bg); }
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
  position: relative;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: none;
  border: none;
  border-radius: 0;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -28px;
  width: 2px;
  background: rgba(158, 31, 99, 0.1);
  border-radius: 2px;
}
.step__n {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(158, 31, 99, 0.12);
  color: var(--heading);
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step__body { padding-top: 8px; }
.step__title {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}
.step__note {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* contact */
.block--contact {
  background: var(--c-main-bg);
  padding-bottom: 80px;
}
.block--contact .heading--light,
.block--contact .heading--light em { color: var(--heading); }
.heading--contact {
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 8px;
}
.heading--contact .heading__line {
  display: block;
  white-space: nowrap;
}
.heading--contact .heading__line + .heading__line {
  margin-top: 0.1em;
}
.heading--contact em {
  font-style: italic;
  color: var(--heading);
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact__text {
  color: var(--muted);
  font-weight: 500;
  margin: 16px 0 28px;
  max-width: 400px;
  font-size: 1.02rem;
  line-height: 1.65;
}
.contact__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
  transition: color 0.2s, transform 0.2s;
}
.contact__links a:hover { color: var(--barbie); transform: translateX(4px); }

.contact__form {
  background: var(--white);
  border: 2px solid rgba(158, 31, 99, 0.1);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 0 0 1px rgba(158, 31, 99, 0.04);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(158, 31, 99, 0.14);
  border-radius: 12px;
  background: var(--c-main-bg);
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--barbie); }
.form-input::placeholder { color: rgba(158, 31, 99, 0.35); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-note {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  min-height: 20px;
}

/* footer */
.footer {
  background: var(--c-main-bg);
  padding: 24px 0 32px;
  border-top: 1px solid rgba(158, 31, 99, 0.1);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__logo {
  font-family: var(--font-b);
  font-size: clamp(1rem, 2.8vw, 1.06rem);
  font-weight: 800;
  text-transform: lowercase;
  color: var(--heading);
  letter-spacing: -0.03em;
}
.footer__logo span { color: inherit; }
.footer__copy { font-size: 0.78rem; color: var(--muted); }
.footer__up {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--heading);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__text { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .works { grid-template-columns: 1fr; }
  .work--wide { grid-column: auto; }
  .work--wide .work__media { aspect-ratio: 16/10; }
  .contact { grid-template-columns: 1fr; }
  .packs { grid-template-columns: 1fr; }
  .pack__list--cols { grid-template-columns: 1fr; }
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__logo {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 12px;
  }
}

@media (max-width: 720px) {
  :root { --gap: 72px; }
  .header__logo {
    font-size: clamp(1.02rem, 4.1vw, 1.1rem);
    letter-spacing: -0.035em;
  }
  .footer__logo {
    font-size: clamp(1.02rem, 4.1vw, 1.08rem);
  }
  /* папка: ярлыки окремо + біла панель знизу (як на макеті) */
  .svc-folder {
    --folder-r: 22px;
    --tab-inner-r: 10px;
    --tab-notch: 8px;
    display: flex;
    flex-direction: column;
    margin-top: 48px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
  .svc-tabs {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    width: 100%;
    padding: 0;
    margin-bottom: -1px;
    background: transparent;
    overflow: visible;
    z-index: 2;
  }
  .svc-tab {
    flex: initial;
    min-width: 0;
    margin-right: 0;
    padding: 10px 4px 9px;
    font-size: clamp(0.58rem, 2.55vw, 0.72rem);
    letter-spacing: 0;
    line-height: 1.15;
    text-align: center;
    border-radius: var(--tab-inner-r) var(--tab-inner-r) 0 0;
  }
  .svc-tab:first-child {
    border-radius: var(--folder-r) var(--tab-inner-r) 0 0;
  }
  .svc-tab:last-child {
    border-radius: var(--tab-inner-r) var(--folder-r) 0 0;
  }
  .svc-tab.is-active {
    padding-bottom: 11px;
    margin-bottom: 0;
    z-index: 3;
  }
  .svc-tab.is-active:not(:first-child)::before,
  .svc-tab.is-active:not(:last-child)::after {
    content: none !important;
  }
  .svc-tab:first-child::before,
  .svc-tab:last-child::after {
    content: none !important;
  }
  .svc-panel {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 28px 22px 24px;
    border-radius: 0 0 var(--folder-r) var(--folder-r);
    box-shadow:
      0 1px 0 rgba(158, 31, 99, 0.06),
      0 12px 40px rgba(158, 31, 99, 0.05);
  }
  .footer__copy { display: none; }
  .wrap { padding: 0 20px; }
  .contact { gap: 32px; }
  .heading--contact {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem);
  }
  .heading--contact .heading__line { white-space: normal; }
  .contact__text {
    font-size: 0.98rem;
    margin-bottom: 22px;
  }
  .contact__form {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .field { margin-bottom: 14px; }
  .field label {
    font-size: 0.65rem;
    margin-bottom: 6px;
  }
  .form-input {
    font-size: 16px;
    padding: 13px 14px;
    border-radius: 10px;
  }
  .form-textarea { min-height: 110px; }
  .contact__form .btn--full {
    margin-top: 4px;
    padding: 15px 18px;
    font-size: 0.88rem;
  }
}
