:root {
  --ink: #18211d;
  --ink-soft: #53605a;
  --paper: #f4f0e8;
  --paper-deep: #e8e1d5;
  --white: #fffdf9;
  --green: #173d34;
  --green-light: #2f6858;
  --coral: #df7358;
  --yellow: #e9bb64;
  --line: rgba(24, 33, 29, 0.14);
  --shadow: 0 28px 70px rgba(22, 35, 30, 0.13);
  --radius: 8px;
  --font-display: "Newsreader", Georgia, serif;
  --font-sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open,
body.project-dialog-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 116px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 240, 232, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: #075848;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 13px;
  height: 13px;
  content: "";
}

.brand-mark::before {
  top: 2px;
  left: 2px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.brand-mark::after {
  right: 2px;
  bottom: 2px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.brand-mark > span {
  position: absolute;
  inset: 7px 8px 5px;
  background: currentColor;
  clip-path: polygon(0 0, 20% 0, 50% 78%, 80% 0, 100% 0, 58% 100%, 42% 100%);
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-name sup {
  position: relative;
  top: -0.35em;
  margin-left: 2px;
  font-size: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.site-nav button {
  position: relative;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.nav-cta {
  padding: 11px 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 5px;
}

.site-nav button.nav-cta {
  font-family: inherit;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  color: var(--ink);
  background: none;
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 790px;
  padding: 160px 0 42px;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: -170px;
  right: -110px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(23, 61, 52, 0.13);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: -3%;
  right: -2%;
  width: 60%;
  height: 106%;
  background-color: #e7dfd2;
  background-image: url("./assets/previews/intermediario-02-desktop.webp");
  background-position: 44% top;
  background-size: cover;
  content: "";
  filter: blur(5px) saturate(0.82);
  opacity: 0.2;
  pointer-events: none;
  transform: scale(1.025);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.42) 18%, #000 46%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.42) 18%, #000 46%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: #bdcfc7;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(60px, 6vw, 90px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.hero h1 em {
  color: var(--coral);
  font-weight: 500;
}

.hero-lead {
  max-width: 585px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: #0f3028;
}

.button-quiet {
  padding-inline: 0;
  border-bottom-color: var(--ink);
  border-radius: 0;
}

.button-outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.button-white {
  color: var(--green);
  background: var(--white);
}

.hero-note {
  max-width: 535px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-note svg {
  width: 20px;
  flex: 0 0 auto;
  color: var(--coral);
}

.hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.hero-note strong {
  color: var(--ink);
}

.hero-showcase {
  position: relative;
  min-height: 530px;
}

.showcase-orbit {
  position: absolute;
  top: 34px;
  right: 18px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(23, 61, 52, 0.14);
  border-radius: 50%;
}

.showcase-orbit::before,
.showcase-orbit::after {
  position: absolute;
  border: 1px solid rgba(23, 61, 52, 0.1);
  border-radius: 50%;
  content: "";
}

.showcase-orbit::before {
  inset: 38px;
}

.showcase-orbit::after {
  inset: 78px;
}

.preview-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 5px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.preview-card-main {
  z-index: 2;
  top: 45px;
  right: 0;
  width: 495px;
  transform: rotate(1.5deg);
}

.preview-card-main img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  object-position: top;
}

.browser-chrome {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 9px;
  background: var(--white);
}

.browser-chrome span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper-deep);
}

.preview-card-side {
  z-index: 3;
  width: 134px;
  border-width: 4px;
}

.preview-card-side img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: top;
}

.preview-card-left {
  bottom: 14px;
  left: 0;
  transform: rotate(-5deg);
}

.preview-card-right {
  right: 25px;
  bottom: 0;
  transform: rotate(4deg);
}

.showcase-label {
  position: absolute;
  z-index: 5;
  right: 170px;
  bottom: 24px;
  min-width: 200px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 18px 40px rgba(91, 40, 27, 0.22);
  transform: rotate(-1deg);
}

.showcase-label span,
.showcase-label strong {
  display: block;
}

.showcase-label span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-label strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.hero-proof div + div {
  border-left: 1px solid var(--line);
}

.hero-proof svg {
  width: 18px;
  color: var(--green-light);
}

.concept {
  background: var(--white);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(43px, 5vw, 67px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.concept-copy {
  padding-top: 40px;
}

.concept-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.concept-copy p + p {
  margin-top: 22px;
}

.service-flow {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: center;
  margin-top: 74px;
}

.service-flow article {
  position: relative;
  min-height: 270px;
  padding: 38px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-flow article > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 34px;
  color: var(--green-light);
}

.service-flow h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.service-flow p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-flow .flow-featured {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-12px);
}

.service-flow .flow-featured > svg,
.service-flow .flow-featured p {
  color: #c9d9d3;
}

.flow-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
}

.flow-arrow {
  width: 18px;
  justify-self: center;
  color: var(--ink-soft);
}

.gallery {
  color: var(--white);
  background: var(--green);
  overflow: hidden;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
}

.gallery-heading > p {
  margin: 0 0 8px;
  color: #bdcfc7;
  font-size: 15px;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 50px 0 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.filter-group {
  display: flex;
  gap: 8px;
}

.filter-button {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #d4e0dc;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.filter-button.is-active {
  border-color: var(--white);
  color: var(--green);
  background: var(--white);
}

.gallery-count {
  margin: 0;
  color: #bdcfc7;
  font-size: 12px;
}

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

.model-card {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  border-radius: var(--radius);
  background: var(--white);
}

.model-visual {
  position: relative;
  height: 345px;
  overflow: hidden;
  background: var(--paper-deep);
}

.model-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 500ms ease;
}

.model-card:hover .model-visual img {
  transform: scale(1.025);
}

.model-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: var(--white);
  border-radius: 4px;
  background: rgba(24, 33, 29, 0.88);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.model-content {
  padding: 28px;
}

.model-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  color: var(--green-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-kicker span:last-child {
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.model-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.model-content > p {
  min-height: 50px;
  margin: 14px 0 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.model-tags span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-soft);
  font-size: 10px;
}

.model-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.model-actions .button {
  flex: 1;
}

.model-details {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.track-controls {
  display: none;
}

.adaptation {
  background: #e8dfd1;
}

.adaptation-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 95px;
}

.adaptation-visual {
  position: relative;
  min-height: 520px;
}

.adaptation-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.adaptation-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.adaptation-one {
  top: 0;
  left: 0;
  width: 82%;
  height: 330px;
  transform: rotate(-2deg);
}

.adaptation-two {
  right: 0;
  bottom: 0;
  width: 72%;
  height: 285px;
  transform: rotate(2.5deg);
}

.adaptation-stamp {
  position: absolute;
  z-index: 3;
  bottom: 70px;
  left: 0;
  width: 135px;
  height: 135px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--white);
  border-radius: 50%;
  background: var(--coral);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-7deg);
}

