:root {
  --ink: #0c1e18;
  --paper: #f5f0e6;
  --white: #ffffff;
  --soft: #d4f5e0;
  --orange: #e6ff55;
  --orange-deep: #005236;
  --blue: #005236;
  --lime: #e6ff55;
  --cyan: #d4f5e0;
  --peach: #f7c9ba;
  --muted: rgba(12, 30, 24, 0.64);
  --line: rgba(12, 30, 24, 0.16);
  --max: 1304px;
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
}
img,
video {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}
.muted {
  color: var(--muted);
}
.display {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.062em;
  line-height: 0.92;
}
.display em {
  font-style: normal;
  color: var(--orange);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  transition: 0.3s;
  color: var(--ink);
}
.site-header.scrolled {
  background: rgba(247, 250, 249, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brandmark {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--ink);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brandmark-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.brandmark-svg .mark-a,
.brandmark-svg .mark-tip {
  fill: currentColor;
}
.brandmark-svg .mark-d {
  fill: var(--orange);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brand:hover .brandmark {
  transform: translateY(-2px) rotate(-2deg);
}
.brand:hover .mark-d {
  transform: translateX(3px);
}
.brandtext strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.13em;
}
.brandtext small {
  display: block;
  margin-top: 3px;
  font-size: 0.57rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #718295;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 700;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--orange);
  transition: 0.25s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  padding: 14px 20px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    background 0.22s,
    color 0.22s,
    transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-cta,
.btn-primary {
  background: var(--orange);
  color: #111;
}
.nav-cta:hover,
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  font-size: 1.15rem;
  color: var(--ink);
}

/* HOME HERO */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 72px;
  background: var(--paper);
  overflow: hidden;
}
.hero::before {
  content: "AURA";
  position: absolute;
  left: -0.03em;
  bottom: -0.13em;
  font-size: clamp(13rem, 30vw, 32rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  color: rgba(17, 17, 17, 0.025);
  line-height: 0.72;
  pointer-events: none;
}
.hero-media {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  width: 45.5%;
  height: 100%;
  overflow: hidden;
  background: #dddbcb;
}
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video {
  z-index: 1;
}
.hero-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(243, 241, 235, 0.3), transparent 22%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.12), transparent 35%);
  pointer-events: none;
}

/* 2026 TECH REFRESH · PORTFOLIO + AURAMENU */
.site-header.scrolled {
  background: rgba(245, 247, 251, 0.9);
}
.nav-cta,
.btn-primary {
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.16);
}
.nav-cta:hover,
.btn-primary:hover {
  background: #050505;
}
.hero {
  background:
    radial-gradient(
      circle at 18% 15%,
      rgba(34, 211, 238, 0.08),
      transparent 26%
    ),
    var(--paper);
}
.hero::before {
  color: rgba(37, 99, 235, 0.035);
}
.hero-media {
  background: #dddbcb;
}
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(245, 247, 251, 0.42), transparent 30%),
    linear-gradient(0deg, rgba(7, 16, 31, 0.2), transparent 46%);
}

/* AURADIGITAL CAMPAIGN PALETTE + MOTION */
.site-header.scrolled {
  background: rgba(245, 241, 227, 0.92);
  border-color: rgba(5, 5, 5, 0.12);
}
.hero-note {
  background: rgba(27, 154, 170, 0.94);
  color: #f5f1e3;
}
.hero-note .eyebrow::before {
  background: #f5f1e3;
}
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(245, 241, 227, 0.32), transparent 28%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.3), transparent 50%);
}
.trustbar,
.site-footer,
.cta-box {
  background: #050505;
  color: #f5f1e3;
}
.trustitem b,
.display em,
.project-type {
  color: #1b9aaa;
}
.site-footer .brandmark {
  color: #f5f1e3;
}
.site-footer .brandmark-svg .mark-d {
  fill: #1b9aaa;
}
.site-footer .brandtext small,
.footer-bottom {
  color: #dddbcb;
}
.footer-col a {
  color: #f5f1e3;
}
.footer-bottom {
  border-color: rgba(221, 219, 203, 0.24);
}
.feature-panel {
  background: #1b9aaa;
  color: #050505;
}
.feature-panel h3 em {
  color: #f5f1e3;
}
.feature-panel > div > p {
  color: #050505;
}
.feature-panel .btn-primary {
  background: #050505;
  color: #f5f1e3;
}
.feature-panel .btn-ghost {
  border-color: #050505;
  color: #050505;
}
.cta-box h2 em {
  color: #1b9aaa;
}
.cta-box .btn-primary {
  background: #1b9aaa;
  color: #f5f1e3;
}
.cta-box .btn-ghost {
  border-color: #f5f1e3;
  color: #f5f1e3;
}
.service-card,
.visual-explainer,
.project-card,
.menu-design {
  background: rgba(245, 241, 227, 0.78);
  border-color: rgba(5, 5, 5, 0.18);
}
.btn-live {
  background: #dddbcb;
  color: #050505;
  border-color: rgba(5, 5, 5, 0.22);
}
.btn-live:hover {
  background: #1b9aaa;
  color: #f5f1e3;
}
.chat-launcher,
.chat-avatar,
.chat-message.user p,
.chat-form button {
  background: #1b9aaa;
}
.chat-panel {
  background: #f5f1e3;
}
.chat-head {
  background: #050505;
  color: #f5f1e3;
}
.chat-messages {
  background: linear-gradient(180deg, #dddbcb, #f5f1e3);
}
.chat-message p {
  background: #dddbcb;
  color: #050505;
}
.chat-form input,
.chat-quick button {
  background: #f5f1e3;
  color: #050505;
}
.chat-form input:focus {
  border-color: #1b9aaa;
  box-shadow: 0 0 0 3px rgba(27, 154, 170, 0.12);
}

.hero-campaign-cards {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}
.campaign-float {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 145px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 241, 227, 0.42);
  border-radius: 15px;
  background: rgba(5, 5, 5, 0.78);
  color: #f5f1e3;
  box-shadow: 0 16px 45px rgba(5, 5, 5, 0.25);
  backdrop-filter: blur(12px);
}
.campaign-float span {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #dddbcb;
}
.campaign-float strong {
  font-size: 1.1rem;
  letter-spacing: -0.035em;
  margin: 6px 0 3px;
}
.campaign-float small {
  font-size: 0.54rem;
  color: #1b9aaa;
}
.campaign-google {
  top: 18%;
  right: 7%;
  animation: campaignFloatA 5.6s ease-in-out infinite;
}
.campaign-meta {
  bottom: 23%;
  left: 7%;
  animation: campaignFloatB 6.4s ease-in-out infinite;
}
.campaign-web {
  right: 9%;
  bottom: 7%;
  min-width: 120px;
  animation: campaignFloatA 7s ease-in-out -2s infinite;
}
.campaign-web strong {
  color: #1b9aaa;
  letter-spacing: 0.12em;
}
.aura-ticker {
  position: relative;
  z-index: 6;
  overflow: hidden;
  background: #1b9aaa;
  color: #050505;
  border-block: 1px solid #050505;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 32px;
  animation: auraTicker 30s linear infinite;
}
.ticker-track span {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.aura-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.campaign-lab {
  overflow: hidden;
}
.campaign-stage {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  min-height: 650px;
  padding: 18px;
  border-radius: 28px;
  background: #050505;
  color: #f5f1e3;
}
.campaign-stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
}
.campaign-stage-copy .eyebrow::before {
  background: #1b9aaa;
}
.campaign-stage-copy h3 {
  max-width: 500px;
  margin: 18px 0;
  font-size: clamp(2.8rem, 4.8vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.campaign-stage-copy p {
  max-width: 510px;
  color: #dddbcb;
  font-size: 0.8rem;
  line-height: 1.65;
}
.campaign-stage-copy .btn {
  align-self: flex-start;
  margin-top: 18px;
}
.ad-stack {
  position: relative;
  min-height: 610px;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 60% 38%,
      rgba(27, 154, 170, 0.26),
      transparent 30%
    ),
    #0c0c0c;
  overflow: hidden;
}
.ad-stack::before {
  content: "AURA / LIVE";
  position: absolute;
  right: -12px;
  bottom: 10px;
  font-size: 6.8rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(245, 241, 227, 0.035);
}
.ad-card {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}
.ad-card-search {
  left: 7%;
  top: 8%;
  width: 60%;
  padding: 22px;
  background: #f5f1e3;
  color: #050505;
  transform: rotate(-3deg);
  animation: campaignCardA 7s ease-in-out infinite;
}
.ad-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ad-card-top span {
  font-size: 0.62rem;
  font-weight: 800;
}
.ad-card-top b {
  padding: 5px 7px;
  border-radius: 99px;
  background: #1b9aaa;
  color: #f5f1e3;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
}
.ad-card-search > small {
  display: block;
  margin-top: 30px;
  color: rgba(5, 5, 5, 0.48);
  font-size: 0.58rem;
}
.ad-card-search h4 {
  margin: 8px 0 6px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}
.ad-card-search p {
  font-size: 0.65rem;
  color: rgba(5, 5, 5, 0.62);
}
.ad-link {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(5, 5, 5, 0.14);
  color: #1b9aaa;
  font-size: 0.66rem;
  font-weight: 800;
}
.ad-card-social {
  right: 6%;
  top: 30%;
  width: 46%;
  background: #dddbcb;
  color: #050505;
  transform: rotate(4deg);
  animation: campaignCardB 8.2s ease-in-out infinite;
}
.ad-social-head {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 13px;
}
.ad-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #050505;
  color: #f5f1e3;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.ad-social-head b {
  display: block;
  font-size: 0.62rem;
}
.ad-social-head small {
  display: block;
  font-size: 0.5rem;
  opacity: 0.55;
}
.ad-creative {
  min-height: 230px;
  padding: 25px;
  background: #1b9aaa;
  color: #050505;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ad-creative strong {
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.ad-creative span {
  font-size: 0.58rem;
  margin-top: 12px;
}
.ad-social-foot {
  display: flex;
  justify-content: space-between;
  padding: 12px 13px;
  font-size: 0.56rem;
  font-weight: 700;
}
.ad-card-results {
  left: 10%;
  bottom: 8%;
  width: 38%;
  padding: 20px;
  background: #1b9aaa;
  color: #050505;
  animation: campaignCardC 6.5s ease-in-out infinite;
}
.ad-card-results > span {
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.result-number {
  display: flex;
  align-items: flex-start;
  margin: 12px 0 0;
}
.result-number strong {
  font-size: 4rem;
  line-height: 0.8;
  letter-spacing: -0.08em;
}
.result-number em {
  font-style: normal;
  font-size: 1rem;
  font-weight: 900;
}
.ad-card-results p {
  margin: 5px 0 18px;
  font-size: 0.62rem;
}
.result-bars {
  height: 58px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.result-bars i {
  display: block;
  flex: 1;
  background: #050505;
  border-radius: 5px 5px 0 0;
  animation: barPulse 2.8s ease-in-out infinite;
}
.result-bars i:nth-child(1) {
  height: 24%;
}
.result-bars i:nth-child(2) {
  height: 38%;
  animation-delay: 0.15s;
}
.result-bars i:nth-child(3) {
  height: 32%;
  animation-delay: 0.3s;
}
.result-bars i:nth-child(4) {
  height: 58%;
  animation-delay: 0.45s;
}
.result-bars i:nth-child(5) {
  height: 72%;
  animation-delay: 0.6s;
}
.result-bars i:nth-child(6) {
  height: 95%;
  animation-delay: 0.75s;
}
.business-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  border-block: 1px solid rgba(5, 5, 5, 0.22);
}
.business-flow > div {
  min-height: 160px;
  padding: 24px;
  border-left: 1px solid rgba(5, 5, 5, 0.18);
  display: flex;
  flex-direction: column;
}
.business-flow > div:first-child {
  border-left: 0;
}
.business-flow b {
  font-size: 0.62rem;
  color: #1b9aaa;
}
.business-flow span {
  margin-top: auto;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.business-flow small {
  margin-top: 7px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 0.65rem;
  line-height: 1.45;
}

@keyframes auraTicker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes campaignFloatA {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}
@keyframes campaignFloatB {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(10px) rotate(-1deg);
  }
}
@keyframes campaignCardA {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-12px) rotate(-1.5deg);
  }
}
@keyframes campaignCardB {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(14px) rotate(2deg);
  }
}
@keyframes campaignCardC {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}
@keyframes barPulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 1050px) {
  .campaign-stage {
    grid-template-columns: 1fr;
  }
  .campaign-stage-copy {
    padding: 34px;
  }
  .ad-stack {
    min-height: 590px;
  }
  .business-flow {
    grid-template-columns: 1fr 1fr;
  }
  .hero-campaign-cards {
    display: none;
  }
}
@media (max-width: 600px) {
  .campaign-stage {
    padding: 10px;
    border-radius: 20px;
  }
  .campaign-stage-copy {
    padding: 26px 18px;
  }
  .ad-stack {
    min-height: 560px;
  }
  .ad-card-search {
    width: 80%;
    left: 5%;
  }
  .ad-card-social {
    width: 62%;
    right: 4%;
    top: 34%;
  }
  .ad-card-results {
    width: 52%;
    left: 6%;
    bottom: 6%;
  }
  .ad-creative {
    min-height: 190px;
  }
  .business-flow {
    grid-template-columns: 1fr 1fr;
  }
  .business-flow > div {
    min-height: 145px;
    padding: 18px;
  }
  .business-flow > div:nth-child(3) {
    border-left: 0;
  }
  .ticker-track {
    animation-duration: 23s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .campaign-float,
  .ad-card,
  .result-bars i {
    animation: none !important;
  }
}

/* COOKIE CONSENT */
.cookie-consent {
  position: fixed;
  z-index: 210;
  left: 50%;
  bottom: 22px;
  width: min(calc(100% - 32px), 930px);
  transform: translate(-50%, calc(100% + 60px));
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(7, 16, 31, 0.96);
  color: #fff;
  box-shadow: 0 28px 80px rgba(1, 8, 20, 0.32);
  backdrop-filter: blur(20px);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.35s,
    visibility 0.35s;
}
.cookie-consent.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.cookie-copy {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cookie-icon {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid #dddbcb;
  color: #dddbcb;
  border-radius: 50%;
  font-size: 0.72rem;
}
.cookie-copy strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
}
.cookie-copy p {
  max-width: 600px;
  margin: 6px 0 0;
  color: #aebdd2;
  font-size: 0.69rem;
  line-height: 1.55;
}
.cookie-actions {
  display: flex;
  gap: 8px;
}
.cookie-actions .btn {
  white-space: nowrap;
  padding: 11px 15px;
  font-size: 0.68rem;
}
.cookie-necessary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}
.cookie-necessary:hover {
  background: #fff;
  color: #050505;
}
.cookie-settings-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-size: 0.68rem;
}

