:root {
  color-scheme: dark;
  --bg: #04070c;
  --panel: rgba(12, 17, 25, 0.72);
  --panel-strong: rgba(18, 25, 36, 0.88);
  --line: rgba(214, 235, 255, 0.13);
  --text: #f5f7fb;
  --muted: #a3adba;
  --soft: #687384;
  --cyan: #7de8ff;
  --mint: #78f4dd;
  --steel: #9fb2c9;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  font-family: "Instrument Sans", Manrope, "Segoe UI Variable", Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    #05070b;
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(22px, 5vw, 68px);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 13, 0.7);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(104, 232, 255, 0.34);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(104, 232, 255, 0.18), rgba(92, 240, 187, 0.08));
  box-shadow: 0 0 34px rgba(104, 232, 255, 0.2);
  color: #ffffff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  margin-top: 5px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c9d1dc;
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-product-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.nav-product-link img {
  width: 92px;
  height: auto;
  display: block;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px clamp(22px, 6vw, 82px) 82px;
}

.portal-hero {
  min-height: 92vh;
  padding-bottom: 64px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 7, 12, 0.98) 0%, rgba(4, 7, 12, 0.9) 40%, rgba(4, 7, 12, 0.35) 74%, rgba(4, 7, 12, 0.84) 100%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.46), rgba(4, 7, 12, 0.96));
}

.hero-shell {
  position: relative;
  display: grid;
  width: min(100%, 1240px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: center;
}

.hero-content {
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-family: "Instrument Sans", Manrope, "Segoe UI Variable", sans-serif;
  font-size: clamp(58px, 6rem, 96px);
  line-height: 0.92;
  font-weight: 760;
}

.hero-copy {
  max-width: 650px;
  color: #cbd5e2;
  font-size: clamp(17px, 1.25rem, 20px);
  line-height: 1.72;
  font-weight: 500;
}

.portal-hero .hero-copy {
  max-width: 610px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust span {
  border: 1px solid rgba(214, 235, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 8px 11px;
  color: #cbd7e6;
  font-size: 12px;
  font-weight: 750;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #f8fffd 0%, #c8fff5 50%, #88eaff 100%);
  color: #041014;
  box-shadow: 0 18px 42px rgba(120, 244, 221, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f7fbff;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}

.hero-visual::before {
  position: absolute;
  inset: 8% 0 auto 10%;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(104, 232, 255, 0.12);
  border-radius: 28px;
  transform: rotate(8deg);
  background: linear-gradient(135deg, rgba(104, 232, 255, 0.08), rgba(92, 240, 187, 0.02));
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.32));
}

.hero-visual::after {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 280px;
  height: 280px;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(120, 244, 221, 0.24), rgba(125, 232, 255, 0.08) 38%, transparent 68%);
  filter: blur(16px);
  opacity: 0.72;
}

.visual-card {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(214, 235, 255, 0.15);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(6, 11, 18, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(22px) saturate(1.35);
}

.visual-card::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%, rgba(120, 244, 221, 0.08));
  pointer-events: none;
}

.visual-card span {
  display: block;
  color: #9fb0c2;
  font-size: 12px;
  font-weight: 700;
}

.visual-card strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.visual-card-main {
  top: 36px;
  right: 0;
  width: min(440px, 100%);
  padding: 28px;
  transform: rotateY(-9deg) rotateX(4deg);
}

.visual-bars {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.visual-bars i {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.11);
}

.visual-bars i:nth-child(1) {
  width: 82%;
  background: linear-gradient(90deg, rgba(104, 232, 255, 0.95), rgba(92, 240, 187, 0.3));
}

.visual-bars i:nth-child(2) {
  width: 58%;
}

.visual-bars i:nth-child(3) {
  width: 72%;
}

.visual-card-small {
  left: 4%;
  top: 250px;
  width: 245px;
  padding: 22px;
  transform: rotateY(10deg) rotateX(-2deg);
}