.adaptation-copy h2 {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(43px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.adaptation-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 24px;
  margin: 30px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
}

.check-list svg {
  width: 16px;
  color: var(--green-light);
}

.levels {
  background: var(--white);
}

.levels-heading {
  max-width: 790px;
}

.levels-heading > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.level-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.level-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 38px 34px;
}

.level-card + .level-card {
  border-left: 1px solid var(--line);
}

.level-card-featured {
  color: var(--white);
  background: var(--green);
  transform: translateY(-14px);
  box-shadow: 0 25px 50px rgba(23, 61, 52, 0.18);
}

.recommended-label {
  position: absolute;
  top: -28px;
  right: 0;
  left: 0;
  padding: 7px;
  color: var(--green);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.level-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.level-card-featured .level-top {
  border-color: rgba(255, 255, 255, 0.2);
}

.level-index {
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
}

.level-top p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.level-top small {
  display: block;
  color: var(--ink-soft);
  font-size: 8px;
}

.level-card h3 {
  margin: 44px 0 18px;
  font-family: var(--font-display);
  font-size: 39px;
  font-weight: 500;
  line-height: 1.02;
}

.level-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.level-card-featured > p,
.level-card-featured li {
  color: #c9d9d3;
}

.level-card ul {
  display: grid;
  gap: 11px;
  margin: 30px 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  list-style: none;
}

.level-card li::before {
  margin-right: 9px;
  color: var(--coral);
  content: "—";
}

.level-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.level-card > a svg {
  width: 16px;
}

.future-note {
  margin-top: auto;
  color: var(--ink-soft);
  font-size: 12px;
  font-style: italic;
}

.process {
  color: var(--white);
  background: var(--ink);
}

.process-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  align-items: end;
  gap: 100px;
}