/* AURA ASSISTANT */
.chat-launcher {
  position: fixed;
  z-index: 180;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 19px;
  background: linear-gradient(145deg, #1b9aaa, #1b9aaa);
  color: #fff;
  box-shadow: 0 16px 42px rgba(25, 73, 186, 0.32);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.chat-launcher:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(25, 73, 186, 0.4);
}
.chat-launcher-icon {
  font-size: 1.35rem;
}
.chat-dot {
  position: absolute;
  right: -2px;
  top: -2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #1b9aaa;
  border: 3px solid var(--paper);
}
.chat-panel {
  position: fixed;
  z-index: 190;
  right: 24px;
  bottom: 94px;
  width: min(390px, calc(100vw - 30px));
  height: min(610px, calc(100svh - 122px));
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(7, 16, 31, 0.12);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(7, 16, 31, 0.22);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.97);
  transform-origin: bottom right;
  transition:
    opacity 0.25s,
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0.25s;
}
.chat-panel.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.chat-head {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 16px 17px;
  background: #050505;
  color: #fff;
}
.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, #1b9aaa, #1b9aaa);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.chat-head strong {
  display: block;
  font-size: 0.82rem;
}
.chat-head span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a8b8cf;
  font-size: 0.58rem;
  margin-top: 4px;
}
.chat-head span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}
.chat-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}
.chat-close:hover {
  background: rgba(255, 255, 255, 0.16);
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 10px;
  background: linear-gradient(180deg, #f8faff, #fff);
}
.chat-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
}
.chat-message p {
  max-width: 86%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 5px 16px 16px 16px;
  background: #eaf0fb;
  color: #1a2a41;
  font-size: 0.72rem;
  line-height: 1.55;
}
.chat-message.user {
  align-items: flex-end;
}
.chat-message.user p {
  background: #1b9aaa;
  color: #fff;
  border-radius: 16px 5px 16px 16px;
}
.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}
.chat-actions a {
  border: 1px solid #b8c5d9;
  border-radius: 99px;
  padding: 7px 10px;
  color: #173053;
  text-decoration: none;
  font-size: 0.58rem;
  font-weight: 800;
}
.chat-actions a:hover {
  background: #050505;
  color: #fff;
  border-color: #050505;
}
.chat-quick {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 14px;
  border-top: 1px solid #edf1f7;
  scrollbar-width: none;
}
.chat-quick::-webkit-scrollbar {
  display: none;
}
.chat-quick button {
  flex: 0 0 auto;
  border: 1px solid #d5ddea;
  border-radius: 99px;
  background: #fff;
  color: #30435f;
  padding: 7px 10px;
  font-size: 0.6rem;
  font-weight: 750;
  cursor: pointer;
}
.chat-quick button:hover {
  border-color: #1b9aaa;
  color: #1b9aaa;
  background: #f6f9ff;
}
.chat-form {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  padding: 11px 13px 13px;
  border-top: 1px solid #edf1f7;
}
.chat-form input {
  min-width: 0;
  border: 1px solid #d5ddea;
  border-radius: 14px;
  background: #f9fbfe;
  color: #050505;
  padding: 11px 12px;
  outline: none;
  font-size: 0.7rem;
}
.chat-form input:focus {
  border-color: #1b9aaa;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.chat-form button {
  border: 0;
  border-radius: 13px;
  background: #1b9aaa;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.chat-form button:hover {
  background: #050505;
}
html[dir="rtl"] .chat-panel {
  right: auto;
  left: 24px;
  transform-origin: bottom left;
}
html[dir="rtl"] .chat-launcher {
  right: auto;
  left: 24px;
}
html[dir="rtl"] .chat-message {
  align-items: flex-end;
}
html[dir="rtl"] .chat-message.user {
  align-items: flex-start;
}
html[dir="rtl"] .chat-message p {
  border-radius: 16px 5px 16px 16px;
}
html[dir="rtl"] .chat-message.user p {
  border-radius: 5px 16px 16px 16px;
}

@media (max-width: 600px) {
  .cookie-consent {
    grid-template-columns: 1fr;
    gap: 14px;
    bottom: 12px;
    padding: 17px;
    width: calc(100% - 24px);
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-actions .btn {
    padding: 11px 9px;
  }
  .chat-launcher {
    right: 15px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }
  .chat-panel {
    right: 15px;
    bottom: 80px;
    width: calc(100vw - 30px);
    height: min(600px, calc(100svh - 100px));
    border-radius: 22px;
  }
  html[dir="rtl"] .chat-panel {
    left: 15px;
    right: auto;
  }
  html[dir="rtl"] .chat-launcher {
    left: 15px;
    right: auto;
  }
  .cookie-consent.show ~ .chat-launcher {
    transform: translateY(-172px);
  }
}
.trustbar {
  background: #050505;
}
.trustitem b {
  color: #dddbcb;
}
.feature-panel {
  color: #fff;
  background: linear-gradient(145deg, #1b9aaa, #1b9aaa);
}
.feature-panel .eyebrow::before {
  background: var(--cyan);
}
.feature-panel h3 em {
  color: #dddbcb;
}
.feature-panel > div > p {
  color: #f5f1e3;
}
.feature-list div {
  border-color: rgba(255, 255, 255, 0.24);
}
.feature-panel .btn-ghost {
  border-color: #fff;
  color: #fff;
}
.feature-panel .btn-primary {
  background: #fff;
  color: #050505;
}
.feature-panel .btn-primary:hover {
  background: #dddbcb;
}
.site-footer {
  background: #050505;
  color: #f5f1e3;
}
.site-footer .brandmark {
  color: #f5f1e3;
}
.site-footer .brandmark-svg .mark-d {
  fill: var(--cyan);
}
.site-footer .brandtext small {
  color: #9fb0c8;
}
.footer-bottom {
  border-color: rgba(255, 255, 255, 0.16);
  color: #9fb0c8;
}
.footer-col a {
  color: #dce7f7;
}
.page-hero::after {
  background: linear-gradient(145deg, #1b9aaa, #1b9aaa);
}
.cta-box {
  background: #050505;
}
.cta-box h2 em {
  color: #dddbcb;
}
.cta-box .btn-primary {
  background: #1b9aaa;
  color: #fff;
}

.section-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}
.project-grid {
  display: grid;
  gap: 16px;
}
.project-grid-home {
  grid-template-columns: repeat(3, 1fr);
}
.project-grid-full {
  grid-template-columns: repeat(2, 1fr);
}
.project-card {
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(14, 35, 70, 0.12);
}
.project-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #dde5f0;
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-card:hover .project-media img {
  transform: scale(1.025);
}
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  align-items: flex-start;
}
.project-type {
  display: block;
  margin-bottom: 9px;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #1b9aaa;
}
.project-meta h2,
.project-meta h3 {
  margin: 0;
  letter-spacing: -0.045em;
}
.project-meta h3 {
  font-size: 1.5rem;
}
.project-meta h2 {
  font-size: 2rem;
}
.project-meta p {
  max-width: 510px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}
.project-live {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 9px 12px;
  border: 1px solid #b8c9e5;
  border-radius: 99px;
  color: #17365f;
  text-decoration: none;
  font-size: 0.64rem;
  font-weight: 800;
  transition: 0.22s;
}
.project-live:hover {
  background: #050505;
  border-color: #050505;
  color: #fff;
  transform: translateY(-2px);
}
.btn-live {
  background: #f5f1e3;
  color: #0a4561;
  border: 1px solid #1b9aaa;
}
.btn-live:hover {
  background: #dddbcb;
  color: #050505;
  transform: translateY(-2px);
}
.project-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-size: 0.74rem;
}
.project-case:nth-child(2n) {
  transform: translateY(56px);
}
.project-case:nth-child(2n):hover {
  transform: translateY(50px);
}
.portfolio-intro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  margin-bottom: 42px;
}
.portfolio-intro span {
  padding: 18px 8px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.studio-video {
  padding-top: 18px;
  background: var(--paper);
}
.case-video {
  background: var(--paper);
  padding: 86px 0 120px;
}
.video-panel {
  position: relative;
  min-height: 650px;
  border-radius: 28px;
  overflow: hidden;
  background: #050505;
}
.video-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 22, 0.8), rgba(4, 11, 22, 0.14) 72%),
    linear-gradient(0deg, rgba(4, 11, 22, 0.45), transparent);
}
.video-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 5vw, 70px);
  bottom: clamp(30px, 6vw, 70px);
  color: #fff;
  max-width: 800px;
}
.video-overlay .eyebrow::before {
  background: var(--cyan);
}
.video-overlay h2 {
  font-size: clamp(3rem, 6vw, 7rem);
  margin: 18px 0 28px;
}
.video-overlay h2 em {
  color: #dddbcb;
}
.btn-light {
  background: #fff;
  color: #050505;
}
.btn-light:hover {
  background: #dddbcb;
  transform: translateY(-2px);
}