.mini-product-logo,
.product-logo,
.cta-product-logo {
  display: block;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.mini-product-logo {
  width: min(180px, 100%);
  margin-top: 14px;
  padding: 10px 12px;
}

.visual-card-small::after {
  display: block;
  width: 68px;
  height: 68px;
  margin-top: 18px;
  content: "";
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.7) 46% 54%, transparent 55%),
    linear-gradient(180deg, transparent 45%, rgba(255, 255, 255, 0.7) 46% 54%, transparent 55%),
    linear-gradient(135deg, #112533, #78f4dd);
  box-shadow: 0 16px 40px rgba(120, 244, 221, 0.18);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 22px;
  width: min(390px, calc(100vw - 40px));
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(5, 9, 15, 0.74);
  box-shadow: var(--shadow);
  padding: 22px;
  backdrop-filter: blur(22px) saturate(1.35);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  color: #ffffff;
  font-size: 21px;
}

.portal-visual {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: center;
}

.portal-visual::before {
  position: absolute;
  inset: -48px -24px;
  content: "";
  border: 1px solid rgba(120, 244, 221, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 30%, rgba(120, 244, 221, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.018);
  transform: rotate(3deg);
}

.portal-status-card,
.portal-product-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(214, 235, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.034)),
    rgba(7, 12, 19, 0.84);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  padding: 26px;
  backdrop-filter: blur(22px) saturate(1.25);
}

.portal-product-card {
  display: block;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.portal-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 92, 62, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 72, 42, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.038)),
    rgba(7, 12, 19, 0.9);
}

.portal-status-card {
  width: min(440px, 100%);
  margin-left: auto;
}

.portal-product-card {
  width: min(330px, 100%);
  margin-left: 7%;
}

.portal-status-card span,
.portal-product-card span {
  display: block;
  color: #9fb0c2;
  font-size: 12px;
  font-weight: 800;
}

.portal-status-card strong {
  display: block;
  margin: 10px 0;
  font-size: 26px;
}

.portal-status-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.portal-product-card img {
  width: min(230px, 100%);
  margin: 14px 0 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 14px;
}

.portal-product-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 850;
}

.portal-product-card strong::after {
  content: "→";
  font-size: 16px;
}

.section {
  padding: 110px clamp(20px, 6vw, 88px);
  scroll-margin-top: 96px;
}

.page-main {
  padding-top: 86px;
}

.page-hero {
  padding: 112px clamp(20px, 6vw, 88px) 62px;
}

.page-hero h1,
.page-cloud h1,
.product-copy h1,
.contact-section h1 {
  max-width: 930px;
  margin: 0 0 22px;
  font-size: clamp(44px, 5rem, 80px);
  line-height: 0.98;
  font-weight: 760;
}

.page-hero p,
.page-cloud .cloud-copy > p,
.product-copy > p,
.contact-section .contact-copy > p {
  max-width: 760px;
  color: #c3cedc;
  font-size: 18px;
  line-height: 1.72;
}

.page-panel {
  scroll-margin-top: 96px;
}

.portal-section {
  padding-top: 82px;
  padding-bottom: 88px;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.portal-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.076), rgba(255, 255, 255, 0.026)),
    rgba(9, 14, 22, 0.86);
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.portal-card::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  content: "Ver panel";
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
}

.portal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 244, 221, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.034)),
    rgba(13, 20, 30, 0.92);
}

.portal-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.portal-card strong {
  display: block;
  margin: 28px 0 12px;
  font-size: 25px;
  line-height: 1.08;
}

.portal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.portal-card-accent {
  border-color: rgba(120, 244, 221, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 64, 39, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(104, 232, 255, 0.13), rgba(92, 240, 187, 0.06)),
    rgba(9, 14, 22, 0.9);
}

.home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 6vw, 88px) 82px;
  border: 1px solid rgba(120, 244, 221, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 20%, rgba(120, 244, 221, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 12, 18, 0.9);
  padding: clamp(24px, 4vw, 42px);
}