.process-intro > p {
  margin: 0 0 8px;
  color: #b8c1bd;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 70px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.process-list li {
  min-height: 235px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 34px 26px 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li:not(:nth-child(3n + 1)) {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list > li > span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
}

.process-list h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
}

.process-list p {
  margin: 0;
  color: #b8c1bd;
  font-size: 13px;
}

.creative-services {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 35px 70px;
  margin-top: 70px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.creative-services-intro h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.creative-services-intro > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #b8c1bd;
  font-size: 13px;
}

.creative-services-list {
  display: grid;
  gap: 12px;
}

.creative-services-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.creative-services-list article:first-child {
  padding-top: 0;
}

.creative-services-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.creative-services-list svg {
  width: 22px;
  color: var(--yellow);
}

.creative-services-list h4 {
  margin: 0 0 5px;
  font-size: 15px;
}

.creative-services-list p {
  margin: 0;
  color: #b8c1bd;
  font-size: 12px;
}

.creative-services-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #8fa09a;
  font-size: 11px;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.faq-intro > p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.text-link svg {
  width: 16px;
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary svg {
  width: 18px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.accordion details[open] summary svg {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 680px;
  margin: -5px 0 28px;
  color: var(--ink-soft);
}

.closing {
  padding: 90px 0;
  color: var(--white);
  background: var(--coral);
}

.closing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.closing-inner h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(45px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.closing-inner p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 70px 0 26px;
  color: #c9d3ce;
  background: var(--green);
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-mark {
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}

.footer-top > div > p {
  max-width: 410px;
  margin: 22px 0 0;
  color: #9fb3ab;
  font-size: 14px;
}

.footer-top nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 45px;
}

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

.footer-contacts {
  display: grid;
  gap: 10px;
}

.footer-contacts > span {
  margin-bottom: 3px;
  color: #849c92;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c9d3ce;
  font-size: 12px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-contacts a:hover {
  color: var(--white);
}

.footer-contacts svg {
  width: 15px;
  height: 15px;
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: #849c92;
  font-size: 10px;
}

.plans-hero {
  padding: 155px 0 76px;
  background: var(--paper);
}

.plans-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.45fr);
  align-items: end;
  gap: 70px;
}

.plans-hero-copy h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.plans-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.plans-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.plans-hero-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.plans-hero-panel span {
  display: block;
  margin-bottom: 13px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plans-hero-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.04;
}

.plans-hero-panel p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.pricing-section,
.included-section {
  background: var(--white);
}

.pricing-heading {
  max-width: 880px;
}

.pricing-heading > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pricing-card-featured {
  border-color: var(--green);
  box-shadow: 0 24px 55px rgba(23, 61, 52, 0.14);
  transform: translateY(-12px);
}

.plan-ribbon {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  padding: 8px;
  color: var(--green);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.pricing-card-featured .pricing-card-top {
  padding-top: 28px;
}

.pricing-card-top span {
  color: var(--green-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 13px 0 12px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card-top p {
  min-height: 64px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 24px 0 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.price-block strong {
  font-family: var(--font-display);
  font-size: 49px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.price-block span {
  color: var(--ink-soft);
  font-size: 13px;
}

.setup-list {
  display: grid;
  gap: 7px;
  margin: 0 0 24px;
}

.setup-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(24, 33, 29, 0.08);
}

.setup-list dt,
.setup-list dd {
  margin: 0;
  font-size: 11px;
}

.setup-list dt {
  color: var(--ink-soft);
}

.setup-list dd {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.setup-list dd span {
  margin-right: 7px;
  color: #98a19d;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.compare-table td span {
  margin-right: 7px;
  color: #98a19d;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}


.pricing-includes,
.feature-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-includes {
  margin-top: auto;
}

.pricing-advance {
  width: 100%;
  margin-top: 22px;
  justify-content: center;
}

.pricing-includes li,
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.pricing-includes svg,
.feature-list svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green-light);
}

.contract-section,
.plans-cta {
  color: var(--white);
  background: var(--green);
}

.contract-heading {
  max-width: 780px;
}

.contract-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.contract-grid article {
  min-height: 285px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.contract-grid article > svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}

.contract-grid h3 {
  margin: 34px 0 12px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
}

.contract-grid p {
  margin: 0 0 24px;
  color: #bed0c8;
  font-size: 13px;
}

.contract-grid strong,
.contract-grid span {
  display: block;
}

.contract-grid strong {
  color: var(--white);
  font-size: 14px;
}

.contract-grid span {
  margin-top: 6px;
  color: #bed0c8;
  font-size: 12px;
}

.contract-featured {
  color: var(--ink);
  background: var(--white);
}

.contract-featured p,
.contract-featured span {
  color: var(--ink-soft);
}

.contract-featured strong {
  color: var(--ink);
}

.compare-section {
  background: #e8dfd1;
}

.table-wrap {
  margin-top: 52px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.compare-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

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

.compare-table th:first-child,
.compare-table td:first-child {
  border-left: 0;
}

.compare-table thead th {
  color: var(--white);
  background: var(--green);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-table tbody th {
  width: 190px;
  color: var(--ink);
  background: rgba(244, 240, 232, 0.55);
  font-weight: 800;
}

.compare-table td {
  color: var(--ink-soft);
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.included-box {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.included-box h2 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.included-box-dark {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.included-box-dark .feature-list li {
  color: #c9d9d3;
}

.included-box-dark .feature-list svg {
  color: var(--yellow);
}

.extras-section {
  background: var(--paper);
}

.extras-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

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

.extras-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.extras-list span {
  color: var(--ink-soft);
  font-size: 14px;
}

.extras-list strong {
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}

.model-dialog {
  width: min(1180px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.model-dialog::backdrop {
  background: rgba(8, 17, 13, 0.77);
  backdrop-filter: blur(5px);
}

.dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  height: min(740px, calc(100vh - 40px));
  max-height: calc(100vh - 40px);
  overflow: hidden;
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  cursor: pointer;
}

.dialog-close svg {
  width: 19px;
}

.dialog-preview {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #ddd5c8;
}

.dialog-device-toolbar {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.dialog-device-toolbar > span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.dialog-device-toolbar > div {
  display: flex;
  gap: 5px;
}

.dialog-device-toolbar button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 0;
  border-radius: 4px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.dialog-device-toolbar button.is-active {
  color: var(--white);
  background: var(--green);
}

.dialog-device-toolbar svg {
  width: 14px;
}

.dialog-screen {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  flex: 1;
  overflow: hidden;
  border-radius: 5px;
  background: #c9c1b4;
}

.interactive-frame {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #c9c1b4;
}

.interactive-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(24, 33, 29, 0.22);
  overscroll-behavior: contain;
  touch-action: pan-x pan-y;
}

.interactive-frame.is-mobile .interactive-viewport {
  border: 7px solid var(--ink);
  border-radius: 24px;
}

.interactive-viewport iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
  transform-origin: top left;
}

.interactive-hint {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(24, 33, 29, 0.78);
  font-size: 9px;
  font-weight: 700;
  pointer-events: none;
  backdrop-filter: blur(5px);
}

.interactive-hint svg {
  width: 13px;
}

.dialog-content {
  max-height: calc(100vh - 40px);
  padding: 54px 42px 36px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.dialog-level {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.dialog-summary {
  margin: 20px 0 25px;
  color: var(--ink-soft);
  font-size: 14px;
}

.dialog-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-meta span,
.dialog-meta strong {
  display: block;
}

.dialog-meta span {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  text-transform: uppercase;
}

.dialog-meta strong {
  font-size: 12px;
}

.dialog-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 25px;
}

.dialog-lists h3 {
  margin: 0 0 12px;
  font-size: 12px;
}

.dialog-list-note {
  margin: -4px 0 12px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.dialog-lists ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 11px;
  list-style: none;
}

.dialog-lists li::before {
  margin-right: 6px;
  color: var(--coral);
  content: "—";
}

.dialog-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.dialog-interest {
  margin-top: 5px;
}

.project-fab {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 40px rgba(17, 38, 31, 0.25);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-fab:hover {
  box-shadow: 0 19px 50px rgba(17, 38, 31, 0.32);
  transform: translateY(-2px);
}

.project-fab svg {
  width: 18px;
}

.dialog-open .project-fab,
.project-dialog-open .project-fab {
  opacity: 0;
  pointer-events: none;
}

.project-dialog {
  width: min(1040px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.project-dialog::backdrop {
  background: rgba(8, 17, 13, 0.8);
  backdrop-filter: blur(5px);
}

.project-dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
}

.project-dialog-close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(244, 240, 232, 0.95);
  cursor: pointer;
}

.project-dialog-close svg {
  width: 18px;
}

.project-dialog-intro {
  padding: 58px 42px;
  color: var(--white);
  background: var(--green);
}

.project-dialog-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.project-dialog-intro > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #bed0c8;
  font-size: 13px;
}

.project-dialog-assurance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #bed0c8;
  font-size: 11px;
}

.project-dialog-assurance svg {
  width: 18px;
  flex: 0 0 auto;
  color: var(--yellow);
}

.project-form {
  max-height: calc(100vh - 40px);
  padding: 56px 42px 40px;
  overflow-y: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span,
.form-choice-group legend {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 13px;
}

.form-field select {
  padding-right: 38px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 50%,
    calc(100% - 12px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.form-field textarea {
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #89928e;
}

.project-form.was-validated .form-field input:invalid,
.project-form.was-validated .form-field select:invalid,
.project-form.was-validated .form-field textarea:invalid {
  border-color: #b44836;
  box-shadow: 0 0 0 2px rgba(180, 72, 54, 0.1);
}

.project-form.was-validated .form-field input:valid:not(:placeholder-shown),
.project-form.was-validated .form-field select:valid,
.project-form.was-validated .form-field textarea:valid:not(:placeholder-shown) {
  border-color: rgba(23, 61, 52, 0.42);
}

.form-choice-group {
  margin: 26px 0 0;
  padding: 0;
  border: 0;
}

.form-choice-group legend {
  margin-bottom: 10px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.choice-grid-compact {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid label {
  position: relative;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.3;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.choice-grid input:checked + span {
  border-color: var(--green);
  color: var(--green);
  background: rgba(23, 61, 52, 0.07);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 22px 0 16px;
  color: var(--ink-soft);
  font-size: 11px;
}

.form-consent input {
  margin-top: 3px;
  accent-color: var(--green);
}

.project-submit {
  width: 100%;
}

.form-submit-note {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  text-align: center;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
  }

  .hero-showcase {
    transform: scale(0.88);
    transform-origin: right center;
  }

  .concept-grid,
  .adaptation-grid {
    gap: 55px;
  }

  .service-flow article {
    padding-inline: 22px;
  }

  .faq-grid {
    gap: 60px;
  }

  .dialog-shell {
    grid-template-columns: 1fr 0.85fr;
  }

  .dialog-content {
    padding-inline: 28px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .section {
    padding: 84px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.nav-cta) {
    display: block;
  }

  .site-nav a,
  .site-nav button {
    padding: 12px 10px;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding: 125px 0 42px;
  }

  .hero::after {
    top: 45%;
    right: -8%;
    bottom: auto;
    width: 100%;
    height: 58%;
    background-position: center top;
    filter: blur(6px) saturate(0.75);
    opacity: 0.14;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 100%);
  }

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

  .hero h1 {
    font-size: clamp(56px, 14vw, 76px);
  }

  .hero-showcase {
    width: 620px;
    min-height: 485px;
    margin: 10px auto 0;
    transform: scale(0.92);
    transform-origin: center;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .hero-proof div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-proof div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .concept-grid,
  .gallery-heading,
  .adaptation-grid,
  .plans-hero-grid,
  .extras-grid,
  .process-intro,
  .faq-grid,
  .closing-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .concept-copy {
    padding-top: 0;
  }

  .service-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-flow article {
    min-height: 230px;
  }

  .service-flow .flow-featured {
    transform: none;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .model-track {
    grid-template-columns: repeat(4, minmax(78vw, 1fr));
    gap: 16px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .model-track::-webkit-scrollbar {
    display: none;
  }

  .model-card {
    scroll-snap-align: start;
  }

  .track-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    color: #bdcfc7;
    font-size: 10px;
    text-transform: uppercase;
  }

  .track-controls button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
  }

  .track-controls svg {
    width: 16px;
  }

  .adaptation-visual {
    order: 2;
  }

  .level-comparison {
    grid-template-columns: 1fr;
  }

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

  .pricing-card-featured {
    transform: none;
  }

  .contract-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .plans-hero-panel {
    max-width: 560px;
  }

  .level-card + .level-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .level-card-featured {
    transform: none;
  }

  .recommended-label {
    position: static;
    margin: -38px -34px 30px;
  }

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

  .process-list li:nth-child(n) {
    padding: 28px 22px;
    border-right: 0;
    border-left: 0;
  }

  .process-list li:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .creative-services {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-intro {
    position: static;
  }

  .closing-inner .button {
    justify-self: start;
  }

  .dialog-shell {
    height: calc(100vh - 40px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 54vh) minmax(0, 1fr);
  }

  .dialog-preview {
    min-height: 0;
    height: auto;
  }

  .dialog-content {
    min-height: 0;
    max-height: none;
    overflow-y: auto;
  }

  .project-dialog-shell {
    display: block;
  }

  .project-dialog-intro {
    padding: 48px 42px 36px;
  }

  .project-dialog-assurance {
    margin-top: 24px;
  }

  .project-form {
    max-height: none;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 28px), 362px);
    margin-right: auto;
    margin-left: 14px;
  }

  .section {
    padding: 70px 0;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding-top: 112px;
  }

  .plans-hero {
    padding: 118px 0 58px;
  }

  .plans-hero-copy h1 {
    font-size: 52px;
    line-height: 0.96;
  }

  .plans-hero-copy,
  .plans-hero-panel,
  .pricing-heading,
  .contract-heading,
  .included-box,
  .extras-grid {
    min-width: 0;
  }

  .plans-hero-copy h1,
  .plans-hero-copy p,
  .plans-hero-panel strong,
  .plans-hero-panel p,
  .pricing-heading h2,
  .pricing-heading p,
  .included-box h2,
  .extras-grid h2 {
    overflow-wrap: anywhere;
  }

  .plans-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .plans-hero-actions .button {
    width: 100%;
  }

  .plans-hero-panel,
  .included-box {
    padding: 26px 22px;
  }

  .plans-hero-panel strong {
    font-size: 27px;
  }

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

  .pricing-card h3 {
    font-size: 32px;
  }

  .pricing-card-top p {
    min-height: 0;
  }

  .price-block strong {
    font-size: 46px;
  }

  .contract-grid article {
    min-height: 0;
    padding: 28px 22px;
  }

  .contract-grid h3 {
    margin-top: 24px;
    font-size: 34px;
  }

  .table-wrap {
    margin-right: -14px;
    border-right: 0;
    border-radius: var(--radius) 0 0 var(--radius);
  }

  .included-box h2 {
    font-size: 38px;
  }

  .extras-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero::after {
    top: 48%;
    right: -18%;
    width: 118%;
    height: 52%;
    opacity: 0.1;
  }

  .hero h1 {
    font-size: 53px;
    line-height: 0.94;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button-quiet {
    border: 1px solid var(--line);
    border-radius: 5px;
  }

  .hero-showcase {
    width: min(400px, 100%);
    min-height: 385px;
    margin-left: 50%;
    transform: translateX(-50%) scale(0.75);
    transform-origin: center top;
  }

  .preview-card-main {
    right: 10px;
    width: 420px;
  }

  .preview-card-main img {
    height: 275px;
  }

  .preview-card-side {
    width: 115px;
  }

  .preview-card-side img {
    height: 245px;
  }

  .showcase-label {
    right: 120px;
  }

  .hero-proof {
    margin-top: -55px;
  }

  .hero-proof div {
    min-height: 65px;
    flex-direction: column;
    gap: 5px;
    font-size: 10px;
  }

  .section-heading h2,
  .adaptation-copy h2 {
    font-size: 43px;
  }

  .service-flow article {
    min-height: 210px;
  }

  .gallery-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .filter-group {
    width: 100%;
  }

  .filter-button {
    flex: 1;
  }

  .model-track {
    grid-template-columns: repeat(4, minmax(88vw, 1fr));
  }

  .model-visual {
    height: 260px;
  }

  .model-content {
    padding: 22px;
  }

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

  .adaptation-visual {
    min-height: 410px;
  }

  .adaptation-one {
    height: 260px;
  }

  .adaptation-two {
    height: 230px;
  }

  .adaptation-stamp {
    bottom: 50px;
    width: 110px;
    height: 110px;
    font-size: 15px;
  }

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

  .level-card {
    min-height: 0;
  }

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

  .process-list li:nth-child(n) {
    min-height: 0;
    border-left: 0;
  }

  .creative-services {
    margin-top: 50px;
    padding: 28px 22px;
  }

  .creative-services-intro h3 {
    font-size: 30px;
  }

  .faq-intro h2 {
    font-size: 43px;
  }

  .closing {
    padding: 70px 0;
  }

  .closing-inner h2 {
    font-size: 44px;
  }

  .closing-inner .button {
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    gap: 8px;
  }

  .model-dialog {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .dialog-shell {
    height: 100vh;
    max-height: 100vh;
    grid-template-rows: minmax(310px, 46vh) minmax(0, 1fr);
  }

  .dialog-preview {
    min-height: 0;
    padding: 14px;
  }

  .dialog-device-toolbar {
    padding-right: 45px;
  }

  .dialog-device-toolbar > span {
    display: none;
  }

  .dialog-content {
    padding: 34px 22px 28px;
  }

  .dialog-content h2 {
    font-size: 39px;
  }

  .dialog-meta,
  .dialog-lists {
    grid-template-columns: 1fr;
  }

  .project-fab {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 0;
  }

  .project-fab span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .project-dialog {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .project-dialog-intro {
    padding: 48px 22px 30px;
  }

  .project-dialog-intro h2 {
    max-width: 310px;
    font-size: 38px;
  }

  .project-form {
    padding: 32px 20px 40px;
  }

  .form-grid,
  .choice-grid,
  .choice-grid-compact {
    grid-template-columns: 1fr;
  }
}

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