@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

:root {
  --ink: #0b1326;
  --muted: #687286;
  --line: #e0e5ed;
  --blue: #2467f5;
  --orange: #ff5c19;
  --navy: #09142b;
  --soft: #f4f6f9;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(15, 31, 61, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
blockquote,
li,
span,
strong {
  overflow-wrap: break-word;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(36, 103, 245, 0.34);
  outline-offset: 3px;
}

.container {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.button {
  min-height: 60px;
  padding: 0 27px;
  border: 0;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(180deg, #ff7733 0%, #ff5c19 58%, #ef4908 100%);
  color: #fff;
  box-shadow: 0 15px 28px rgba(230, 70, 7, 0.24), inset 0 1px rgba(255, 255, 255, 0.38);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(230, 70, 7, 0.29), inset 0 1px rgba(255, 255, 255, 0.38);
}

.button-small {
  min-height: 50px;
  padding-inline: 21px;
  font-size: 13px;
}

.eyebrow {
  margin-bottom: 17px;
  display: inline-block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #82aaff;
}

.section-head h2,
.process-intro h2,
.faq-grid h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.section-head > p,
.split-head > p,
.centered-head > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 82px;
}

.split-head > p {
  max-width: 560px;
  margin: 0 0 5px;
}

.centered-head {
  max-width: 830px;
  margin-inline: auto;
  text-align: center;
}

.centered-head > p {
  max-width: 670px;
  margin: 22px auto 0;
}

/* Header */

.site-header {
  z-index: 50;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header-row {
  height: 104px;
  display: flex;
  align-items: center;
}

.brand {
  width: 145px;
  flex: none;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand span {
  color: var(--blue);
  font-size: 31px;
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.055em;
}

.brand small {
  margin-top: 11px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.34em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--orange);
  transition: width 180ms ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-contact {
  margin-left: 39px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-messengers {
  min-height: 46px;
  padding: 5px 6px 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(36, 103, 245, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(30, 52, 91, 0.07);
  backdrop-filter: blur(12px);
}

.header-messengers-label {
  margin-right: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.messenger-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 3px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 30, 70, 0.08);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(22, 40, 75, 0.09);
  text-decoration: none;
  touch-action: manipulation;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.messenger-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 103, 245, 0.24);
  box-shadow: 0 9px 18px rgba(22, 40, 75, 0.14);
}

.messenger-icon:active {
  transform: translateY(0) scale(0.96);
}

.messenger-icon img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.header-phone {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.header-phone::before {
  content: "☎";
  margin-right: 7px;
  color: var(--blue);
  font-size: 13px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  margin-left: 12px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: none;
  place-content: center;
  gap: 4px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--ink);
  border-radius: 99px;
}

/* Hero */

.hero {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 27%, rgba(52, 116, 255, 0.15), transparent 28%),
    radial-gradient(circle at 2% 65%, rgba(255, 92, 25, 0.08), transparent 25%),
    #fbfbfa;
}

.hero::after {
  content: "";
  width: 560px;
  height: 560px;
  pointer-events: none;
  position: absolute;
  top: 86px;
  right: -250px;
  border: 1px solid rgba(36, 103, 245, 0.1);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 755px;
  padding-top: 117px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy {
  z-index: 10;
  position: relative;
  isolation: isolate;
}

.availability {
  width: max-content;
  max-width: 100%;
  margin-bottom: 27px;
  padding: 9px 13px;
  border: 1px solid #dee3eb;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.75);
  color: #3b465b;
  font-size: 11px;
  font-weight: 800;
}

.availability i {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: #2eba71;
  box-shadow: 0 0 0 4px rgba(46, 186, 113, 0.13);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(51px, 5.5vw, 78px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.hero h1 strong {
  display: block;
  color: var(--orange);
  font-weight: 850;
}

.hero-copy > p {
  max-width: 625px;
  margin: 29px 0 34px;
  color: #566177;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  z-index: 30;
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  isolation: isolate;
  pointer-events: auto;
}

.hero-actions .button {
  min-height: 66px;
  position: relative;
  z-index: 5;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.text-link {
  padding: 13px 0 8px;
  border-bottom: 1px solid #acb3bf;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.hero-assurance {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.hero-phone {
  width: min(100%, 430px);
  margin-top: 19px;
  padding: 10px 11px;
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #e0e6ef;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(30, 52, 88, 0.08);
  backdrop-filter: blur(12px);
  touch-action: manipulation;
}

.hero-phone-icon {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eaf1ff;
  color: var(--blue);
  font-size: 16px;
}

.hero-phone-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.hero-phone-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.2;
}

.hero-phone-copy b {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 900;
}

.hero-phone-action {
  margin-left: auto;
  padding: 9px 11px;
  border-radius: 11px;
  background: #f1f5fc;
  color: #385177;
  font-size: 9px;
  font-weight: 850;
}

.hero-phone-action i {
  margin-left: 3px;
  font-style: normal;
}

.hero-assurance span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #70798b;
  font-size: 10px;
  font-weight: 750;
}

.hero-assurance b {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f0ff;
  color: var(--blue);
  font-size: 9px;
}

.hero-visual {
  min-height: 580px;
  position: relative;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero-visual * {
  pointer-events: none;
}

.hero-visual-shape {
  width: 86%;
  aspect-ratio: 1;
  position: absolute;
  right: -3%;
  top: 6%;
  border-radius: 40% 60% 58% 42% / 51% 44% 56% 49%;
  background: linear-gradient(145deg, #e8f0ff, #cfdefd);
  transform: rotate(-8deg);
}

.hero-visual img {
  z-index: 2;
  width: 112%;
  max-width: none;
  margin-left: -3%;
  position: relative;
  filter: drop-shadow(0 33px 30px rgba(18, 43, 87, 0.19));
  mix-blend-mode: multiply;
}

.floating-card {
  z-index: 4;
  padding: 11px 14px 11px 10px;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(216, 223, 235, 0.96);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 44px rgba(20, 44, 86, 0.14);
  backdrop-filter: blur(12px);
}

.floating-card-top {
  top: 14%;
  right: 2%;
}

.floating-card-bottom {
  bottom: 11%;
  left: 1%;
}

.floating-icon {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #edf3ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.floating-card b,
.floating-card small {
  display: block;
}

.floating-card b {
  font-size: 11px;
}

.floating-card small {
  margin-top: 3px;
  color: #848c9b;
  font-size: 8px;
}

.proof-strip {
  min-height: 112px;
  padding: 0 28px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid #e1e5eb;
  border-bottom: 0;
  border-radius: 29px 29px 0 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -18px 45px rgba(18, 35, 67, 0.04);
}

.proof-strip > div {
  min-width: 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.proof-strip > div + div {
  border-left: 1px solid #e2e6ec;
}

.proof-strip b {
  color: var(--blue);
  font-size: 12px;
}

.proof-strip span {
  color: #414b5e;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
}

/* Services */

.services {
  background: #fff;
}

.service-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}

.service-card {
  min-height: 365px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fafbfd;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  font-size: 28px;
  font-weight: 900;
}

.service-icon-blue {
  background: #e9f0ff;
  color: var(--blue);
}

.service-icon-orange {
  background: #fff0e9;
  color: var(--orange);
}

.service-icon-dark {
  background: #e9edf4;
  color: var(--navy);
}

.service-number {
  position: absolute;
  top: 35px;
  right: 31px;
  color: #a1a9b6;
  font-size: 11px;
  font-weight: 900;
}

.service-card h3 {
  margin: 47px 0 12px;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.service-card > p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-meta {
  margin-top: auto;
  padding-top: 31px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.service-meta b {
  font-size: 18px;
}

.service-meta span {
  color: #8a92a0;
  font-size: 10px;
}

.principle {
  margin-top: 20px;
  padding: 34px 39px;
  display: grid;
  grid-template-columns: auto minmax(240px, 0.8fr) minmax(300px, 1.2fr);
  align-items: center;
  gap: 30px;
  border: 1px solid #dfe4ed;
  border-radius: 28px;
  background: linear-gradient(120deg, #f6f9fd, #fff);
}

.principle-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  background: var(--navy);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.principle .eyebrow {
  margin-bottom: 8px;
}

.principle h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.principle > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Portfolio */

.portfolio {
  color: #fff;
  background:
    radial-gradient(circle at 8% 8%, rgba(53, 106, 244, 0.2), transparent 22%),
    #0a1328;
}

.portfolio-head {
  max-width: 830px;
  margin-bottom: 62px;
}

.portfolio-head > p {
  max-width: 690px;
  margin: 24px 0 0;
  color: #aab6cb;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.project {
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.23);
}

.project-wide {
  grid-column: span 12;
}

.project-seven {
  grid-column: span 7;
}

.project-five {
  grid-column: span 5;
}

.project-six {
  grid-column: span 6;
}

.project-screen {
  min-width: 0;
  height: 520px;
  overflow: hidden;
  position: relative;
  border-radius: 21px;
}

.project-caption {
  min-height: 105px;
  padding: 20px 8px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.project-caption > div {
  min-width: 0;
}

.project-caption small {
  color: #8a92a0;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.project-caption h3 {
  margin: 7px 0 0;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.project-caption ul {
  max-width: 46%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  list-style: none;
}

.project-caption li {
  padding: 7px 9px;
  border-radius: 999px;
  background: #f0f3f7;
  color: #596376;
  font-size: 8px;
  font-weight: 850;
}

/* Case 1: logistics — service dashboard */

.logistics-screen {
  display: flex;
  flex-direction: column;
  background: #07101f;
  color: #fff;
}

.logistics-top {
  height: 70px;
  padding: 0 27px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.logistics-top strong {
  margin-right: auto;
  font-size: 16px;
}

.logistics-top strong i {
  color: #ff6532;
  font-style: normal;
}

.logistics-top nav {
  display: flex;
  gap: 18px;
  color: #9aa7ba;
  font-size: 7px;
}

.logistics-top > b {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 8px;
}

.logistics-layout {
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-columns: 45% 55%;
}

.logistics-panel {
  min-width: 0;
  padding: 46px 36px 30px;
  display: flex;
  flex-direction: column;
}

.mock-kicker {
  color: #7da8ff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logistics-panel h3 {
  max-width: 420px;
  margin: 15px 0 13px;
  font-size: clamp(35px, 4vw, 57px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.logistics-panel > p {
  max-width: 330px;
  margin: 0;
  color: #aab5c7;
  font-size: 9px;
  line-height: 1.7;
}

.route-form {
  width: 100%;
  max-width: 470px;
  margin-top: 29px;
  padding: 11px 11px 11px 15px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: #0c182b;
}

.route-form label {
  min-width: 0;
}

.route-form small,
.route-form b {
  display: block;
}

.route-form small {
  color: #738197;
  font-size: 6px;
}

.route-form b {
  margin-top: 4px;
  font-size: 8px;
}

.route-form > span {
  color: #75839a;
}

.route-form > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #2e6df6;
  font-style: normal;
}

.logistics-facts {
  margin-top: auto;
  display: flex;
  gap: 27px;
  color: #8190a5;
  font-size: 7px;
}

.logistics-facts b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
}

.logistics-image {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 22px 0 0 0;
}

.logistics-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #07101f 0%, rgba(7, 16, 31, 0) 18%), linear-gradient(180deg, rgba(7, 16, 31, 0) 58%, rgba(7, 16, 31, 0.72));
}

.logistics-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tracking-card {
  z-index: 2;
  width: 220px;
  padding: 14px;
  position: absolute;
  right: 21px;
  bottom: 21px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(8, 18, 34, 0.86);
  backdrop-filter: blur(11px);
}

.tracking-card span,
.tracking-card b,
.tracking-card small {
  display: block;
}

.tracking-card span {
  color: #8ea0b8;
  font-size: 6px;
}

.tracking-card span i {
  width: 6px;
  height: 6px;
  margin-right: 5px;
  display: inline-block;
  border-radius: 50%;
  background: #38c77b;
}

.tracking-card b {
  margin: 8px 0 4px;
  font-size: 10px;
}

.tracking-card small {
  color: #8fa0b7;
  font-size: 6px;
}

/* Case 2: interior — editorial journal */

.interior-screen {
  background: #ece6dc;
  color: #241f1a;
  font-family: Georgia, "Times New Roman", serif;
}

.interior-bar {
  height: 59px;
  padding: 0 21px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(36, 31, 26, 0.16);
}

.interior-bar strong {
  margin-right: auto;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.interior-bar span {
  color: #887a6f;
  font-size: 6px;
  letter-spacing: 0.13em;
}

.interior-bar b {
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(36, 31, 26, 0.18);
  font-family: "Manrope", sans-serif;
  font-size: 6px;
}

.interior-layout {
  height: calc(100% - 59px);
  padding: 23px;
  display: grid;
  grid-template-columns: minmax(245px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.interior-copy {
  min-width: 0;
  padding: 20px 4px 0;
  display: flex;
  flex-direction: column;
}

.interior-copy > span {
  color: #96775d;
  font-family: "Manrope", sans-serif;
  font-size: 6px;
  letter-spacing: 0.14em;
}

.interior-copy h3 {
  margin: 22px 0 17px;
  overflow-wrap: normal;
  font-size: clamp(34px, 3vw, 43px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.interior-copy p {
  max-width: 240px;
  margin: 0;
  color: #6e6359;
  font-size: 8px;
  line-height: 1.7;
}

.interior-copy > a {
  width: max-content;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid #514840;
  font-family: "Manrope", sans-serif;
  font-size: 7px;
  font-weight: 850;
  text-decoration: none;
}

.interior-palette {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.interior-palette i {
  width: 17px;
  height: 17px;
  display: block;
  border-radius: 50%;
  background: #d7c4ac;
}

.interior-palette i:nth-child(2) {
  background: #9b8067;
}

.interior-palette i:nth-child(3) {
  background: #ece7de;
  border: 1px solid #c9beb1;
}

.interior-palette span {
  margin-left: 5px;
  color: #918276;
  font-family: "Manrope", sans-serif;
  font-size: 5px;
}

.interior-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 1fr 0.52fr;
  gap: 11px;
}

.interior-gallery figure {
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #d7cec2;
}

.interior-main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.interior-detail {
  grid-column: 2;
  grid-row: 2;
}

.interior-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-gallery figcaption {
  padding: 7px 8px;
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(239, 233, 224, 0.88);
  font-family: "Manrope", sans-serif;
  font-size: 5px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

/* Case 3: beauty — product grid */

.beauty-screen {
  display: flex;
  flex-direction: column;
  background: #e3e9da;
  color: #182016;
}

.beauty-offer {
  height: 23px;
  flex: none;
  display: grid;
  place-items: center;
  background: #172015;
  color: #e8eee3;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.beauty-header {
  height: 55px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 6px;
}

.beauty-header strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
}

.beauty-header span:last-child {
  justify-self: end;
}

.beauty-title {
  padding: 23px 21px 17px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 13px;
}

.beauty-title small {
  color: #65715e;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.beauty-title h3 {
  margin: 9px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.beauty-title p {
  max-width: 180px;
  margin: 0 0 4px;
  color: #64705e;
  font-size: 7px;
  line-height: 1.6;
}

.beauty-product-grid {
  min-height: 0;
  padding: 0 14px 14px;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.beauty-product {
  min-width: 0;
  padding: 9px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #edf1e8;
}

.beauty-product > span {
  z-index: 2;
  position: relative;
  color: #74806c;
  font-size: 6px;
}

.beauty-product img {
  width: 330%;
  max-width: none;
  height: 75%;
  position: absolute;
  left: 0;
  top: 12%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.product-one img {
  transform: translateX(-3%);
}

.product-two img {
  transform: translateX(-35%);
}

.product-three img {
  transform: translateX(-67%);
}

.beauty-product > div {
  z-index: 2;
  margin-top: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.beauty-product b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
}

.beauty-product small {
  font-size: 6px;
  font-weight: 800;
}

/* Case 4: construction — technical project dashboard */

.build-screen {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #17191d;
  background-size: 38px 38px;
  color: #fff;
}

.build-header {
  height: 69px;
  padding: 0 27px;
  flex: none;
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.build-header strong {
  margin-right: auto;
  font-size: 17px;
  letter-spacing: -0.05em;
}

.build-header sup {
  color: #ffcf2e;
  font-size: 6px;
}

.build-header nav {
  display: flex;
  gap: 19px;
  color: #94999f;
  font-size: 7px;
}

.build-header > b {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 7px;
}

.build-dashboard {
  min-height: 0;
  flex: 1;
  padding: 18px;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr 0.8fr;
  grid-template-rows: 1fr 0.42fr auto;
  gap: 12px;
}

.build-dashboard aside {
  min-width: 0;
  padding: 24px 19px;
  grid-row: 1 / 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 14, 18, 0.72);
}

.build-dashboard aside > span {
  color: #ffcf2e;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.build-dashboard aside h3 {
  margin: 23px 0 10px;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.07em;
}

.build-dashboard aside > p {
  max-width: 210px;
  margin: 0;
  color: #92979f;
  font-size: 8px;
  line-height: 1.7;
}

.build-dashboard dl {
  margin: 27px 0 0;
}

.build-dashboard dl > div {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.build-dashboard dt {
  color: #7e848d;
  font-size: 6px;
}

.build-dashboard dd {
  margin: 0;
  font-size: 8px;
  font-weight: 850;
}

.build-dashboard aside > i {
  width: max-content;
  margin-top: 22px;
  padding: 9px 11px;
  display: block;
  background: #ffcf2e;
  color: #181a1e;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

.build-dashboard figure {
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.build-dashboard figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.build-house {
  grid-row: 1 / 3;
}

.build-blueprint {
  grid-row: 1 / 3;
}

.build-blueprint img {
  filter: saturate(0.72) contrast(1.03);
}

.build-dashboard figcaption {
  padding: 7px 8px;
  position: absolute;
  left: 9px;
  bottom: 9px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(14, 16, 20, 0.83);
  backdrop-filter: blur(8px);
  font-size: 5px;
  letter-spacing: 0.08em;
}

.build-blueprint figcaption b {
  color: #ffcf2e;
}

.build-progress {
  height: 42px;
  padding: 0 9px;
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #777d86;
  font-size: 6px;
}

.build-progress b {
  color: #ffcf2e;
}

/* Case 5: dental — appointment interface */

.dental-screen {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  background: #eff8f7;
  color: #10373a;
}

.dental-sidebar {
  padding: 22px 15px 18px;
  display: flex;
  flex-direction: column;
  background: #0e3b3f;
  color: #fff;
}

.dental-sidebar > strong {
  font-size: 16px;
  letter-spacing: -0.05em;
}

.dental-sidebar > strong span {
  color: #52c9c3;
}

.dental-sidebar nav {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: center;
  gap: 15px 6px;
}

.dental-sidebar nav b {
  color: #5f8c8f;
  font-size: 5px;
}

.dental-sidebar nav span {
  font-size: 7px;
}

.dental-sidebar nav span:nth-of-type(2) {
  color: #66d8d1;
}

.dental-sidebar > small {
  margin-top: auto;
  color: #87a7a9;
  font-size: 6px;
  line-height: 1.6;
}

.dental-booking {
  min-width: 0;
  padding: 0 16px 14px;
  display: flex;
  flex-direction: column;
}

.dental-top {
  height: 51px;
  flex: none;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(16, 55, 58, 0.14);
  color: #769294;
  font-size: 6px;
}

.dental-top b {
  margin-left: auto;
  color: #10373a;
}

.dental-heading {
  padding: 18px 2px 13px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
}

.dental-heading small {
  color: #4ea5a4;
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.dental-heading h3 {
  margin: 7px 0 0;
  font-size: clamp(21px, 2.5vw, 31px);
  letter-spacing: -0.05em;
}

.dental-heading > span {
  padding: 7px 8px;
  border: 1px solid rgba(16, 55, 58, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #668486;
  font-size: 5px;
}

.dental-team-photo {
  height: 176px;
  flex: none;
  position: relative;
  overflow: hidden;
  border-radius: 13px;
}

.dental-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.dental-team-photo > div {
  padding: 8px 10px;
  position: absolute;
  right: 9px;
  bottom: 9px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.9);
}

.dental-team-photo b,
.dental-team-photo span {
  display: block;
}

.dental-team-photo b {
  font-size: 8px;
}

.dental-team-photo span {
  margin-top: 2px;
  color: #718d8f;
  font-size: 5px;
}

.doctor-list {
  min-height: 0;
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.doctor-card {
  min-width: 0;
  padding: 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(16, 55, 58, 0.12);
  border-radius: 10px;
  background: #fff;
}

.doctor-card.active {
  border-color: #3caaa9;
  background: #e2f5f3;
}

.doctor-card > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #d9eeee;
  color: #257e80;
  font-size: 6px;
  font-weight: 900;
}

.doctor-card b,
.doctor-card small {
  display: block;
}

.doctor-card b {
  font-size: 6px;
}

.doctor-card small {
  margin-top: 2px;
  color: #799294;
  font-size: 4px;
}

.doctor-card i {
  padding: 4px 6px;
  grid-column: 1 / 3;
  justify-self: start;
  border-radius: 999px;
  background: #153f42;
  color: #fff;
  font-size: 5px;
  font-style: normal;
}

/* Case 6: coffee — subscription configurator */

.coffee-screen {
  display: flex;
  flex-direction: column;
  background: #26170f;
  color: #f0e6d8;
  font-family: Georgia, "Times New Roman", serif;
}

.coffee-header {
  height: 57px;
  padding: 0 18px;
  flex: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.coffee-header strong {
  font-size: 13px;
}

.coffee-header span {
  color: #ad8e78;
  font-family: "Manrope", sans-serif;
  font-size: 5px;
  letter-spacing: 0.14em;
}

.coffee-header b {
  justify-self: end;
  color: #c4a891;
  font-family: "Manrope", sans-serif;
  font-size: 6px;
}

.coffee-builder {
  min-height: 0;
  padding: 13px;
  flex: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 13px;
}

.coffee-builder figure {
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 13px;
}

.coffee-builder figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coffee-builder figcaption {
  padding: 9px 10px;
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 9px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(36, 21, 13, 0.82);
  backdrop-filter: blur(8px);
}

.coffee-builder figcaption b {
  font-size: 8px;
}

.coffee-builder figcaption span {
  color: #bea894;
  font-family: "Manrope", sans-serif;
  font-size: 5px;
}

.coffee-config {
  min-width: 0;
  padding: 11px 7px 4px;
}

.coffee-step {
  color: #d8894f;
  font-family: "Manrope", sans-serif;
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.coffee-config h3 {
  margin: 12px 0 17px;
  font-size: clamp(27px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.config-row {
  min-height: 47px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-family: "Manrope", sans-serif;
}

.config-row > span {
  color: #ad9481;
  font-size: 6px;
}

.config-row b,
.config-row i {
  padding: 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 5px;
  font-style: normal;
}

.config-row b {
  border-color: #d77c3f;
  color: #f0c8aa;
}

.taste-scale {
  margin-top: 13px;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr auto;
  align-items: center;
  gap: 4px;
  color: #a8907d;
  font-family: "Manrope", sans-serif;
  font-size: 5px;
}

.taste-scale i,
.taste-scale b {
  height: 3px;
  display: block;
  background: #594236;
}

.taste-scale b {
  background: #d67b3e;
}

.coffee-total {
  margin-top: 18px;
  padding-top: 15px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-family: "Manrope", sans-serif;
}

.coffee-total small,
.coffee-total b {
  display: block;
}

.coffee-total small {
  color: #a88f7c;
  font-size: 5px;
}

.coffee-total b {
  margin-top: 4px;
  font-size: 14px;
}

.coffee-total > span {
  padding: 9px 11px;
  background: #d77b3e;
  color: #fff;
  font-size: 6px;
  font-weight: 900;
}

/* Pricing */

.pricing {
  background: #fff;
}

.price-grid {
  margin-top: 59px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.price-card {
  min-height: 635px;
  padding: 34px 31px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 29px;
  background: #fbfcfd;
}

.price-card.featured {
  border: 2px solid var(--blue);
  background: linear-gradient(#f2f6ff, #fff 52%);
  transform: translateY(-10px);
  box-shadow: 0 27px 70px rgba(36, 103, 245, 0.15);
}

.popular {
  padding: 8px 13px;
  position: absolute;
  top: 0;
  right: 27px;
  border-radius: 0 0 11px 11px;
  background: var(--blue);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-label {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 16px 0 8px;
  font-size: 24px;
  letter-spacing: -0.045em;
}

.price-value {
  font-size: 36px;
  letter-spacing: -0.055em;
}

.price-card > p {
  min-height: 74px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.price-card ul {
  margin: 0;
  padding: 22px 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid #e0e5ec;
  list-style: none;
}

.price-card li {
  color: #404a5d;
  font-size: 11px;
  line-height: 1.45;
}

.price-card li::first-letter {
  color: var(--blue);
}

.price-bottom {
  margin-top: auto;
}

.price-bottom > span {
  margin-bottom: 17px;
  display: block;
  color: #7b8494;
  font-size: 10px;
}

.price-button {
  width: 100%;
  min-height: 53px;
  padding: 0 16px;
  border: 1px solid #dce1e9;
  border-radius: 13px;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.featured .price-button {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

/* Process */

.process {
  color: #fff;
  background:
    radial-gradient(circle at 8% 90%, rgba(36, 103, 245, 0.28), transparent 27%),
    radial-gradient(circle at 93% 7%, rgba(255, 92, 25, 0.1), transparent 22%),
    var(--navy);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 125px);
}

.process-intro h2 {
  font-size: clamp(42px, 4.1vw, 62px);
}

.process-intro > p {
  max-width: 420px;
  margin: 23px 0 0;
  color: #aab7cb;
  font-size: 14px;
  line-height: 1.7;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.process-list li {
  min-height: 135px;
  padding: 27px 0;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) auto;
  align-items: center;
  gap: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list li > span {
  color: #76a0ff;
  font-size: 11px;
  font-weight: 900;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.process-list p {
  max-width: 510px;
  margin: 0;
  color: #aab7cb;
  font-size: 11px;
  line-height: 1.6;
}

.process-list li > b {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #c3ccda;
  font-size: 8px;
}

/* Reviews */

.reviews {
  background: var(--soft);
}

.review-points {
  display: grid;
  gap: 11px;
}

.review-points span {
  color: #4f596c;
  font-size: 11px;
  font-weight: 800;
}

.review-points span::first-letter {
  color: var(--blue);
}

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

.review-card {
  min-height: 390px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e4eb;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(18, 34, 66, 0.05);
}

.review-person {
  display: flex;
  align-items: center;
}

.review-person > span {
  width: 49px;
  height: 49px;
  margin-right: 12px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #5693ff, #1754d5);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.review-person .orange-avatar {
  background: linear-gradient(145deg, #ff8b48, #e94d0a);
}

.review-person .dark-avatar {
  background: linear-gradient(145deg, #263653, #0c182e);
}

.review-person b,
.review-person small {
  display: block;
}

.review-person b {
  font-size: 13px;
}

.review-person small {
  margin-top: 3px;
  color: #7c8595;
  font-size: 8px;
}

.review-person i {
  margin-left: auto;
  color: #c8cfda;
  font-family: Georgia, serif;
  font-size: 38px;
  font-style: normal;
}

.stars {
  margin: 26px 0 17px;
  color: #ff9c1e;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 0;
  color: #384256;
  font-size: 12px;
  line-height: 1.8;
}

.review-tag {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: #eff3f8;
  color: #5e687a;
  font-size: 8px;
}

.review-note {
  max-width: 690px;
  margin: 22px auto 0;
  color: #8a93a2;
  text-align: center;
  font-size: 9px;
  line-height: 1.6;
}

/* FAQ */

.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 9vw, 140px);
}

.faq-grid h2 {
  font-size: clamp(42px, 4vw, 61px);
}

.faq-grid > div:first-child > p {
  max-width: 410px;
  margin: 22px 0 27px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 88px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 35px;
  height: 35px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf2f9;
  color: var(--blue);
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 690px;
  margin: -5px 0 27px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

/* Contact and footer */

.contact {
  padding: 0 0 86px;
}

.contact-card {
  min-height: 390px;
  padding: 62px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 37px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 15% 10%, rgba(57, 119, 255, 0.52), transparent 30%),
    radial-gradient(circle at 88% 100%, rgba(255, 91, 24, 0.34), transparent 31%),
    #08152d;
  color: #fff;
}

.contact-mark {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #80a7ff;
  font-size: 28px;
  font-weight: 900;
}

.contact-card > div:nth-child(2) > span {
  color: #82a7ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card h2 {
  max-width: 730px;
  margin-top: 14px;
  font-size: clamp(40px, 4.2vw, 62px);
}

.contact-card p {
  margin: 18px 0 0;
  color: #b4bfd1;
  font-size: 13px;
}

.button-white {
  min-width: 250px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.27);
}

.contact-actions {
  display: grid;
  justify-items: stretch;
  gap: 13px;
}

.contact-actions > a {
  padding: 10px 13px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
}

.contact-actions > a span {
  color: #9eabc0;
  font-size: 9px;
  font-weight: 750;
}

.contact-actions > a b {
  font-size: 15px;
  font-weight: 900;
}

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

.contact-messengers a {
  min-width: 0;
  min-height: 55px;
  padding: 7px 4px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  touch-action: manipulation;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-messengers a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
}

.contact-messengers img {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  object-fit: contain;
}

.contact-messengers span {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: #dce5f4;
  font-size: 7px;
  font-weight: 850;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

footer {
  padding: 50px 0 22px;
  background: #f1f3f6;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 46px;
}

.brand-footer {
  transform: scale(0.84);
  transform-origin: left center;
}

.footer-top > p {
  margin: 0 auto 0 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.6;
}

.footer-top nav {
  display: flex;
  gap: 25px;
}

.footer-top nav a {
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

.footer-phone {
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.footer-messengers {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-messengers .messenger-icon {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #d9dee6;
  color: #8992a1;
  font-size: 9px;
}

/* Modal */

.modal-shell {
  z-index: 100;
  position: fixed;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 170ms ease, visibility 170ms ease;
}

.modal-shell.open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 26, 0.67);
  backdrop-filter: blur(9px);
}

.modal {
  width: min(510px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  padding: 39px;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow-y: auto;
  transform: translate(-50%, -47%);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.3);
  transition: transform 170ms ease;
}

.modal-shell.open .modal {
  transform: translate(-50%, -50%);
}

.modal-close {
  width: 39px;
  height: 39px;
  padding: 0;
  position: absolute;
  top: 17px;
  right: 17px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f5f7fa;
  font-size: 24px;
  cursor: pointer;
}

.modal h2 {
  max-width: 390px;
  margin: 0;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.modal > p {
  max-width: 410px;
  margin: 15px 0 23px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.modal form {
  display: grid;
  gap: 14px;
}

.modal label {
  display: grid;
  gap: 7px;
  color: #4c5669;
  font-size: 10px;
  font-weight: 850;
}

.modal input,
.modal select {
  width: 100%;
  height: 51px;
  padding: 0 14px;
  border: 1px solid #dce2eb;
  border-radius: 12px;
  background: #fbfcfd;
  color: var(--ink);
  font-size: 12px;
}

.modal input[name="phone"] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.025em;
}

.modal form .button {
  width: 100%;
  margin-top: 2px;
}

.modal form > small {
  color: #929aa7;
  text-align: center;
  font-size: 8px;
}

.hp-field {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.modal form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-error {
  margin: -2px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff0ed;
  color: #bd391f;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}

.form-success {
  padding: 18px 0 3px;
  text-align: center;
}

.form-success > div {
  width: 64px;
  height: 64px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e4f7eb;
  color: #26a35d;
  font-size: 26px;
  font-weight: 900;
}

.form-success h3 {
  margin: 0;
  font-size: 25px;
}

.form-success p {
  margin: 12px 0 21px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

/* Responsive */

@media (max-width: 1280px) {
  .main-nav {
    gap: 22px;
  }

  .header-contact {
    margin-left: 25px;
    gap: 16px;
  }

  .header-messengers {
    padding-left: 6px;
  }

  .header-messengers-label {
    display: none;
  }
}

@media (max-width: 1160px) {
  .main-nav {
    gap: 20px;
  }

  .header-contact {
    margin-left: 20px;
    gap: 12px;
  }

  .header-phone {
    display: none;
  }

  .project-seven,
  .project-five,
  .project-six {
    grid-column: span 12;
  }

  .project-screen {
    height: 560px;
  }

  .dental-screen,
  .coffee-screen {
    max-width: none;
  }

  .contact-card {
    grid-template-columns: auto 1fr;
  }

  .contact-card .button {
    grid-column: 2;
    justify-self: start;
  }

  .contact-actions {
    grid-column: 2;
    justify-items: start;
  }

  .contact-actions > a {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 34px, 760px);
  }

  .section {
    padding: 90px 0;
  }

  .header-row {
    height: 88px;
  }

  .main-nav {
    z-index: 60;
    padding: 10px;
    position: absolute;
    top: 75px;
    left: 17px;
    right: 17px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .header-contact {
    margin-left: auto;
    gap: 8px;
  }

  .header-contact .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid {
    min-height: 0;
    padding: 135px 0 55px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(700px, 100%);
    margin: 20px auto 0;
  }

  .proof-strip {
    min-height: 174px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-block: 22px;
  }

  .proof-strip > div {
    padding: 9px 16px;
  }

  .proof-strip > div + div {
    border-left: 0;
  }

  .proof-strip > div:nth-child(2n) {
    border-left: 1px solid #e2e6ec;
  }

  .split-head,
  .service-grid,
  .price-grid,
  .review-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-head {
    gap: 25px;
  }

  .split-head > p {
    margin: 0;
  }

  .service-card {
    min-height: 300px;
  }

  .principle {
    grid-template-columns: auto 1fr;
  }

  .principle > p {
    grid-column: 1 / 3;
  }

  .project-screen {
    height: 520px;
  }

  .logistics-layout {
    grid-template-columns: 48% 52%;
  }

  .build-dashboard {
    grid-template-columns: 0.72fr 1.28fr;
    grid-template-rows: 1fr 0.54fr auto;
  }

  .build-dashboard aside {
    grid-row: 1 / 3;
  }

  .build-house {
    grid-column: 2;
    grid-row: 1;
  }

  .build-blueprint {
    grid-column: 2;
    grid-row: 2;
  }

  .build-progress {
    grid-column: 1 / 3;
  }

  .price-card,
  .price-card.featured {
    min-height: auto;
    transform: none;
  }

  .price-card > p {
    min-height: 0;
  }

  .process-grid,
  .faq-grid {
    gap: 55px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card .button {
    grid-column: auto;
  }

  .contact-actions {
    grid-column: auto;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .footer-top nav {
    order: 5;
    width: 100%;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .brand {
    width: 106px;
  }

  .brand span {
    font-size: 25px;
  }

  .brand small {
    margin-top: 9px;
    font-size: 10px;
  }

  .header-messengers {
    min-height: 40px;
    padding: 3px;
    gap: 3px;
    border-radius: 13px;
  }

  .messenger-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    padding: 2px;
    border-radius: 10px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: 6px;
  }

  .hero-grid {
    padding-top: 119px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 54px);
    line-height: 1;
  }

  .hero-copy > p {
    margin: 22px 0 27px;
    font-size: 14px;
    line-height: 1.67;
  }

  .hero-actions {
    z-index: 50;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 66px;
  }

  .text-link {
    align-self: center;
  }

  .hero-assurance {
    display: grid;
  }

  .hero-phone {
    width: 100%;
    max-width: none;
    margin-top: 19px;
  }

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

  .floating-card-top {
    display: none;
  }

  .floating-card-bottom {
    bottom: 5%;
  }

  .proof-strip {
    min-height: 270px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px;
  }

  .proof-strip > div {
    padding: 12px 6px;
  }

  .proof-strip > div + div,
  .proof-strip > div:nth-child(2n) {
    border-top: 1px solid #e2e6ec;
    border-left: 0;
  }

  .section-head h2,
  .process-intro h2,
  .faq-grid h2,
  .contact-card h2 {
    font-size: clamp(37px, 10.8vw, 49px);
  }

  .service-grid,
  .price-grid,
  .review-grid {
    margin-top: 39px;
  }

  .service-card {
    min-height: 320px;
    padding: 25px;
  }

  .service-meta {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .principle {
    padding: 27px 23px;
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .principle > p {
    grid-column: auto;
  }

  .portfolio-head {
    margin-bottom: 40px;
  }

  .portfolio-grid {
    gap: 17px;
  }

  .project {
    padding: 8px;
    border-radius: 23px;
  }

  .project-screen {
    height: auto;
    min-height: 480px;
    border-radius: 16px;
  }

  .project-caption {
    min-height: 0;
    padding: 17px 7px 8px;
    align-items: start;
    flex-direction: column;
    gap: 13px;
  }

  .project-caption ul {
    max-width: none;
    justify-content: flex-start;
  }

  .logistics-top,
  .build-header {
    height: 56px;
    padding-inline: 15px;
  }

  .logistics-top nav,
  .logistics-top > b,
  .build-header nav {
    display: none;
  }

  .logistics-layout {
    grid-template-columns: 1fr;
  }

  .logistics-panel {
    min-height: 310px;
    padding: 34px 18px 23px;
  }

  .logistics-panel h3 {
    font-size: 37px;
  }

  .logistics-image {
    min-height: 250px;
    border-radius: 0;
  }

  .logistics-image::after {
    background: linear-gradient(180deg, #07101f 0%, rgba(7, 16, 31, 0) 22%), linear-gradient(180deg, rgba(7, 16, 31, 0) 58%, rgba(7, 16, 31, 0.72));
  }

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

  .route-form > i {
    display: none;
  }

  .logistics-facts {
    margin-top: 25px;
  }

  .tracking-card {
    width: auto;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .interior-screen {
    min-height: 590px;
  }

  .interior-bar {
    padding-inline: 15px;
  }

  .interior-bar span {
    display: none;
  }

  .interior-layout {
    height: auto;
    padding: 17px;
    grid-template-columns: 1fr;
  }

  .interior-copy {
    min-height: 285px;
  }

  .interior-copy h3 {
    font-size: 48px;
  }

  .interior-gallery {
    min-height: 280px;
  }

  .beauty-screen {
    min-height: 540px;
  }

  .beauty-title {
    align-items: start;
    flex-direction: column;
  }

  .beauty-title h3 {
    font-size: 39px;
  }

  .beauty-product-grid {
    grid-template-columns: 1fr;
  }

  .beauty-product {
    min-height: 105px;
  }

  .beauty-product img {
    width: 135%;
    height: 240%;
    top: -65%;
    left: 22%;
    transform: none;
  }

  .build-screen {
    min-height: 650px;
  }

  .build-header > b {
    font-size: 6px;
  }

  .build-dashboard {
    grid-template-columns: 1fr;
    grid-template-rows: auto 235px 145px auto;
  }

  .build-dashboard aside {
    grid-column: 1;
    grid-row: 1;
  }

  .build-house {
    grid-column: 1;
    grid-row: 2;
  }

  .build-blueprint {
    grid-column: 1;
    grid-row: 3;
  }

  .build-progress {
    grid-column: 1;
    grid-row: 4;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .dental-screen {
    min-height: 610px;
    grid-template-columns: 1fr;
  }

  .dental-sidebar {
    height: 57px;
    padding: 0 15px;
    flex-direction: row;
    align-items: center;
  }

  .dental-sidebar nav,
  .dental-sidebar > small {
    display: none;
  }

  .dental-booking {
    padding: 0 12px 13px;
  }

  .dental-team-photo {
    height: 220px;
  }

  .doctor-list {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    grid-template-columns: auto 1fr auto;
  }

  .doctor-card i {
    grid-column: auto;
  }

  .coffee-screen {
    min-height: 690px;
  }

  .coffee-header {
    grid-template-columns: 1fr auto;
  }

  .coffee-header span {
    display: none;
  }

  .coffee-builder {
    grid-template-columns: 1fr;
    grid-template-rows: 260px auto;
  }

  .coffee-config h3 {
    font-size: 36px;
  }

  .price-card {
    padding: 30px 23px 24px;
  }

  .price-value {
    font-size: 33px;
  }

  .process-list li {
    min-height: 0;
    grid-template-columns: 32px 1fr;
    align-items: start;
    gap: 12px;
  }

  .process-list li > b {
    grid-column: 2;
    justify-self: start;
  }

  .review-card {
    min-height: 375px;
    padding: 23px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 13px;
  }

  .contact {
    padding-bottom: 54px;
  }

  .contact-card {
    min-height: 470px;
    padding: 41px 24px;
    border-radius: 27px;
  }

  .button-white {
    width: 100%;
    min-width: 0;
  }

  .contact-actions > a,
  .contact-messengers {
    width: 100%;
  }

  .footer-top {
    justify-content: center;
    gap: 24px;
    text-align: center;
  }

  .brand-footer {
    transform-origin: center;
  }

  .footer-top > p,
  .footer-top nav,
  .footer-phone {
    width: 100%;
    margin: 0;
  }

  .footer-top nav {
    justify-content: center;
  }

  .footer-messengers {
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .modal {
    padding: 37px 22px 23px;
  }

  .modal h2 {
    padding-right: 30px;
    font-size: 34px;
  }

  .contact-actions {
    width: 100%;
    grid-column: 1;
    justify-items: stretch;
  }

  .contact-actions > a {
    text-align: center;
  }
}

@media (max-width: 380px) {
  .brand {
    width: 88px;
  }

  .brand span {
    font-size: 22px;
  }

  .brand small {
    margin-top: 8px;
    font-size: 8px;
  }

  .header-contact {
    gap: 4px;
  }

  .header-messengers {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .messenger-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    border-radius: 9px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    margin-left: 2px;
  }

  .hero-phone-action {
    display: none;
  }

  .project-screen {
    min-height: 460px;
  }

  .logistics-panel h3,
  .coffee-config h3 {
    font-size: 32px;
  }

  .interior-copy h3 {
    font-size: 42px;
  }

  .dental-heading {
    align-items: start;
    flex-direction: column;
  }

  .dental-screen {
    min-height: 650px;
  }

  .config-row {
    grid-template-columns: 1fr 1fr;
  }

  .config-row > span {
    grid-column: 1 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