.home-cta h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(32px, 3.5rem, 56px);
  line-height: 1.02;
}

.page-cloud {
  min-height: calc(100vh - 86px);
  padding-top: 92px;
}

.page-contact {
  min-height: calc(100vh - 86px);
  border-top: 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 44px;
}

.section-heading h2,
.product-copy h2,
.contact-section h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.25rem, 68px);
  line-height: 1.02;
  font-weight: 720;
}

.section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
}

.section-heading.split > p,
.contact-section p,
.product-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.intro-grid article {
  min-height: 260px;
  background: rgba(8, 12, 18, 0.94);
  padding: 32px;
}

.metric,
.service-card span,
.process-list span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-grid h3,
.service-card h3 {
  margin: 28px 0 14px;
  font-size: 24px;
}

.intro-grid p,
.service-card p,
.process-list p {
  color: var(--muted);
  line-height: 1.65;
}

.services-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 86px clamp(20px, 6vw, 88px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(120, 244, 221, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.012);
  scroll-margin-top: 96px;
}

.trust-copy {
  max-width: 620px;
}

.trust-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 3.75rem, 60px);
  line-height: 1.02;
}

.trust-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(214, 235, 255, 0.13);
  border-radius: 12px;
  background: rgba(214, 235, 255, 0.12);
}

.trust-grid article {
  min-height: 235px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(7, 11, 17, 0.82);
  padding: 24px;
}

.trust-grid span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
}

.trust-grid strong {
  display: block;
  margin-top: 24px;
  color: #ffffff;
  font-size: 20px;
}

.trust-grid p {
  margin: 12px 0 0;
  color: #9facbd;
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 284px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 17, 25, 0.66);
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(104, 232, 255, 0.34);
  background: rgba(16, 23, 35, 0.88);
}

.service-card-accent {
  background:
    linear-gradient(135deg, rgba(104, 232, 255, 0.14), rgba(92, 240, 187, 0.09)),
    rgba(12, 17, 25, 0.8);
}

.comanda-cta-section {
  padding: 0 clamp(20px, 6vw, 88px) 92px;
}

.comanda-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(120, 244, 221, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 20%, rgba(120, 244, 221, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 12, 18, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  padding: clamp(24px, 4vw, 42px);
}

.comanda-cta-card h2 {
  max-width: 800px;
  margin: 16px 0;
  font-size: clamp(32px, 3.25rem, 52px);
  line-height: 1.04;
}

.cta-product-logo {
  width: min(320px, 100%);
  padding: 12px 16px;
}

.comanda-cta-card p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.comanda-cta-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cloud-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  padding: 110px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(92, 240, 187, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.cloud-copy {
  max-width: 680px;
}

.cloud-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4.125rem, 66px);
  line-height: 1;
}

.cloud-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.cloud-offer-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 24px;
}

.cloud-offer-list span {
  position: relative;
  border: 1px solid rgba(214, 235, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px 14px 12px 40px;
  color: #d7e4f2;
  font-size: 14px;
  font-weight: 760;
}

.cloud-offer-list span::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  box-shadow: 0 0 18px rgba(120, 244, 221, 0.36);
  transform: translateY(-50%);
}

.cloud-architecture {
  position: relative;
  display: grid;
  gap: 24px;
  min-height: 520px;
  align-content: center;
  border: 1px solid rgba(214, 235, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(120, 244, 221, 0.12), transparent 36%),
    rgba(8, 12, 18, 0.8);
  background-size: 42px 42px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
}

.marketing-cloud {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 12px;
  min-height: auto;
  padding: clamp(18px, 3vw, 30px);
}

.marketing-cloud::before {
  inset: 10%;
  border-radius: 32px;
}

.marketing-cloud::after {
  inset: 18%;
  border-radius: 30px;
}