.menu-style-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.menu-style-card {
  min-height: 300px;
  border-radius: 22px;
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
.menu-style-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 230px;
  border-radius: 26px 26px 12px 12px;
  top: 28px;
  right: -35px;
  border: 1px solid currentColor;
  opacity: 0.15;
  transform: rotate(9deg);
}
.menu-style-card:hover {
  transform: translateY(-6px);
}
.menu-style-card span,
.menu-style-card strong,
.menu-style-card small {
  position: relative;
  z-index: 1;
}
.menu-style-card span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 9px;
}
.menu-style-card strong {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}
.menu-style-card small {
  font-size: 0.72rem;
  margin-top: 7px;
  opacity: 0.7;
}
.menu-light {
  background: #fff;
  color: #17202d;
}
.menu-dark {
  background: #0a0d13;
  color: #f2e8d6;
}
.menu-warm {
  background: #c99672;
  color: #2c1a11;
}
.menu-color {
  background: #b8f14c;
  color: #10200c;
}

.auramenu-hero::after {
  border-radius: 24% 76% 59% 41% / 35% 37% 63% 65%;
}
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.menu-design {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 610px;
  background: #fff;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 28px;
  padding: 22px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(15, 35, 70, 0.05);
}
.menu-phone {
  min-height: 560px;
  border-radius: 22px;
  padding: 26px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
}
.phone-top b {
  letter-spacing: 0.12em;
}
.phone-kicker {
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-top: 70px;
  opacity: 0.7;
}
.menu-phone > h3 {
  font-size: 2.4rem;
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 12px 0 28px;
}
.phone-tabs {
  display: flex;
  gap: 6px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}
.phone-tabs span {
  font-size: 0.54rem;
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 7px 9px;
  opacity: 0.7;
}
.phone-item {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 8px;
  align-items: center;
  border-top: 1px solid currentColor;
  padding: 13px 0;
  font-size: 0.62rem;
}
.phone-item i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.14;
}
.phone-item em {
  font-style: normal;
}
.dish-orb {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.15),
    0 20px 50px rgba(0, 0, 0, 0.18);
}
.dish-steak {
  background: radial-gradient(
    circle at 58% 42%,
    #d9b37e 0 11%,
    #7e3324 12% 37%,
    #d4ad74 39% 56%,
    #203122 58%
  );
}
.dish-coffee {
  background: radial-gradient(
    circle,
    #c28d62 0 20%,
    #4c2917 21% 49%,
    #f1e2ca 50% 66%,
    #92714d 68%
  );
}
.dish-bowl {
  background: conic-gradient(#e35242, #f6d657, #65ac5b, #d7609a, #e35242);
}
.phone-list-lines {
  display: grid;
  gap: 12px;
  margin: 16px 0 40px;
}
.phone-list-lines span {
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}
.phone-minimal {
  background: #f5f2eb;
  color: #1d231e;
}
.phone-noir {
  background: #11100f;
  color: #f4ead7;
}
.phone-cafe {
  background: #d8b58d;
  color: #2d1e16;
}
.phone-fresh {
  background: #d9ff69;
  color: #18230a;
}
.phone-bistro {
  background: #eee8dc;
  color: #303029;
  font-family: Georgia, serif;
}
.phone-custom {
  background: linear-gradient(145deg, #050505, #1b9aaa);
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.phone-custom .custom-mark {
  width: 92px;
  height: 92px;
  border: 1px solid #dddbcb;
  color: #dddbcb;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 36px;
}
.phone-custom .custom-mark::first-letter {
  transform: rotate(-45deg);
}
.phone-custom > span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}
.phone-custom > h3 {
  font-size: 2.5rem;
  margin: 18px 0;
}
.phone-custom > p {
  font-size: 0.7rem;
  color: #b9cae4;
}
.menu-design-copy {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.menu-design-copy h3 {
  font-size: 1.8rem;
  letter-spacing: -0.045em;
  margin: 0;
}
.menu-design-copy p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
  margin: 10px 0 22px;
}
.menu-design-copy .btn {
  align-self: flex-start;
}

@media (max-width: 1050px) {
  .project-grid-home {
    grid-template-columns: 1fr 1fr;
  }
  .menu-style-strip {
    grid-template-columns: 1fr 1fr;
  }
  .menu-gallery {
    grid-template-columns: 1fr;
  }
  .menu-design {
    grid-template-columns: 1fr 1fr;
  }
  .project-case:nth-child(2n) {
    transform: none;
  }
  .project-case:nth-child(2n):hover {
    transform: translateY(-6px);
  }
}
@media (max-width: 820px) {
  .project-grid-home,
  .project-grid-full {
    grid-template-columns: 1fr;
  }
  .portfolio-intro {
    grid-template-columns: 1fr 1fr;
  }
  .video-panel {
    min-height: 560px;
  }
  .menu-design {
    min-height: auto;
  }
  .menu-phone {
    min-height: 500px;
  }
}
@media (max-width: 600px) {
  .menu-style-strip {
    grid-template-columns: 1fr 1fr;
  }
  .menu-style-card {
    min-height: 230px;
    padding: 18px;
  }
  .menu-style-card strong {
    font-size: 1.28rem;
  }
  .menu-design {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .menu-phone {
    min-height: 520px;
  }
  .menu-design-copy {
    padding: 20px 10px 10px;
  }
  .video-panel {
    min-height: 520px;
    border-radius: 20px;
  }
  .project-meta {
    padding: 19px;
  }
  .project-meta h2 {
    font-size: 1.6rem;
  }
  .portfolio-intro {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-intro span {
    font-size: 0.58rem;
  }
  .section-link {
    justify-content: stretch;
  }
  .section-link .btn {
    width: 100%;
  }
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.42fr);
  gap: 42px;
  align-items: end;
}
.hero-grid > div:first-child {
  max-width: 700px;
}
.hero h1 {
  font-size: clamp(4rem, 7.5vw, 8.6rem);
  margin: 18px 0 28px;
  max-width: 760px;
}
.hero-copy {
  font-size: 1rem;
  line-height: 1.62;
  max-width: 610px;
  color: #526579;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.hero-note {
  background: rgba(37, 99, 235, 0.94);
  color: #fff;
  border-radius: var(--radius);
  padding: 25px;
  max-width: 320px;
  backdrop-filter: blur(8px);
  transform: translateY(10px);
}
.hero-note .eyebrow::before {
  background: var(--cyan);
}
.hero-note strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-top: 15px;
}
.hero-note p {
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 10px 0 0;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 22px;
  background: var(--lime);
  border-radius: 99px;
  padding: 11px 9px;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  writing-mode: vertical-rl;
}

/* RUNNING / TRUST STRIP */
.trustbar {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.trustgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 104px;
}
.trustitem {
  padding: 20px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.19);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.trustitem:first-child {
  border-left: 0;
}
.trustitem b {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--orange);
}
.trustitem span {
  font-size: 0.72rem;
  color: #c7c7c1;
  margin-top: 9px;
}

/* SECTIONS */
.section {
  padding: 118px 0;
  background: var(--paper);
}
.section.alt {
  background: #dddbcb;
  color: var(--ink);
}
.section-head {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 52px;
  margin-bottom: 58px;
  align-items: start;
}
.section-head h2 {
  font-size: clamp(3rem, 6.1vw, 7.2rem);
  margin: 0;
  max-width: 980px;
}
.section-head p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #607184;
  font-size: 0.94rem;
  line-height: 1.64;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.service-card {
  min-height: 330px;
  border: 1px solid var(--ink);
  background: transparent;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: var(--orange);
  transition: 0.35s;
  z-index: 0;
}
.service-card:nth-child(3n + 2)::before {
  background: var(--blue);
}
.service-card:nth-child(3n + 3)::before {
  background: var(--lime);
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card:hover::before {
  height: 100%;
}
.service-card:nth-child(3n + 2):hover {
  color: #fff;
}
.service-num {
  font-size: 0.67rem;
  color: var(--muted);
}
.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.12rem;
}
.service-card h3 {
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 72px 0 11px;
}
.service-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
  color: #607184;
}
.service-card:hover p {
  color: inherit;
}
.service-link {
  margin-top: 24px;
  font-size: 0.72rem;
  font-weight: 800;
}

/* FEATURE / PHYGITAL */
.feature-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
}
.feature-visual {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dddbcb;
}
.feature-visual img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.56), transparent 55%);
}
.visual-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.visual-caption strong {
  font-size: 2rem;
  letter-spacing: -0.045em;
}
.visual-pill {
  border: 1px solid #fff;
  border-radius: 99px;
  padding: 8px 11px;
  font-size: 0.65rem;
}
.feature-panel {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-panel .eyebrow::before {
  background: var(--ink);
}
.feature-panel h3 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  margin: 18px 0;
}
.feature-panel h3 em {
  color: #fff;
}
.feature-panel > div > p {
  max-width: 520px;
  font-size: 0.87rem;
  line-height: 1.6;
}
.feature-list {
  margin: 24px 0;
}
.feature-list div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.28);
  font-size: 0.78rem;
}
.feature-panel .btn-ghost {
  border-color: #111;
  color: #111;
}
.feature-panel .btn-primary {
  background: #111;
  color: #fff;
}

/* PRICE / PROCESS / CTA */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.price-card {
  border: 1px solid var(--ink);
  background: transparent;
  border-radius: var(--radius);
  padding: 25px;
  position: relative;
  min-height: 415px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--lime);
}
.price-card h3 {
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  margin: 8px 0;
}
.price-card > p {
  font-size: 0.75rem;
  line-height: 1.5;
}
.popular {
  position: absolute;
  top: 17px;
  right: 17px;
  background: var(--ink);
  color: #fff;
  border-radius: 99px;
  padding: 6px 8px;
  font-size: 0.56rem;
  font-weight: 900;
}
.price {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 28px 0 7px;
}
.price small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #6b6b64;
}
.price-card ul {
  list-style: none;
  margin: 15px 0 28px;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: 0.75rem;
  color: #5f7183;
  flex: 1;
}
.price-card li::before {
  content: "↗";
  margin-right: 7px;
  color: var(--orange-deep);
  font-weight: 900;
}
.price-card .btn {
  width: 100%;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}
.process-step {
  padding: 26px 26px 5px 0;
}
.process-step b {
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  color: var(--orange-deep);
}
.process-step h3 {
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}
.process-step p {
  font-size: 0.78rem;
  line-height: 1.58;
  color: #607184;
}
.cta-band {
  padding: 0 0 100px;
  background: var(--paper);
}
.cta-box {
  background: var(--blue);
  color: #fff;
  padding: 62px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.cta-box::after {
  content: "↗";
  position: absolute;
  right: 1%;
  bottom: -25%;
  font-size: 19rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.09);
  font-weight: 900;
}
.cta-box .eyebrow::before {
  background: var(--lime);
}
.cta-box h2 {
  font-size: clamp(3.2rem, 6.2vw, 7.1rem);
  margin: 0 0 20px;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
.cta-box h2 em {
  color: var(--lime);
}
.cta-box p,
.cta-box .hero-actions {
  position: relative;
  z-index: 1;
}
.cta-box .muted {
  color: #e4e7ff;
}
.cta-box .btn-primary {
  background: var(--lime);
  color: #111;
}
.cta-box .btn-ghost {
  border-color: #fff;
  color: #fff;
}
.cta-box .btn-ghost:hover {
  background: #fff;
  color: #111;
}

/* PAGE HERO */
.page-hero {
  padding: 165px 0 80px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--orange);
  right: 7%;
  top: 130px;
  opacity: 0.95;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.crumb {
  font-size: 0.67rem;
  color: #777770;
  margin-bottom: 32px;
}
.crumb a {
  text-decoration: none;
}
.page-hero h1 {
  font-size: clamp(4rem, 8vw, 9rem);
  max-width: 1010px;
  margin: 16px 0 25px;
}
.page-hero p {
  font-size: 0.97rem;
  line-height: 1.62;
  max-width: 680px;
  color: #607184;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.detail-card {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  background: transparent;
}
.detail-card:nth-child(4n + 2) {
  background: var(--lime);
}
.detail-card h3 {
  font-size: 1.9rem;
  letter-spacing: -0.045em;
  margin: 24px 0 12px;
}
.detail-card p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #5b5b55;
}
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.mini-tags span {
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 7px 10px;
  font-size: 0.64rem;
}
.price-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.price-toggle button {
  border: 1px solid var(--ink);
  border-radius: 99px;
  background: transparent;
  color: #111;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
}
.price-toggle button.active {
  background: var(--ink);
  color: #fff;
}