.cloud-benefit {
  position: relative;
  z-index: 1;
  min-height: 185px;
  border: 1px solid rgba(214, 235, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026)),
    rgba(7, 11, 17, 0.82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  padding: 22px;
  backdrop-filter: blur(18px) saturate(1.2);
}

.cloud-benefit::before {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  content: "";
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(125, 232, 255, 0.95), rgba(120, 244, 221, 0.25)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(120, 244, 221, 0.18);
}

.cloud-benefit-main {
  border-color: rgba(120, 244, 221, 0.28);
  background:
    radial-gradient(circle at 90% 0%, rgba(120, 244, 221, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(7, 11, 17, 0.88);
}

.cloud-benefit-wide {
  grid-column: 1 / -1;
  min-height: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
}

.cloud-benefit-wide::before {
  grid-row: span 3;
  margin-bottom: 0;
}

.cloud-benefit span {
  display: block;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
}

.cloud-benefit strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}

.cloud-benefit p {
  margin: 12px 0 0;
  color: #9facbd;
  font-size: 14px;
  line-height: 1.55;
}

.cloud-architecture::before {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px solid rgba(104, 232, 255, 0.2);
  border-radius: 50%;
  filter: blur(0.2px);
}

.cloud-architecture::after {
  position: absolute;
  inset: 22%;
  content: "";
  border: 1px dashed rgba(125, 232, 255, 0.2);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.aws-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.aws-node {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(214, 235, 255, 0.15);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 11, 17, 0.78);
  padding: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.aws-node::before {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  content: "";
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(125, 232, 255, 0.95), rgba(120, 244, 221, 0.22)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(120, 244, 221, 0.18);
}

.aws-node.primary {
  width: min(310px, 100%);
  margin-inline: auto;
  border-color: rgba(92, 240, 187, 0.34);
  background: rgba(7, 16, 18, 0.82);
}

.aws-node.secure {
  width: min(360px, 100%);
  margin-inline: auto;
  border-color: rgba(104, 232, 255, 0.28);
}

.aws-node span {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.aws-node strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
}

.aws-line {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 52px;
  margin-inline: auto;
  background: linear-gradient(180deg, var(--mint), rgba(104, 232, 255, 0.14));
  box-shadow: 0 0 22px rgba(120, 244, 221, 0.4);
}

.product-section {
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: 82px clamp(20px, 6vw, 88px);
  scroll-margin-top: 96px;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 42%, rgba(120, 244, 221, 0.16), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(125, 232, 255, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(8, 12, 18, 0.96), rgba(5, 7, 11, 0.98));
}

.product-copy {
  max-width: 560px;
}

.product-logo {
  width: min(360px, 100%);
  margin-bottom: 22px;
  padding: 14px 18px;
}

.product-copy .button {
  margin-top: 20px;
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.product-points span {
  border: 1px solid rgba(214, 235, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 8px 11px;
  color: #d6e2ef;
  font-size: 12px;
  font-weight: 800;
}

.product-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(214, 235, 255, 0.12);
  border-radius: 12px;
  background: rgba(214, 235, 255, 0.12);
}

.product-proof article {
  min-height: 96px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(7, 11, 17, 0.78);
  padding: 16px;
}

.product-proof strong,
.product-proof span {
  display: block;
}

.product-proof strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
}

.product-proof span {
  margin-top: 8px;
  color: #9facbd;
  font-size: 12px;
  line-height: 1.35;
}

.product-actions {
  margin-top: 20px;
}

.product-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.product-visual::before {
  position: absolute;
  inset: 7% 8% 9% 18%;
  content: "";
  border: 1px solid rgba(120, 244, 221, 0.12);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(120, 244, 221, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.025);
  transform: rotate(4deg);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.28);
}

.product-visual::after {
  position: absolute;
  left: 12%;
  bottom: 9%;
  width: 160px;
  height: 160px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 45, 103, 0.18), rgba(120, 244, 221, 0.08), transparent 68%);
  filter: blur(12px);
}