/* NFC / MENU */
.nfc-demo {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 16px;
  align-items: stretch;
}
.nfc-photo {
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #dddbcb;
}
.nfc-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tap-card {
  background: var(--lime);
  border-radius: var(--radius);
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tap-card .eyebrow::before {
  background: #111;
}
.tap-card h2 {
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  margin: 18px 0;
}
.tap-card h2 em {
  color: var(--blue);
}
.tap-card > .muted {
  color: #41413c;
}
.steps {
  counter-reset: step;
  display: grid;
  margin-top: 18px;
}
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}
.step::before {
  content: "0" counter(step);
  font-size: 0.68rem;
  color: #606058;
  margin-top: 3px;
}
.step b {
  font-size: 0.96rem;
}
.step p {
  margin: 5px 0 0;
  font-size: 0.73rem;
  line-height: 1.5;
  color: #5f5f58;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 12px;
}
.contact-card,
.contact-form {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-card {
  background: var(--orange);
}
.contact-card .eyebrow::before {
  background: #111;
}
.contact-card h2 {
  font-size: 3.2rem;
  letter-spacing: -0.055em;
  margin: 18px 0;
}
.contact-card .muted {
  color: #3e2d27;
}
.contact-lines {
  margin-top: 38px;
}
.contact-lines a,
.contact-lines div {
  display: block;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.28);
  font-size: 0.83rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.7rem;
  font-weight: 700;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--ink);
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 14px;
  outline: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form .btn {
  margin-top: 18px;
}
.form-note {
  font-size: 0.65rem;
  color: #777770;
}
.form-note[data-state="success"] {
  color: #2f6b4f;
}
.form-note[data-state="error"] {
  color: #9a3f36;
}
.contact-form [data-contact-submit]:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* FOOTER */
.site-footer {
  background: var(--orange);
  color: #111;
  padding: 72px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 0.6fr 0.75fr;
  gap: 45px;
}
.site-footer .brandmark {
  color: #111;
}
.site-footer .brandmark-svg .mark-d {
  fill: #fff;
}
.site-footer .brandtext small {
  color: #4e3127;
}
.footer-blurb {
  max-width: 390px;
  font-size: 0.82rem;
  line-height: 1.62;
  margin-top: 20px;
}
.footer-col h4 {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 20px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 0.8rem;
  margin: 11px 0;
}
.footer-col a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(17, 17, 17, 0.3);
  margin-top: 54px;
  padding-top: 22px;
  font-size: 0.68rem;
}

/* MOTION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.parallax {
  will-change: transform;
}

/* DYNAMIC LAYER */
.scroll-progress {
  position: fixed;
  z-index: 150;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  pointer-events: none;
}
.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--lime));
  transition: transform 0.08s linear;
}
.page-wipe {
  position: fixed;
  z-index: 140;
  inset: 0 0 0 auto;
  width: min(28vw, 420px);
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  pointer-events: none;
  transform-origin: right;
  animation: auraWipe 0.82s cubic-bezier(0.72, 0, 0.18, 1) 0.05s both;
}
.motion-orb {
  --orb-x: -300px;
  --orb-y: -300px;
  position: fixed;
  z-index: 70;
  left: 0;
  top: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
  background: radial-gradient(
    circle at 35% 35%,
    var(--lime),
    var(--orange) 52%,
    transparent 72%
  );
  filter: blur(22px);
  mix-blend-mode: multiply;
  transform: translate3d(
    calc(var(--orb-x) - 120px),
    calc(var(--orb-y) - 120px),
    0
  );
  transition: transform 0.16s ease-out;
}
.hero-note {
  animation: auraFloat 5.5s ease-in-out infinite;
}
.scroll-cue {
  animation: auraBob 2.2s ease-in-out infinite;
}
.page-hero::after {
  animation: auraMorph 9s ease-in-out infinite;
  transform-origin: center;
}
.trustitem {
  position: relative;
  overflow: hidden;
}
.trustitem::after {
  content: "";
  position: absolute;
  left: -45%;
  bottom: 0;
  width: 38%;
  height: 2px;
  background: var(--orange);
  opacity: 0.75;
  animation: auraLine 5s ease-in-out infinite;
}
.trustitem:nth-child(2)::after {
  animation-delay: 0.7s;
}
.trustitem:nth-child(3)::after {
  animation-delay: 1.4s;
}
.trustitem:nth-child(4)::after {
  animation-delay: 2.1s;
}
.has-pointer .tilt-card {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transition:
    transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.7s ease,
    background 0.3s,
    color 0.3s;
}
.has-pointer .reveal.tilt-card {
  transform: translateY(28px) perspective(1100px) rotateX(var(--rx))
    rotateY(var(--ry));
}
.has-pointer .reveal.in.tilt-card {
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
}
.has-pointer .tilt-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.22),
    transparent 28%
  );
  opacity: 0;
  transition: opacity 0.25s;
}
.has-pointer .tilt-card:hover::after {
  opacity: 1;
}
.has-pointer .service-card > * {
  position: relative;
  z-index: 4;
}
@keyframes auraWipe {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes auraFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}
@keyframes auraBob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}
@keyframes auraMorph {
  0%,
  100% {
    border-radius: 50%;
    transform: rotate(0deg) scale(1);
  }
  45% {
    border-radius: 28% 72% 60% 40%/45% 40% 60% 55%;
    transform: rotate(16deg) scale(1.06);
  }
}
@keyframes auraLine {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  20%,
  70% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(380%);
    opacity: 0;
  }
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 15px;
  }
  .hero-media {
    width: 43%;
  }
  .hero-grid {
    grid-template-columns: 1fr 0.32fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-split,
  .nfc-demo,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .feature-visual,
  .nfc-photo {
    min-height: 480px;
  }
}
@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 30px), var(--max));
  }
  .nav-links {
    position: fixed;
    display: none;
    top: 76px;
    left: 15px;
    right: 15px;
    padding: 22px;
    background: var(--paper);
    border: 1px solid var(--ink);
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero {
    padding: 118px 0 44px;
    align-items: flex-start;
  }
  .hero-media {
    position: relative;
    width: 100%;
    height: 48vh;
    min-height: 380px;
    margin: 20px 0 26px;
    order: 2;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .hero-grid > div:first-child {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(4rem, 15vw, 7rem);
  }
  .hero-note {
    max-width: 100%;
    transform: none;
  }
  .hero .container {
    position: relative;
  }
  .scroll-cue {
    display: none;
  }
  .trustgrid {
    grid-template-columns: 1fr 1fr;
  }
  .trustitem {
    min-height: 95px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .section {
    padding: 82px 0;
  }
  .section-head h2 {
    font-size: clamp(3.2rem, 11vw, 6rem);
  }
  .page-hero::after {
    width: 140px;
    height: 140px;
    right: -40px;
    top: 120px;
  }
  .page-hero h1 {
    font-size: clamp(4rem, 14vw, 7rem);
  }
}
@media (max-width: 600px) {
  .nav {
    height: 74px;
  }
  .brandtext small {
    display: none;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 112px;
  }
  .hero-grid {
    display: block;
  }
  .hero-media {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 47vh;
    min-height: 330px;
    margin-top: 32px;
  }
  .hero-note {
    margin-top: 14px;
  }
  .services-grid,
  .pricing-grid,
  .detail-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .service-card {
    min-height: 290px;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .feature-panel,
  .tap-card {
    padding: 28px;
  }
  .feature-visual,
  .nfc-photo {
    min-height: 380px;
  }
  .cta-box {
    padding: 38px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .trustgrid {
    grid-template-columns: 1fr 1fr;
  }
  .trustitem {
    padding: 15px;
  }
  .page-hero {
    padding: 128px 0 58px;
  }
  .page-hero p {
    font-size: 0.88rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .parallax {
    transform: none !important;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  position: relative;
  z-index: 95;
}
.lang-current {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--ink);
  background: rgba(243, 241, 235, 0.88);
  color: var(--ink);
  border-radius: 99px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.lang-current:hover {
  background: #fff;
}
.lang-globe {
  font-size: 0.95rem;
  color: var(--orange-deep);
}
.lang-chevron {
  font-size: 0.8rem;
  transition: transform 0.2s;
}
.lang-current[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  display: none;
  top: 50px;
  right: 0;
  min-width: 158px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 15px;
  padding: 6px;
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.15);
}
.lang-menu.open {
  display: grid;
}
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  border: 0;
  background: transparent;
  color: #111;
  border-radius: 10px;
  padding: 10px 11px;
  text-align: left;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}
.lang-menu button:hover,
.lang-menu button.active {
  background: var(--lime);
}
.lang-menu button span {
  font-size: 1rem;
}

/* ARABIC / RTL */
html[dir="rtl"] body {
  text-align: right;
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
}
html[dir="rtl"] .hero-media {
  right: auto;
  left: 0;
}
html[dir="rtl"] .page-hero::after {
  right: auto;
  left: 7%;
}
html[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}
html[dir="rtl"] .lang-menu button {
  text-align: right;
}
html[dir="rtl"] .service-card,
html[dir="rtl"] .detail-card,
html[dir="rtl"] .price-card,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .contact-form {
  text-align: right;
}
html[dir="rtl"] .price-card li::before {
  margin-right: 0;
  margin-left: 7px;
}
html[dir="rtl"] .process-step {
  padding-right: 0;
  padding-left: 26px;
}
html[dir="rtl"] .footer-col a {
  text-align: right;
}
html[dir="rtl"] .visual-caption,
html[dir="rtl"] .feature-list div {
  direction: rtl;
}
@media (max-width: 820px) {
  .lang-switcher {
    margin-left: auto;
  }
  .lang-current {
    height: 40px;
  }
  .lang-menu {
    right: 0;
    left: auto;
  }
  html[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: auto;
  }
  html[dir="rtl"] .lang-menu {
    right: auto;
    left: 0;
  }
}
@media (max-width: 820px) {
  .motion-orb {
    display: none;
  }
  .page-wipe {
    width: 34vw;
  }
  .hero-note {
    animation: none;
  }
}
@media (max-width: 600px) {
  .brandmark {
    width: 42px;
    height: 42px;
  }
}
html[dir="rtl"] .scroll-progress i {
  transform-origin: right;
}
html[dir="rtl"] .page-wipe {
  left: 0;
  right: auto;
  transform-origin: left;
}
@media (prefers-reduced-motion: reduce) {
  .page-wipe,
  .motion-orb {
    display: none !important;
  }
  .hero-note,
  .scroll-cue,
  .page-hero::after,
  .trustitem::after {
    animation: none !important;
  }
}

/* VISUAL EXPLAINER CARDS */
.visual-explainers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.visual-explainer {
  background: #fff;
  border: 1px solid rgba(11, 31, 51, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(11, 31, 51, 0.06);
  transition: 0.3s;
}
.visual-explainer:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(11, 31, 51, 0.1);
}
.visual-explainer img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.visual-explainer div {
  padding: 22px;
}
.visual-explainer h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.visual-explainer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}
.service-card {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(11, 31, 51, 0.28);
}
.price-card,
.detail-card {
  border-color: rgba(11, 31, 51, 0.28);
}
.trustbar {
  background: #0b1f33;
}
.cta-box {
  background: #0f3d56;
}
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(247, 250, 249, 0.4), transparent 28%),
    linear-gradient(0deg, rgba(11, 31, 51, 0.18), transparent 42%);
}
@media (max-width: 820px) {
  .visual-explainers {
    grid-template-columns: 1fr;
  }
}

/* Final palette authority */
.trustbar {
  background: #050505;
}
.site-footer {
  background: #050505;
  color: #fff;
}
.site-footer .brandmark {
  color: #fff;
}
.site-footer .brandmark-svg .mark-d {
  fill: var(--cyan);
}
.site-footer .brandtext small,
.footer-bottom {
  color: #dddbcb;
}
.footer-col a {
  color: #f5f1e3;
}
.footer-bottom {
  border-color: rgba(221, 219, 203, 0.24);
}
.cta-box {
  background: #050505;
}
.cta-box h2 em {
  color: #1b9aaa;
}
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(245, 241, 227, 0.32), transparent 30%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.3), transparent 46%);
}
.site-header.scrolled {
  background: rgba(245, 241, 227, 0.92);
}
.hero-note {
  background: rgba(27, 154, 170, 0.94);
  color: #f5f1e3;
}
.hero-note .eyebrow::before {
  background: #f5f1e3;
}
.feature-panel {
  background: #1b9aaa;
  color: #050505;
}
.feature-panel h3 em {
  color: #f5f1e3;
}
.feature-panel > div > p {
  color: #050505;
}
.feature-panel .btn-primary {
  background: #050505;
  color: #f5f1e3;
}
.feature-panel .btn-ghost {
  border-color: #050505;
  color: #050505;
}
.cta-box .btn-primary {
  background: #1b9aaa;
  color: #f5f1e3;
}
.cta-box .btn-ghost {
  border-color: #f5f1e3;
  color: #f5f1e3;
}
.service-card,
.visual-explainer,
.project-card,
.menu-design {
  background: rgba(245, 241, 227, 0.78);
  border-color: rgba(5, 5, 5, 0.18);
}
.chat-launcher,
.chat-avatar,
.chat-message.user p,
.chat-form button {
  background: #1b9aaa;
}
.chat-panel {
  background: #f5f1e3;
}
.chat-head {
  background: #050505;
  color: #f5f1e3;
}
.chat-messages {
  background: linear-gradient(180deg, #dddbcb, #f5f1e3);
}
.chat-message p {
  background: #dddbcb;
  color: #050505;
}
.chat-form input,
.chat-quick button {
  background: #f5f1e3;
  color: #050505;
}
.cta-box .btn-primary,
.chat-message.user p,
.chat-form button {
  color: #050505;
}
.video-overlay p {
  max-width: 610px;
  margin: 0 0 24px;
  color: #dddbcb;
  font-size: 0.78rem;
  line-height: 1.6;
}

/* ================================================================
   AURADIGITAL 2026 — FRIENDLY GROWTH SYSTEM
   Reference direction: full-bleed media, floating navigation,
   oversized type and a deep-green / lime / cream / mint palette.
   ================================================================ */

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Parkinsans", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.container {
  width: min(calc(100% - 60px), var(--max));
}