.phone-frame {
  width: min(330px, 75vw);
  min-height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.5);
  padding: 14px;
}

.comanda-phone {
  width: min(330px, 74vw);
  min-height: 585px;
  border-color: rgba(120, 244, 221, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(7, 12, 19, 0.92);
  position: relative;
  z-index: 2;
  transform: rotateY(-9deg) rotateX(3deg) rotateZ(0.5deg);
  box-shadow:
    0 56px 130px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(120, 244, 221, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.phone-top {
  width: 86px;
  height: 6px;
  margin: 2px auto 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.menu-preview {
  min-height: 550px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.15), rgba(7, 12, 18, 0.72)),
    linear-gradient(135deg, #111927, #060910);
  padding: 28px;
}

.comanda-screen {
  min-height: 530px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 67, 116, 0.12), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(125, 232, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #fffafb 0%, #fff4f7 44%, #f7fbff 100%);
  color: #111827;
  padding: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.06),
    inset 0 -80px 120px rgba(255, 255, 255, 0.7);
}

.order-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-status > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-pill,
.order-id,
.status-copy span,
.food-info small {
  text-transform: uppercase;
}

.live-pill {
  border-radius: 999px;
  background: #e9f8ef;
  padding: 7px 10px;
  color: #129464;
  font-size: 11px;
  font-weight: 900;
}

.order-id {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}

.order-status a {
  border-radius: 999px;
  background: #111827;
  padding: 8px 11px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.progress-card {
  margin-top: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 13px;
}

.status-copy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-copy span {
  border-radius: 999px;
  background: #dff6ff;
  padding: 6px 10px;
  color: #067399;
  font-size: 11px;
  font-weight: 900;
}

.status-copy strong {
  font-size: 16px;
}

.progress-card h3,
.menu-heading h3,
.food-info h4 {
  margin: 8px 0 4px;
  color: #111827;
}

.progress-card p,
.menu-heading p,
.food-info p {
  margin-bottom: 0;
  color: #667085;
  line-height: 1.4;
}

.progress-card p {
  font-size: 13px;
}

.progress-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
}

.progress-line::before {
  position: absolute;
  top: 12px;
  left: 7%;
  right: 7%;
  height: 3px;
  content: "";
  background: #d9e0ea;
}

.progress-line i {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  justify-self: center;
  border: 4px solid #d9e0ea;
  border-radius: 50%;
  background: #ffffff;
}

.progress-line i.done {
  border-color: #f22d67;
  background: #f22d67;
}

.progress-line i.active {
  border-color: #bfefff;
  background: #0795df;
  box-shadow: 0 0 0 7px rgba(7, 149, 223, 0.12);
}

.category-row {
  display: flex;
  gap: 10px;
  margin: 14px -14px 0;
  overflow: hidden;
  padding: 0 14px 4px;
}

.category-row span {
  flex: 0 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  padding: 8px 11px;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
}

.category-row .is-active {
  border-color: rgba(242, 45, 103, 0.22);
  background: #fff0f5;
}

.menu-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.category-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 64%, #7a351f 0 18%, transparent 19%),
    linear-gradient(#f4a641 0 28%, #7b2f1e 29% 46%, #f6c14a 47% 64%, #8c3b22 65% 80%, #f0b456 81%);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.46);
}

.food-card {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid rgba(242, 45, 103, 0.14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.food-card button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: #22d86e;
  color: #ffffff;
  font-size: 29px;
  line-height: 1;
  box-shadow: 0 16px 28px rgba(34, 216, 110, 0.26);
}

.food-photo {
  height: 146px;
  background-size: cover;
  background-position: center;
}

.burger-photo {
  background:
    radial-gradient(ellipse at 50% 30%, #c87530 0 24%, transparent 25%),
    radial-gradient(ellipse at 49% 42%, #f8c34f 0 18%, transparent 19%),
    radial-gradient(ellipse at 49% 50%, #622615 0 23%, transparent 24%),
    radial-gradient(ellipse at 31% 58%, #f2f5f7 0 15%, transparent 16%),
    radial-gradient(ellipse at 52% 69%, #d99a43 0 22%, transparent 23%),
    radial-gradient(circle at 20% 76%, rgba(255, 255, 255, 0.7), transparent 11%),
    radial-gradient(circle at 82% 30%, #a91f28, transparent 9%),
    linear-gradient(135deg, #1c1f28, #343845 52%, #111827);
}

.water-photo {
  height: 112px;
  background:
    linear-gradient(90deg, transparent 35%, rgba(255, 255, 255, 0.7) 38% 42%, transparent 44%),
    linear-gradient(180deg, transparent 8%, #d9f5ff 9% 90%, transparent 91%),
    linear-gradient(90deg, transparent 37%, #0f59b7 38% 62%, transparent 63%),
    linear-gradient(135deg, #e8eef5, #aab7c5);
}

.food-info {
  padding: 15px;
}

.food-info > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.food-info strong {
  color: #111827;
  font-size: 22px;
  font-weight: 900;
}

.food-info span {
  color: #8a93a3;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.food-info h4 {
  font-size: 18px;
}

.food-info p {
  font-size: 13px;
}

.food-info small {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 999px;
  background: #f4f5f7;
  padding: 8px 11px;
  color: #475467;
  font-size: 11px;
  font-weight: 900;
}

.menu-preview > span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.menu-preview h3 {
  margin: 12px 0 26px;
  font-size: 38px;
}

.menu-line {
  width: 62%;
  height: 10px;
  margin-bottom: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-line.wide {
  width: 86%;
}

.menu-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 14px;
}

.menu-item > span {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
}

.menu-item strong,
.menu-item small {
  display: block;
}

.menu-item small {
  margin-top: 4px;
  color: var(--muted);
}

.signal-card {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 8%;
  width: min(255px, 54vw);
  border: 1px solid rgba(120, 244, 221, 0.23);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    rgba(7, 11, 17, 0.84);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  padding: 17px;
  backdrop-filter: blur(22px) saturate(1.3);
}

.signal-card span,
.signal-card small {
  display: block;
  color: var(--muted);
}

.signal-card strong {
  display: block;
  margin: 7px 0;
  font-size: 19px;
}

.process-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(8, 12, 18, 0.94);
  padding: 26px 30px;
}

.process-list p {
  margin-bottom: 0;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  gap: 60px;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 88px);
  scroll-margin-top: 96px;
  border-top: 1px solid rgba(214, 235, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #060a11 0%, #0a111a 46%, #04070c 100%);
  background-size: 56px 56px, 56px 56px, auto;
  color: #f8fbff;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(92, 240, 187, 0.13), transparent 34%),
    linear-gradient(290deg, rgba(104, 232, 255, 0.11), transparent 38%);
  pointer-events: none;
}

.contact-copy,
.contact-card {
  position: relative;
  z-index: 1;
}

.contact-section .eyebrow {
  color: #77ffe5;
}

.contact-section h2 {
  max-width: 830px;
  font-size: clamp(44px, 5.125rem, 82px);
  line-height: 0.98;
  font-weight: 720;
}

.contact-section p {
  max-width: 760px;
  color: #c3cedc;
  font-size: 18px;
  line-height: 1.72;
}

.legal-note {
  border-left: 2px solid rgba(120, 244, 221, 0.55);
  margin-top: 22px;
  padding-left: 16px;
  color: #d9e5f2 !important;
  font-size: 15px !important;
}

.conversion-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.conversion-strip span {
  border: 1px solid rgba(214, 235, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 9px 13px;
  color: #d7e1ee;
  font-size: 13px;
  font-weight: 760;
}

.contact-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(214, 235, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(7, 12, 19, 0.82);
  padding: 30px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  color: #f8fbff;
  backdrop-filter: blur(22px) saturate(1.25);
}

.contact-graph {
  display: grid;
  height: 88px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
  border-bottom: 1px solid rgba(214, 235, 255, 0.1);
  padding-bottom: 16px;
}

.contact-graph span {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(126, 242, 255, 0.92), rgba(92, 240, 187, 0.28));
  box-shadow: 0 14px 34px rgba(92, 240, 187, 0.16);
}

.contact-graph span:nth-child(1) {
  height: 38%;
}

.contact-graph span:nth-child(2) {
  height: 68%;
}

.contact-graph span:nth-child(3) {
  height: 100%;
}

.contact-label {
  width: fit-content;
  border-radius: 999px;
  background: rgba(92, 240, 187, 0.1);
  padding: 7px 10px;
  color: #9bfff0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 760;
}

.contact-card .contact-button {
  width: fit-content;
  margin-top: 8px;
  color: #041014;
  font-size: 15px;
}

.contact-card span {
  color: #aeb9c8;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 12, 18, 0.96);
    padding: 10px;
  }

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

  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #ffffff;
  }

  .section-heading.split,
  .hero-shell,
  .home-cta,
  .trust-section,
  .cloud-section,
  .product-section,
  .comanda-cta-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .product-section {
    gap: 26px;
  }

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

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

  .marketing-cloud {
    grid-template-columns: 1fr;
  }

  .cloud-benefit-wide {
    grid-template-columns: 1fr;
  }

  .cloud-benefit-wide::before {
    grid-row: auto;
    margin-bottom: 20px;
  }

  .trust-grid article {
    min-height: auto;
  }

  .comanda-cta-actions {
    justify-content: flex-start;
  }

  .product-visual::before {
    inset: 6% 8%;
  }

  .comanda-phone {
    transform: none;
    width: min(330px, 86vw);
  }

  .intro-grid,
  .services-grid,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .portal-status-card,
  .portal-product-card {
    width: 100%;
    margin-left: 0;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 52px;
  }

  .hero-visual {
    display: grid;
    min-height: auto;
    gap: 14px;
  }

  .hero-visual::before,
  .visual-card,
  .hero-panel {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .hero-visual::before {
    display: none;
  }

  .visual-card-main {
    right: auto;
    left: auto;
  }

  .visual-card-small {
    left: auto;
    right: 0;
  }

  .hero-panel {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .hero {
    min-height: auto;
    padding: 116px 20px 64px;
  }

  .portal-hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 11, 0.98), rgba(5, 7, 11, 0.84)),
      linear-gradient(180deg, rgba(5, 7, 11, 0.5), rgba(5, 7, 11, 0.96));
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(52px, 4.75rem, 76px);
  }

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

  .button {
    width: 100%;
  }

  .hero-visual::before,
  .visual-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
  }

  .visual-card-main,
  .visual-card-small,
  .hero-panel {
    width: 100%;
    margin: 0;
  }

  .section,
  .page-hero,
  .trust-section,
  .comanda-cta-section,
  .product-section,
  .contact-section {
    padding: 58px 20px;
  }

  .page-main {
    padding-top: 72px;
  }

  .page-hero h1,
  .page-cloud h1,
  .product-copy h1,
  .contact-section h1 {
    font-size: clamp(40px, 3.75rem, 60px);
  }

  .home-cta {
    align-items: stretch;
    flex-direction: column;
    margin: 0 20px 58px;
  }

  .comanda-cta-card {
    padding: 24px;
  }

  .intro-grid article,
  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .product-visual {
    min-height: auto;
    place-items: start center;
  }

  .product-visual::before,
  .product-visual::after {
    display: none;
  }

  .phone-frame {
    min-height: 520px;
  }

  .menu-preview {
    min-height: 500px;
  }

  .signal-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -10px;
  }

  .product-proof article {
    min-height: auto;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .aws-stack {
    grid-template-columns: 1fr;
  }
}