.display {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.display em {
  color: var(--orange-deep);
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.78rem;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  background: var(--orange-deep);
}

/* Floating navigation */
.site-header {
  inset: 18px 0 auto;
  color: var(--ink);
  padding: 0 24px;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
}

.site-header .nav {
  width: min(100%, 1320px);
  height: 72px;
  padding: 0 18px 0 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 13px;
  box-shadow: 0 12px 34px rgba(12, 30, 24, 0.12);
  backdrop-filter: blur(16px);
}

.brand-wordmark {
  min-width: max-content;
}

.brand-wordmark strong {
  font-size: 1.32rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.075em;
  text-transform: lowercase;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.nav-links a::after {
  bottom: -8px;
  height: 5px;
  border-radius: 99px;
  background: var(--orange);
}

.nav-cta,
.btn-primary {
  background: var(--ink);
  color: #fff;
}

.nav-cta {
  padding: 14px 19px;
  border-radius: 8px;
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--orange);
  color: var(--ink);
}

.lang-current {
  border-color: transparent;
  background: var(--orange);
}

.lang-menu {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(12, 30, 24, 0.18);
}

.btn {
  min-height: 48px;
  padding: 14px 21px;
  border-radius: 9px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

/* Home hero — agency team as the product story */
.reference-hero {
  position: relative;
  display: block;
  min-height: 790px;
  width: 100vw;
  max-width: none;
  height: 100svh;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}

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

.reference-hero .hero-media {
  position: absolute;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100%;
}

.reference-hero .hero-media img,
.reference-hero .hero-media video {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.reference-hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12, 30, 24, 0.82) 0%,
      rgba(12, 30, 24, 0.5) 46%,
      rgba(12, 30, 24, 0.12) 76%
    ),
    linear-gradient(0deg, rgba(12, 30, 24, 0.55), transparent 52%);
}

.reference-hero .hero-grid {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.62fr);
  gap: 48px;
  align-items: end;
  padding-top: 145px;
  padding-bottom: 78px;
  color: #fff;
}

.hero-copy-block {
  max-width: 970px;
}

.reference-hero .hero-grid > .hero-copy-block {
  max-width: 970px;
}

.reference-hero .hero-copy-block > .eyebrow {
  margin-bottom: 25px;
  color: #fff;
}

.reference-hero .hero-copy-block > .eyebrow::before {
  background: var(--orange);
}

.reference-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(4.3rem, 7.4vw, 7.9rem);
  line-height: 0.94;
  color: var(--orange);
}

.reference-hero h1 em {
  color: var(--orange);
}

.reference-hero .hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.96rem, 1.3vw, 1.13rem);
  line-height: 1.6;
}

.reference-hero .hero-actions {
  margin-top: 28px;
}

.reference-hero .btn-primary {
  background: var(--orange);
  color: var(--ink);
}

.reference-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.reference-hero .hero-note {
  align-self: end;
  margin-bottom: 4px;
  padding: 24px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: none;
  backdrop-filter: blur(15px);
}

.reference-hero .hero-note .eyebrow::before {
  background: var(--orange-deep);
}

.reference-hero .hero-note strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.reference-hero .hero-note p {
  color: rgba(12, 30, 24, 0.72);
}

.reference-hero .scroll-cue {
  z-index: 3;
  color: #fff;
  opacity: 0.75;
}

/* Client proof strip */
.trustbar {
  padding: 36px 0;
  background: var(--orange-deep);
  color: var(--soft);
}

.trustgrid {
  gap: 0;
}

.trustitem {
  min-height: 74px;
  padding: 8px 26px;
  border-left: 1px solid rgba(212, 245, 224, 0.22);
}

.trustitem:first-child {
  border-left: 0;
}

.trustitem b {
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.trustitem span {
  color: rgba(212, 245, 224, 0.72);
}

.aura-ticker {
  padding: 15px 0;
  background: var(--orange);
  color: var(--ink);
  border: 0;
}

.ticker-track {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Shared section system */
.section {
  padding: clamp(82px, 10vw, 150px) 0;
  background: var(--paper);
}

.section.alt {
  background: var(--soft);
}

.section-head {
  grid-template-columns: 0.54fr 2fr;
  gap: 46px;
  margin-bottom: 54px;
}

.section-head h2,
.cta-box h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  line-height: 0.96;
}

.section-head > div > p {
  max-width: 700px;
  margin-top: 25px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.services-grid {
  gap: 16px;
}

.service-card,
.detail-card,
.price-card,
.visual-explainer,
.menu-design {
  border: 0;
  border-radius: 26px;
  box-shadow: none;
}

.service-card {
  min-height: 330px;
  padding: 30px;
  background: var(--soft);
}

.service-card:nth-child(2) {
  background: var(--peach);
}

.service-card:nth-child(3) {
  background: var(--orange);
}

.service-card:nth-child(4) {
  background: #fff;
}

.service-card:nth-child(5) {
  background: #fcee98;
}

.service-card:nth-child(6) {
  background: #e6ddfa;
}

.service-card:hover,
.detail-card:hover,
.project-card:hover,
.menu-design:hover,
.price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(12, 30, 24, 0.1);
}

.service-card h3 {
  max-width: 92%;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.service-card p {
  color: rgba(12, 30, 24, 0.72);
}

.service-price {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.service-icon {
  width: 52px;
  height: 52px;
  border: 0;
  background: var(--ink);
  color: var(--orange);
}

.mini-tags span {
  border: 1px solid rgba(12, 30, 24, 0.2);
  background: rgba(255, 255, 255, 0.3);
}

.visual-explainers {
  gap: 16px;
}

.visual-explainer {
  background: #fff;
}

.visual-explainer:nth-child(2) {
  background: var(--peach);
}

.visual-explainer:nth-child(3) {
  background: var(--soft);
}

.feature-panel {
  border: 0;
  border-radius: 30px;
  background: var(--orange-deep);
  color: #fff;
}

.feature-panel h3 em,
.feature-panel .display em {
  color: var(--orange);
}

.feature-panel > div > p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-panel .btn-primary {
  background: var(--orange);
  color: var(--ink);
}

.feature-panel .btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* Portfolio */
.work-showcase {
  background: #fff;
}

.project-grid {
  gap: 18px;
}

.project-grid-home,
.project-grid-full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: var(--soft);
}

.project-card:nth-child(2) {
  background: #fcee98;
}

.project-card:nth-child(3) {
  background: #e6ddfa;
}

.project-card:nth-child(4) {
  background: var(--peach);
}

.project-media {
  margin: 12px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

.project-media.project-screenshot {
  aspect-ratio: 2.06 / 1;
}

.project-meta {
  padding: 22px 28px 30px;
}

.project-meta h2,
.project-meta h3 {
  letter-spacing: -0.055em;
}

.project-meta h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.project-live {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
}

.portfolio-intro {
  border: 0;
  border-radius: 18px;
  background: var(--orange);
}

/* Team and campaign media */
.studio-video,
.case-video {
  background: var(--paper);
}

.video-panel {
  min-height: 680px;
  border: 0;
  border-radius: 30px;
  overflow: hidden;
}

.video-panel::after {
  background: linear-gradient(
    0deg,
    rgba(12, 30, 24, 0.78),
    rgba(12, 30, 24, 0.02) 68%
  );
}

.video-overlay {
  max-width: 900px;
  padding: 56px;
}

.video-overlay h2 {
  color: #fff;
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
}

.video-overlay h2 em {
  color: var(--orange);
}

.video-overlay p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.campaign-lab {
  background: var(--soft);
}

.campaign-stage {
  border: 0;
  border-radius: 30px;
  background: var(--orange-deep);
  color: #fff;
  box-shadow: none;
}

.campaign-stage h3 {
  color: var(--orange);
}

.ad-card,
.result-card {
  border-radius: 20px;
}

.business-flow {
  margin-top: 18px;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #fff;
}

/* Process + packages */
.process {
  gap: 14px;
}

.process-step {
  min-height: 260px;
  padding: 28px;
  border: 0;
  border-radius: 24px;
  background: #fff;
}

.process-step:nth-child(2) {
  background: var(--peach);
}

.process-step:nth-child(3) {
  background: var(--orange);
}

.process-step:nth-child(4) {
  background: #e6ddfa;
}

.process-step h3 {
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.pricing-grid {
  gap: 14px;
}

.price-card {
  padding: 30px;
  background: #fff;
}

.price-card:nth-child(2),
.price-card.featured {
  background: var(--orange);
  color: var(--ink);
}

.price-card:nth-child(3) {
  background: var(--soft);
}

.price-card:nth-child(4) {
  background: var(--peach);
}

.price-card .price {
  letter-spacing: -0.05em;
}

.popular {
  background: var(--ink);
  color: var(--orange);
}

.price-toggle {
  border: 0;
  background: #fff;
  border-radius: 12px;
}

.price-toggle button.active {
  background: var(--ink);
  color: #fff;
}

.detail-grid {
  gap: 14px;
}

.detail-card {
  background: #fff;
}

.detail-card:nth-child(2) {
  background: var(--soft);
}

.detail-card:nth-child(3) {
  background: var(--peach);
}

.detail-card:nth-child(4) {
  background: #fcee98;
}

/* Inner page heroes */
.page-hero {
  min-height: 620px;
  padding: 185px 0 105px;
  display: flex;
  align-items: flex-end;
  background: var(--orange-deep);
  color: #fff;
}

.page-hero::after {
  background: var(--orange);
  opacity: 0.9;
}

.page-hero h1 {
  max-width: 1120px;
  margin-top: 25px;
  font-size: clamp(4rem, 7.4vw, 8rem);
  line-height: 0.94;
}

.page-hero h1 em {
  color: var(--orange);
}

.page-hero > .container > p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.7;
}

.page-hero .crumb,
.page-hero .crumb a {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .eyebrow::before {
  background: var(--orange);
}

body[data-page="portfolio"] .page-hero {
  background: var(--peach);
  color: var(--ink);
}

body[data-page="portfolio"] .page-hero h1 em {
  color: var(--orange-deep);
}

body[data-page="portfolio"] .page-hero > .container > p,
body[data-page="portfolio"] .page-hero .crumb,
body[data-page="portfolio"] .page-hero .crumb a {
  color: rgba(12, 30, 24, 0.7);
}

body[data-page="auramenu"] .page-hero {
  background: var(--soft);
  color: var(--ink);
}

body[data-page="auramenu"] .page-hero h1 em {
  color: var(--orange-deep);
}

body[data-page="auramenu"] .page-hero > .container > p,
body[data-page="auramenu"] .page-hero .crumb,
body[data-page="auramenu"] .page-hero .crumb a {
  color: rgba(12, 30, 24, 0.7);
}

body[data-page="packages"] .page-hero {
  background: #fcee98;
  color: var(--ink);
}

body[data-page="packages"] .page-hero h1 em {
  color: var(--orange-deep);
}

body[data-page="packages"] .page-hero > .container > p,
body[data-page="packages"] .page-hero .crumb,
body[data-page="packages"] .page-hero .crumb a {
  color: rgba(12, 30, 24, 0.7);
}

/* Menu mockups intentionally keep their individual restaurant palettes. */
.menu-gallery {
  gap: 18px;
}

.menu-design {
  background: #fff;
}

.menu-design:nth-child(even) {
  background: var(--soft);
}

/* Contact */
.contact-card,
.contact-form {
  border: 0;
  border-radius: 28px;
}

.contact-card {
  background: var(--orange-deep);
  color: #fff;
}

.contact-card .display,
.contact-card a {
  color: #fff;
}

.contact-card .muted {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card .eyebrow::before {
  background: var(--orange);
}

.contact-form {
  background: #fff;
}

.field input,
.field textarea,
.field select {
  border: 1px solid rgba(12, 30, 24, 0.15);
  border-radius: 10px;
  background: var(--paper);
}

/* CTA and footer */
.cta-band {
  background: var(--paper);
  padding: 20px 0 90px;
}

.cta-box {
  padding: clamp(46px, 7vw, 88px);
  border: 0;
  border-radius: 30px;
  background: var(--orange-deep);
  color: #fff;
}

.cta-box h2 em {
  color: var(--orange);
}

.cta-box .btn-primary {
  background: var(--orange);
  color: var(--ink);
}

.cta-box .btn-ghost {
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
}

.site-footer {
  padding-top: 74px;
  background: var(--ink);
  color: #fff;
}

.footer-wordmark strong {
  color: var(--orange);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.footer-blurb {
  color: rgba(255, 255, 255, 0.68);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
}

/* Cookies and assistant stay fully functional, restyled to the new system. */
.cookie-consent {
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(12, 30, 24, 0.2);
}

.cookie-icon,
.chat-launcher,
.chat-avatar,
.chat-form button {
  background: var(--orange);
  color: var(--ink);
}

.cookie-consent .btn-primary {
  background: var(--ink);
  color: #fff;
}

.cookie-consent .cookie-necessary {
  border-color: rgba(12, 30, 24, 0.2);
  background: var(--paper);
  color: var(--ink);
}

.cookie-consent .cookie-reject {
  border-color: rgba(12, 30, 24, 0.2);
  background: #fff;
  color: var(--ink);
}

.cookie-consent .cookie-reject:hover {
  border-color: var(--ink);
  background: var(--soft);
}

.cookie-consent .cookie-copy p {
  color: var(--muted);
}

.chat-panel {
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 25px 75px rgba(12, 30, 24, 0.24);
}

.chat-head {
  background: var(--orange-deep);
  color: #fff;
}

.chat-messages {
  background: linear-gradient(180deg, var(--soft), #fff);
}

.chat-message p {
  background: #fff;
  color: var(--ink);
}

.chat-message.user p {
  background: var(--orange);
  color: var(--ink);
}

.chat-quick button,
.chat-form input {
  background: var(--paper);
  color: var(--ink);
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 14px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-cta {
    display: none;
  }
  .reference-hero .hero-grid {
    grid-template-columns: 1fr 290px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }
  .site-header {
    inset: 10px 0 auto;
    padding: 0 10px;
  }
  .site-header .nav {
    height: 64px;
    padding: 0 12px 0 16px;
  }
  .brand-wordmark strong {
    font-size: 1.16rem;
  }
  .menu-btn {
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 9px;
    background: var(--ink);
    color: #fff;
  }
  .nav-links {
    top: 72px;
    left: 0;
    right: 0;
    padding: 14px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(12, 30, 24, 0.18);
  }
  .nav-links a {
    padding: 12px;
    border-radius: 8px;
  }
  .nav-links a.active {
    background: var(--soft);
  }
  .lang-switcher {
    margin-left: auto;
  }
  .reference-hero {
    min-height: 760px;
    height: 100svh;
  }
  .reference-hero .hero-grid {
    min-height: 760px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 126px;
    padding-bottom: 55px;
  }
  .reference-hero h1 {
    font-size: clamp(3.65rem, 14vw, 6.2rem);
  }
  .reference-hero .hero-note {
    display: none;
  }
  .reference-hero .hero-media::after {
    background: linear-gradient(
      0deg,
      rgba(12, 30, 24, 0.88),
      rgba(12, 30, 24, 0.12)
    );
  }
  .trustgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trustitem,
  .trustitem:first-child {
    border: 0;
    border-top: 1px solid rgba(212, 245, 224, 0.18);
    padding: 16px 10px;
  }
  .section {
    padding: 82px 0;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-head h2,
  .cta-box h2 {
    font-size: clamp(3rem, 11vw, 5rem);
  }
  .services-grid,
  .project-grid-home,
  .project-grid-full,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 280px;
  }
  .video-panel {
    min-height: 580px;
  }
  .video-overlay {
    padding: 28px;
  }
  .video-overlay h2 {
    font-size: clamp(3rem, 11vw, 5rem);
  }
  .page-hero {
    min-height: 560px;
    padding: 150px 0 72px;
  }
  .page-hero h1 {
    font-size: clamp(3.55rem, 13vw, 6.2rem);
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box {
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }
  .reference-hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }
  .reference-hero .hero-copy {
    font-size: 0.9rem;
  }
  .reference-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .reference-hero .hero-actions .btn {
    width: 100%;
  }
  .trustgrid {
    grid-template-columns: 1fr;
  }
  .section-head h2,
  .cta-box h2,
  .video-overlay h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }
  .service-card,
  .detail-card,
  .price-card,
  .project-meta {
    padding: 24px;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .process-step {
    min-height: 220px;
  }
  .video-panel {
    min-height: 520px;
    border-radius: 22px;
  }
  .video-overlay {
    padding: 22px;
  }
  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }
  .cta-band {
    padding-bottom: 55px;
  }
}

/* Pricing, restored brand mark and AuraMenu concept refresh */
.brand-logo {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
  border-radius: 9px;
  background: var(--paper);
  padding: 3px;
}

.footer-wordmark .brand-logo {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  background: #fff;
  padding: 5px;
}

.dual-price {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -4px 0 20px;
}

.dual-price span {
  padding: 7px 9px;
  border: 1px solid rgba(12, 30, 24, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
  font-size: 0.67rem;
  font-weight: 750;
}

.menu-price-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 24px;
  padding: 22px 26px;
  border-radius: 20px;
  background: var(--orange-deep);
  color: #fff;
}

.menu-price-banner > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-price-banner span,
.menu-price-banner small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.menu-price-banner strong {
  color: var(--orange);
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.menu-price-banner p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: right;
}

.menu-design-copy h3 {
  font-size: clamp(1.65rem, 2vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.menu-design-copy p {
  line-height: 1.6;
}

.phone-orbit {
  background:
    radial-gradient(
      circle at 50% 58%,
      rgba(230, 255, 85, 0.15),
      transparent 34%
    ),
    #0c1e18;
  color: #fff;
}

.phone-orbit .phone-kicker,
.phone-showcase .phone-kicker {
  color: var(--orange);
}

.orbit-scene {
  position: relative;
  height: 245px;
  margin: -5px 0 8px;
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(230, 255, 85, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-a {
  width: 206px;
  height: 206px;
  border-style: dashed;
  animation: orbitSpin 13s linear infinite;
}

.orbit-ring-b {
  width: 142px;
  height: 142px;
  border-color: rgba(255, 255, 255, 0.2);
  animation: orbitSpinReverse 9s linear infinite;
}

.orbit-dish {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 104px;
  height: 104px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at 45% 38%,
    #f9d37e 0 9%,
    #d86c45 10% 25%,
    #54703a 26% 42%,
    #f5f0e6 43% 61%,
    #b5a786 63%
  );
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.orbit-dish b {
  font-size: 0.68rem;
  line-height: 0.95;
}

.orbit-dish small {
  margin-top: 3px;
  font-weight: 800;
}

.orbit-node {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  border-radius: 99px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.52rem;
  font-weight: 800;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.18);
}

.orbit-1 {
  left: 5%;
  top: 45%;
}
.orbit-2 {
  right: 2%;
  top: 28%;
}
.orbit-3 {
  right: 10%;
  bottom: 11%;
}
.orbit-4 {
  left: 18%;
  top: 6%;
}

.orbit-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 13px 14px;
  border-radius: 12px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.58rem;
}

.phone-editorial {
  background: #f3ecdf;
  color: #2f291f;
  font-family: Georgia, "Times New Roman", serif;
}

.phone-editorial .phone-kicker {
  margin-top: 56px;
  font-family: Arial, sans-serif;
}

.editorial-plate {
  position: relative;
  height: 210px;
  margin: -4px 0 14px;
  overflow: hidden;
  border-radius: 4px 46px 4px 46px;
  background:
    radial-gradient(
      circle at 58% 44%,
      #e7d3a6 0 12%,
      #842f25 13% 26%,
      #42572f 27% 39%,
      #ebe2ce 40% 59%,
      transparent 60%
    ),
    linear-gradient(135deg, #4a3029, #a47759);
}

.editorial-plate::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.editorial-plate span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font:
    700 0.55rem/1.15 Arial,
    sans-serif;
  letter-spacing: 0.12em;
}

.editorial-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 14px;
  border-top: 1px solid rgba(47, 41, 31, 0.4);
}

.editorial-row div {
  display: grid;
  gap: 4px;
}

.editorial-row small {
  font-size: 0.5rem;
  opacity: 0.6;
}

.phone-showcase {
  background:
    radial-gradient(
      circle at 70% 38%,
      rgba(230, 255, 85, 0.16),
      transparent 30%
    ),
    linear-gradient(155deg, #14342a, #1b1431 78%);
  color: #fff;
}

.showcase-stage {
  position: relative;
  height: 245px;
  margin: -4px 0 15px;
  perspective: 700px;
}

.showcase-card,
.showcase-product {
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.showcase-card {
  width: 118px;
  height: 154px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.55rem;
}

.show-back {
  left: 2%;
  top: 46px;
  transform: rotateY(18deg) rotateZ(-8deg);
}

.show-mid {
  right: 0;
  top: 35px;
  transform: rotateY(-18deg) rotateZ(7deg);
}

.showcase-product {
  z-index: 3;
  left: 50%;
  top: 13px;
  width: 146px;
  height: 206px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateX(-50%);
  background:
    radial-gradient(
      circle at 50% 36%,
      #e7c384 0 10%,
      #74432c 11% 27%,
      #d5a456 28% 35%,
      #375836 36% 45%,
      transparent 46%
    ),
    linear-gradient(145deg, #f7c9ba, #b17478);
  color: var(--ink);
  animation: showcaseFloat 4.5s ease-in-out infinite;
}

.showcase-product > span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 7px;
  border-radius: 99px;
  background: var(--orange);
  font-size: 0.46rem;
  font-weight: 900;
}

.showcase-product b {
  font-size: 1.2rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.showcase-product small {
  margin-top: 5px;
  font-weight: 850;
}

.showcase-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  font-size: 0.5rem;
  opacity: 0.75;
}

.showcase-switch i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.showcase-switch i.active {
  width: 18px;
  border-radius: 99px;
  background: var(--orange);
}

.showcase-switch span {
  margin-left: auto;
}

.phone-mobile-pro {
  background: #fff;
  color: var(--ink);
}

.phone-mobile-pro .phone-kicker {
  margin-top: 50px;
  color: #005236;
}

.phone-mobile-pro .phone-tabs span:first-child {
  border-color: var(--orange-deep);
  background: var(--orange-deep);
  color: #fff;
  opacity: 1;
}

.mobile-menu-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(12, 30, 24, 0.12);
}

.mobile-menu-row > div {
  display: grid;
  gap: 4px;
}

.mobile-menu-row b,
.mobile-menu-row strong {
  font-size: 0.62rem;
}

.mobile-menu-row small {
  font-size: 0.48rem;
  color: rgba(12, 30, 24, 0.55);
}

.food-dot {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.55);
}

.food-a {
  background: conic-gradient(#8e5b36, #e8b86f, #5c7e3d, #8e5b36);
}
.food-b {
  background: conic-gradient(#7aa353, #f0d370, #d97155, #7aa353);
}

.mobile-order-bar {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 13px 14px;
  border-radius: 12px;
  background: var(--orange);
  font-size: 0.58rem;
}

/* Physical products: layered 3D NFC + QR cards. */
.product-3d-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(255, 107, 66, 0.18),
      transparent 28%
    ),
    var(--soft);
}

.qr-product-3d {
  background:
    radial-gradient(
      circle at 78% 30%,
      rgba(202, 255, 74, 0.2),
      transparent 30%
    ),
    var(--paper);
}

.smart-products {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
}

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

.smart-product-copy p {
  max-width: 530px;
  margin: 20px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.smart-product-copy .mini-tags {
  justify-content: flex-start;
}

.card-3d-stage {
  position: relative;
  min-height: 510px;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.smart-card-slot {
  position: absolute;
  width: min(430px, 82%);
  aspect-ratio: 1.58;
  transform-style: preserve-3d;
}

.nfc-slot {
  z-index: 3;
  left: 0;
  top: 38px;
  transform: rotateX(7deg) rotateY(18deg) rotateZ(-5deg);
}

.qr-slot {
  z-index: 2;
  right: 0;
  bottom: 35px;
  transform: rotateX(-2deg) rotateY(-17deg) rotateZ(5deg);
}

.qr-slot-featured {
  z-index: 3;
  top: 34px;
  bottom: auto;
  transform: rotateX(6deg) rotateY(-18deg) rotateZ(4deg);
}

.nfc-slot-secondary {
  z-index: 2;
  top: auto;
  bottom: 30px;
  transform: rotateX(-3deg) rotateY(17deg) rotateZ(-5deg);
}

.smart-card-3d {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 28px;
  transform-style: preserve-3d;
  box-shadow: 0 38px 58px rgba(12, 30, 24, 0.24);
  animation: smartCardFloat 5.5s ease-in-out infinite;
}

.smart-card-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.32),
    transparent 22%,
    transparent 70%,
    rgba(255, 255, 255, 0.12)
  );
  mix-blend-mode: screen;
}

.smart-card-3d::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 9px;
  right: -11px;
  top: 9px;
  bottom: -12px;
  border-radius: 28px;
  background: #07130f;
  transform: translateZ(-18px);
}

.nfc-card-3d {
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(202, 255, 74, 0.34),
      transparent 25%
    ),
    linear-gradient(145deg, #0c1e18, #005236);
}

.qr-card-3d {
  color: #171714;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(255, 255, 255, 0.8),
      transparent 26%
    ),
    linear-gradient(135deg, #ff6b42, #f7c9ba 75%);
  animation-delay: -2.2s;
}

.smart-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.smart-card-top img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.nfc-signal {
  position: absolute;
  z-index: 2;
  right: 13%;
  top: 50%;
  width: 110px;
  height: 110px;
  transform: translateY(-50%) rotate(-12deg);
}

.nfc-signal i {
  position: absolute;
  left: 0;
  top: 50%;
  border: 5px solid var(--orange);
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.nfc-signal i:nth-child(1) {
  width: 42px;
  height: 42px;
}
.nfc-signal i:nth-child(2) {
  width: 72px;
  height: 72px;
}
.nfc-signal i:nth-child(3) {
  width: 104px;
  height: 104px;
}

.smart-card-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.smart-card-bottom strong {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: -0.045em;
}

.smart-card-bottom small,
.qr-card-content small {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.68;
}

.qr-card-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 24px;
  align-items: end;
}

.qr-card-content > div:last-child {
  display: grid;
  gap: 9px;
}

.qr-card-content strong {
  font-size: clamp(1.15rem, 2.3vw, 1.8rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.qr-cube {
  width: 118px;
  height: 118px;
  border: 9px solid #171714;
  border-radius: 10px;
  background:
    linear-gradient(
      90deg,
      #171714 22%,
      transparent 22% 44%,
      #171714 44% 63%,
      transparent 63% 78%,
      #171714 78%
    ),
    linear-gradient(
      #171714 18%,
      transparent 18% 38%,
      #171714 38% 55%,
      transparent 55% 73%,
      #171714 73%
    );
  background-color: #fff;
  box-shadow: 9px 11px 0 rgba(23, 23, 20, 0.18);
}

@keyframes smartCardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 24px);
  }
}

/* Add a physical phone tilt to every AuraMenu concept. */
.menu-design {
  perspective: 1400px;
}

.menu-design .menu-phone {
  border: 8px solid #151916;
  box-shadow:
    0 38px 55px rgba(12, 30, 24, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotateX(2deg) rotateY(-7deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease;
}

.menu-design:nth-child(even) .menu-phone {
  transform: rotateX(2deg) rotateY(7deg) rotateZ(1deg);
}

.menu-design:hover .menu-phone {
  transform: translateY(-8px) rotateX(0) rotateY(0) rotateZ(0);
  box-shadow: 0 48px 70px rgba(12, 30, 24, 0.24);
}

.menu-design .menu-phone::after {
  content: "";
  position: absolute;
  z-index: 20;
  left: 50%;
  top: 7px;
  width: 64px;
  height: 6px;
  border-radius: 99px;
  background: #151916;
  transform: translateX(-50%);
  opacity: 0.9;
}

@keyframes orbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes showcaseFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotateY(-3deg);
  }
  50% {
    transform: translateX(-50%) translateY(-8px) rotateY(3deg);
  }
}

@media (max-width: 820px) {
  .brand-logo {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .menu-price-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .menu-price-banner p {
    text-align: left;
  }
  .smart-products {
    grid-template-columns: 1fr;
  }
  .card-3d-stage {
    min-height: 460px;
  }
  .smart-card-slot {
    width: min(420px, 76vw);
  }
}

@media (max-width: 560px) {
  .card-3d-stage {
    min-height: 410px;
  }
  .smart-card-slot {
    width: 82vw;
  }
  .nfc-slot,
  .nfc-slot-secondary {
    left: -8px;
  }
  .qr-slot,
  .qr-slot-featured {
    right: -8px;
  }
  .smart-card-3d {
    border-radius: 20px;
    padding: 20px;
  }
  .smart-card-top img {
    width: 34px;
    height: 34px;
  }
  .qr-card-content {
    grid-template-columns: 82px 1fr;
    gap: 15px;
  }
  .qr-cube {
    width: 82px;
    height: 82px;
    border-width: 6px;
  }
  .nfc-signal {
    right: 7%;
    transform: translateY(-50%) scale(0.76) rotate(-12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring-a,
  .orbit-ring-b,
  .showcase-product,
  .smart-card-3d {
    animation: none !important;
  }
  .menu-design .menu-phone {
    transition: none !important;
  }
}


/* QuickSite entry point */
.nav-quicksite,
.nav-quicksite-mobile {
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.nav-quicksite {
  display: inline-flex;
}

.nav-quicksite-mobile {
  display: none;
}

.nav-quicksite:hover,
.nav-quicksite-mobile:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.nav-quicksite-mobile::after {
  display: none;
}

@media (max-width: 1100px) {
  .nav-quicksite {
    padding: 0 12px;
  }
}

@media (max-width: 820px) {
  .nav-quicksite {
    display: none;
  }

  .nav-quicksite-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 4px;
    padding: 12px 14px;
  }
}

.menu-choice-modal{position:fixed;inset:0;z-index:200;display:grid;place-items:center;padding:18px}.menu-choice-modal[hidden]{display:none}.menu-choice-backdrop{position:absolute;inset:0;background:rgba(4,15,12,.72);backdrop-filter:blur(10px)}.menu-choice-card{position:relative;width:min(620px,100%);max-height:calc(100vh - 36px);overflow:auto;border-radius:28px;background:#f8f3e8;padding:clamp(24px,5vw,42px);box-shadow:0 35px 120px rgba(0,0,0,.35)}.menu-choice-close{position:absolute;top:16px;right:16px;width:40px;height:40px;border:1px solid rgba(12,30,24,.14);border-radius:50%;background:#fff;color:#0c1e18;font-size:24px;cursor:pointer}.menu-choice-card h2{font-size:clamp(30px,5vw,48px);line-height:1;letter-spacing:-.055em;margin:10px 40px 8px 0}.menu-choice-card>p{color:#68746f;margin:0 0 22px}.menu-choice-card fieldset{border:0;padding:0;margin:0;display:grid;gap:10px}.menu-choice-card legend{font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.09em;margin-bottom:10px}.menu-choice-card fieldset label{display:flex;gap:12px;align-items:flex-start;padding:15px;border:1px solid #d9d9cf;border-radius:16px;background:#fff;cursor:pointer}.menu-choice-card fieldset label:has(input:checked){border-color:#167a5a;box-shadow:0 0 0 3px rgba(22,122,90,.12)}.menu-choice-card input{margin-top:3px;accent-color:#167a5a}.menu-choice-card fieldset span{display:grid;gap:4px}.menu-choice-card fieldset b{font-size:14px}.menu-choice-card fieldset small,.menu-choice-note{color:#68746f;font-size:11px;line-height:1.5}.menu-choice-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:20px}.menu-choice-actions .btn{justify-content:center;text-align:center}.menu-choice-note{display:block;margin-top:13px;text-align:center}@media(max-width:620px){.menu-choice-actions{grid-template-columns:1fr}.menu-choice-card{border-radius:22px}.menu-choice-card h2{font-size:34px}}

/* AuraMenu choice: two distinct production paths */
.menu-choice-card{width:min(760px,100%);background:linear-gradient(145deg,#f7f2e6 0%,#eff8e9 100%);border:1px solid rgba(12,30,24,.12)}
.menu-choice-actions{grid-template-columns:repeat(2,minmax(0,1fr));align-items:stretch;margin-top:24px}
.menu-choice-action{position:relative;display:flex;flex-direction:column;justify-content:flex-start;gap:9px;min-height:216px;padding:22px;border:1px solid rgba(12,30,24,.14);border-radius:21px;background:#fff;color:#0c1e18;text-decoration:none;transition:transform .2s,box-shadow .2s,border-color .2s}
.menu-choice-action:hover{transform:translateY(-3px);box-shadow:0 18px 45px rgba(12,30,24,.12);border-color:#167a5a}
.menu-choice-action>b{display:flex;justify-content:space-between;gap:12px;font-size:18px;line-height:1.15}
.menu-choice-action b i{font-style:normal}
.menu-choice-action>small{color:#68746f;font-size:12px;line-height:1.5}
.menu-choice-action.self-featured{min-height:216px;background:#0c1e18;color:#fff;border-color:#0c1e18;box-shadow:0 18px 48px rgba(12,30,24,.22)}
.menu-choice-action.self-featured>small{color:#dbe9e2}
.menu-choice-action.self-featured>b{font-size:20px}
.menu-choice-badge{align-self:flex-start;padding:6px 9px;border-radius:999px;background:#d8ff45;color:#0c1e18;font-size:9px;font-weight:950;letter-spacing:.08em}
.menu-choice-badge.managed-badge{background:#e6ede5;color:#167a5a}
.menu-choice-action.managed-option{min-height:216px;border-color:rgba(22,122,90,.28)}
.menu-choice-includes{display:grid;gap:4px;margin-top:auto;padding-top:13px;border-top:1px solid rgba(12,30,24,.12)}
.menu-choice-includes strong{font-size:16px;line-height:1.2}
.menu-choice-includes em{color:#68746f;font-size:10px;font-style:normal;font-weight:800;line-height:1.35}
.menu-choice-action.self-featured .menu-choice-includes{border-top-color:rgba(255,255,255,.18)}
.menu-choice-action.self-featured .menu-choice-includes em{color:#dbe9e2}
@media(max-width:620px){.menu-choice-actions{grid-template-columns:1fr;gap:10px;margin-top:16px}.menu-choice-action,.menu-choice-action.self-featured,.menu-choice-action.managed-option{min-height:0;padding:16px}.menu-choice-action.self-featured>b{font-size:18px}.menu-choice-action>small{font-size:11px}.menu-choice-includes{padding-top:10px}}

/* AuraMenu hero: three clear customer paths */
.auramenu-hero .hero-actions{
  width:min(930px,100%);
  display:grid;
  grid-template-columns:.82fr 1.2fr 1fr;
  align-items:stretch;
  gap:12px;
  margin-top:34px;
}
.auramenu-hero .menu-action{
  position:relative;
  min-height:64px;
  padding:16px 20px;
  border-radius:18px;
  font-size:.8rem;
  line-height:1.25;
  text-align:center;
  letter-spacing:-.01em;
  box-shadow:0 12px 30px rgba(12,30,24,.08);
  transform:none;
}
.auramenu-hero .menu-action:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 42px rgba(12,30,24,.16);
}
.auramenu-hero .menu-action-designs{
  background:rgba(255,255,255,.62);
  color:var(--ink);
  border:1px solid rgba(12,30,24,.2);
}
.auramenu-hero .menu-action-designs:hover{
  background:#fff;
  color:var(--ink);
  border-color:var(--ink);
}
.auramenu-hero .menu-action-self{
  min-height:72px;
  background:var(--lime);
  color:var(--ink);
  border:2px solid var(--ink);
  font-size:.88rem;
  box-shadow:0 17px 36px rgba(101,130,18,.22);
}
.auramenu-hero .menu-action-self::before{
  content:"✦";
  width:27px;
  height:27px;
  flex:0 0 27px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--ink);
  color:#fff;
  font-size:.68rem;
}
.auramenu-hero .menu-action-self:hover{
  background:#f0ff98;
  color:var(--ink);
}
.auramenu-hero .menu-action-assisted{
  background:var(--ink);
  color:#fff;
  border:2px solid var(--ink);
  font-size:.84rem;
}
.auramenu-hero .menu-action-assisted::before{
  content:"A";
  width:27px;
  height:27px;
  flex:0 0 27px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--soft);
  color:var(--ink);
  font-size:.7rem;
  font-weight:950;
}
.auramenu-hero .menu-action-assisted:hover{
  background:#174c3c;
  color:#fff;
}
@media(max-width:900px){
  .auramenu-hero .hero-actions{grid-template-columns:1fr 1fr}
  .auramenu-hero .menu-action-designs{grid-column:1/-1}
}
@media(max-width:600px){
  .auramenu-hero .hero-actions{grid-template-columns:1fr}
  .auramenu-hero .menu-action-designs{grid-column:auto}
  .auramenu-hero .menu-action{width:100%;min-height:60px}
  .auramenu-hero .menu-action-self{min-height:68px}
}

/* 2026 complete mobile usability pass */
@media (max-width: 820px) {
  html{-webkit-text-size-adjust:100%;text-size-adjust:100%}
  body{min-width:320px}
  .container{width:min(calc(100% - 24px),var(--max))}
  img,video,iframe,svg{max-width:100%}
  button,a,input,textarea,select{touch-action:manipulation}
  .btn,.nav-cta,.menu-btn,.lang-current,.lang-menu button{min-height:44px}
  input,textarea,select{font-size:16px}

  .site-header{inset:8px 0 auto;padding:0 8px}
  .site-header .nav{height:62px;padding:0 10px 0 12px;gap:8px}
  .brand-logo{width:34px;height:34px;flex-basis:34px}
  .brand-wordmark strong{font-size:1rem}
  .lang-current{min-width:48px;padding:0 8px}
  .lang-current .lang-globe,.lang-current .lang-chevron{display:none}
  .menu-btn{width:44px;height:44px;flex:0 0 44px}
  .nav-links{top:70px;left:0;right:0;max-height:calc(100svh - 88px);overflow-y:auto;overscroll-behavior:contain;padding:12px}
  .nav-links a{width:100%;min-height:46px;display:flex;align-items:center;padding:12px}
  .nav-quicksite-mobile{min-height:48px}

  .reference-hero{height:auto;min-height:100svh}
  .reference-hero .hero-grid{min-height:100svh;grid-template-columns:1fr;padding-top:112px;padding-bottom:44px;align-content:end}
  .reference-hero h1{font-size:clamp(3rem,13vw,4.7rem);line-height:.94;overflow-wrap:anywhere}
  .reference-hero .hero-copy{font-size:.94rem;line-height:1.58}
  .reference-hero .hero-actions,.page-hero .hero-actions{width:100%;display:grid;grid-template-columns:1fr}
  .reference-hero .hero-actions .btn,.page-hero .hero-actions .btn{width:100%;min-height:50px}
  .hero-media{width:100%}

  .page-hero{min-height:auto;padding:120px 0 62px}
  .page-hero::after{width:112px;height:112px;right:-42px;top:104px;opacity:.45}
  .page-hero h1{font-size:clamp(2.7rem,12vw,4rem);line-height:.98;overflow-wrap:anywhere}
  .page-hero> .container>p,.page-hero p{font-size:.94rem;line-height:1.6}
  .crumb{font-size:.68rem;overflow-wrap:anywhere}

  .section{padding:66px 0}
  .section-head{grid-template-columns:1fr;gap:16px;margin-bottom:34px}
  .section-head h2,.cta-box h2,.video-overlay h2{font-size:clamp(2.55rem,11vw,3.9rem);line-height:.98;overflow-wrap:anywhere}
  .section-head>div>p,.section-head p{margin-top:16px;font-size:.93rem}
  .services-grid,.visual-explainers,.feature-split,.project-grid-home,.project-grid-full,.pricing-grid,.detail-grid,.nfc-demo,.contact-grid,.form-grid,.smart-products,.menu-gallery,.menu-design,.campaign-stage{grid-template-columns:1fr}
  .process{grid-template-columns:1fr}
  .service-card,.detail-card,.price-card,.contact-card,.contact-form,.feature-panel,.tap-card{padding:22px;border-radius:20px}
  .service-card,.price-card{min-height:auto}
  .process-step{min-height:190px;padding:22px}
  .feature-visual,.nfc-photo{min-height:330px}
  .video-panel{min-height:480px;border-radius:20px}
  .video-overlay{padding:22px}
  .cta-box{padding:34px 20px;border-radius:20px}
  .cta-box .hero-actions,.cta-box>div:last-child{width:100%;flex-wrap:wrap}
  .cta-box .btn{flex:1 1 100%}

  .trustgrid{grid-template-columns:repeat(2,1fr)}
  .trustitem{min-height:88px;padding:14px}
  .business-flow{grid-template-columns:1fr 1fr}
  .portfolio-intro{grid-template-columns:1fr 1fr}
  .project-meta{padding:20px;gap:14px}
  .project-arrow{flex-basis:38px;height:38px}
  .menu-price-banner{align-items:flex-start;flex-direction:column;gap:14px}
  .menu-price-banner p{text-align:left}
  .menu-style-strip{grid-template-columns:1fr 1fr}
  .menu-phone{min-height:460px}
  .menu-design-copy{padding:22px 10px 12px}
  .smart-product-copy{max-width:none}
  .card-3d-stage{min-height:430px}
  .qr-card-content{grid-template-columns:72px minmax(0,1fr)}
  .qr-cube{width:72px;height:72px;border-width:6px}

  .contact-lines a,.contact-lines span{overflow-wrap:anywhere}
  .price-toggle{width:100%;display:grid;grid-template-columns:1fr 1fr}
  .price-toggle button{min-height:44px}
  .dual-price{gap:8px}
  .faq-item summary{padding:18px 0}
  .footer-top{grid-template-columns:1fr;gap:30px}
  .footer-bottom{align-items:flex-start;flex-direction:column;gap:9px}
  .site-footer{padding-top:58px}
  .footer-col a{min-height:36px;display:flex;align-items:center}

  .cookie-consent{max-height:calc(100svh - 24px);overflow-y:auto}
  .chat-launcher{right:12px;bottom:12px}
  .chat-panel{right:10px;bottom:74px;width:calc(100vw - 20px);height:min(590px,calc(100svh - 88px));border-radius:18px}
  html[dir="rtl"] .chat-panel{left:10px;right:auto}
  .menu-choice-modal{padding:10px}
  .menu-choice-card{max-height:calc(100svh - 20px);padding:24px 18px;border-radius:20px}
  .menu-choice-card h2{font-size:clamp(30px,10vw,40px)}
}
@media (max-width: 480px) {
  .container{width:min(calc(100% - 20px),var(--max))}
  .reference-hero h1{font-size:clamp(2.75rem,13.5vw,3.8rem)}
  .page-hero h1{font-size:clamp(2.45rem,12.5vw,3.35rem)}
  .section{padding:56px 0}
  .section-head h2,.cta-box h2,.video-overlay h2{font-size:clamp(2.3rem,11.5vw,3.2rem)}
  .trustgrid{grid-template-columns:1fr}
  .business-flow{grid-template-columns:1fr}
  .portfolio-intro{grid-template-columns:1fr 1fr}
  .menu-style-strip{grid-template-columns:1fr}
  .menu-style-card{min-height:190px}
  .contact-card,.contact-form,.feature-panel,.tap-card,.service-card,.detail-card,.price-card{padding:19px}
  .video-panel{min-height:430px}
  .menu-phone{min-height:430px}
  .card-3d-stage{min-height:380px}
  .project-meta{align-items:flex-start}
  .project-arrow{display:none}
  .hero-actions{gap:9px}
  .hero-actions .btn{white-space:normal;text-align:center}
}

/* AuraDigital deployment checkpoint 2026-08-11 */
