:root {
  color-scheme: light;
  --navy-950: #050A14;
  --navy-900: #07111F;
  --navy-850: #0A1627;
  --blue: #315BFF;
  --blue-2: #5E7BFF;
  --light: #F7F9FC;
  --white: #FFFFFF;
  --ink: #07111F;
  --muted: #657089;
  --line: rgba(12, 25, 44, 0.1);
  --dark-line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 70px rgba(6, 14, 30, 0.14);
  --soft-shadow: 0 14px 36px rgba(8, 21, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
#contact-form {
  scroll-margin-top: 98px;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
}

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

.page-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 50;
  transition: transform 220ms ease, inset 220ms ease;
}

.nav-shell {
  width: min(1160px, calc(100% - 40px));
  min-height: 68px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--dark-line);
  border-radius: 24px;
  background: rgba(5, 10, 20, 0.68);
  padding: 0 18px 0 24px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  inset-block-start: 8px;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(5, 10, 20, 0.92);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--blue-2);
  font-size: 1.45rem;
  font-weight: 950;
  transform: skewX(-10deg);
}

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

.nav-links a:not(.btn) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.nav-links a:not(.btn):hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--dark-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 22px;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(49, 91, 255, 0.55);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1F51E8);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(49, 91, 255, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(49, 91, 255, 0.45);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.btn-small {
  min-height: 42px;
  border-radius: 8px;
  padding-inline: 17px;
  font-size: 0.76rem;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 16%, rgba(49, 91, 255, 0.24), transparent 27%),
    radial-gradient(circle at 24% 28%, rgba(49, 91, 255, 0.11), transparent 28%),
    linear-gradient(145deg, #02050A 0%, var(--navy-950) 42%, var(--navy-900) 100%);
  color: var(--white);
}

.hero {
  padding-block: 156px 54px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), transparent 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.2vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h1 span {
  color: var(--blue-2);
}

.hero-subtext {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.glow-grid {
  position: absolute;
  inset: 14% 2% auto auto;
  width: 88%;
  height: 76%;
  border-radius: 34px;
  background:
    linear-gradient(115deg, rgba(49, 91, 255, 0.18), transparent 52%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 32px);
  filter: blur(0.2px);
  transform: perspective(900px) rotateX(58deg) rotateZ(-18deg);
}

.laptop {
  position: absolute;
  right: 12px;
  top: 56px;
  width: min(92%, 570px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(12, 25, 44, 0.92), rgba(3, 8, 17, 0.98));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.48);
  padding: 14px;
  transform: rotate(-2deg);
}

.laptop-top {
  display: flex;
  gap: 7px;
  margin-bottom: 12px;
}

.laptop-top span,
.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.dashboard {
  min-height: 310px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 70% 10%, rgba(49, 91, 255, 0.35), transparent 28%),
    linear-gradient(145deg, #0A1728, #03070E);
  padding: 16px;
}

.dash-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
}

.dash-sidebar div {
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.dash-sidebar div:first-child {
  background: var(--blue);
}

.dash-main {
  display: grid;
  gap: 14px;
}

.dash-hero,
.dash-row {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  padding: 16px;
}

.dash-hero p,
.dash-row span {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.dash-hero strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2.45rem, 4.2vw, 3.4rem);
  line-height: 1;
}

.chart {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 10px;
  border-radius: 15px;
  background: rgba(49, 91, 255, 0.08);
  padding: 14px;
}

.chart i {
  flex: 1;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #6D86FF, var(--blue));
}

.chart i:nth-child(1) { height: 32%; }
.chart i:nth-child(2) { height: 48%; }
.chart i:nth-child(3) { height: 42%; }
.chart i:nth-child(4) { height: 68%; }
.chart i:nth-child(5) { height: 76%; }
.chart i:nth-child(6) { height: 92%; }

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-row b {
  color: var(--white);
}

.phone-mock {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 176px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  background: #05070C;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.phone-notch {
  width: 58px;
  height: 8px;
  margin: 0 auto 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-screen {
  min-height: 280px;
  border-radius: 23px;
  background:
    linear-gradient(180deg, rgba(49, 91, 255, 0.18), transparent 34%),
    #07111F;
  padding: 22px 16px;
}

.mini-brand {
  display: block;
  margin-bottom: 48px;
  color: var(--white);
  font-weight: 900;
}

.phone-screen h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.phone-screen p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.phone-screen button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.float-card {
  position: absolute;
  min-width: 166px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(10, 22, 39, 0.74);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  padding: 14px 16px;
  backdrop-filter: blur(16px);
}

.float-card span {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 950;
}

.float-card strong {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.card-google {
  right: 22px;
  top: 12px;
}

.card-growth {
  right: 2px;
  bottom: 94px;
}

.card-menu {
  left: 132px;
  top: 106px;
}

.ordering-section {
  padding-block: 92px 104px;
}

.ordering-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

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

.ordering-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.ordering-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.ordering-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0 30px;
}

.ordering-points span {
  min-height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  padding: 0 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.order-showcase {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 78% 18%, rgba(49, 91, 255, 0.24), transparent 28%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
  box-shadow: 0 30px 90px rgba(6, 14, 30, 0.18);
  overflow: hidden;
}

.order-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 72%);
}

.order-phone {
  position: absolute;
  left: 50%;
  top: 48px;
  width: min(72%, 330px);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 36px;
  background: #05070C;
  padding: 12px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.order-screen {
  min-height: 430px;
  border-radius: 26px;
  background: linear-gradient(180deg, #F9FBFF 0%, #EEF3FA 100%);
  padding: 22px;
}

.order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.order-top span {
  color: var(--blue);
  font-weight: 950;
}

.order-top strong {
  color: var(--ink);
  font-size: 1rem;
}

.menu-item,
.cart-box {
  border: 1px solid rgba(12, 25, 44, 0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 21, 42, 0.08);
}

.menu-item {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  padding: 0 14px;
}

.menu-item span,
.menu-item b {
  color: var(--ink);
  font-size: 0.9rem;
}

.cart-box {
  display: grid;
  gap: 2px;
  margin-top: 18px;
  padding: 16px;
}

.cart-box span,
.cart-box small {
  color: var(--muted);
}

.cart-box strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.order-screen button {
  width: 100%;
  min-height: 52px;
  margin-top: 16px;
  border: 0;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  font-weight: 950;
  font-size: 0.98rem;
}

.order-ticket {
  position: absolute;
  right: 30px;
  bottom: 34px;
  width: min(48%, 260px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  padding: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.order-ticket span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 850;
}

.order-ticket strong {
  display: block;
  margin-block: 4px;
  font-size: 2rem;
  line-height: 1;
}

.order-ticket p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.trust {
  position: relative;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.trust-logos span {
  display: grid;
  min-height: 52px;
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 950;
  filter: grayscale(1);
}

.section-light {
  background: var(--light);
  padding-block: 98px;
}

.section-heading {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 48px;
  text-align: center;
}

.section-heading h2,
.split-heading h2,
.faq-intro h2,
.cta-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-heading p:not(.eyebrow),
.faq-intro p:not(.eyebrow),
.cta-card p {
  color: var(--muted);
}

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

.service-card,
.project-card,
.comparison-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.service-card {
  min-height: 242px;
  padding: 30px;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 91, 255, 0.24);
  box-shadow: var(--shadow);
}

.service-card span,
.process-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 12px;
  background: rgba(49, 91, 255, 0.1);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
}

.service-card h3,
.process-card h3,
.project-card h3,
.comparison-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.service-card p,
.process-card p,
.project-card p,
.comparison-card li,
.faq-list p {
  color: var(--muted);
  font-size: 0.96rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.stats-row div {
  display: grid;
  min-height: 130px;
  place-items: center;
  align-content: center;
  background: var(--white);
  text-align: center;
}

.stats-row strong {
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1;
}

.stats-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.problem-section,
.seo-hub {
  padding-block-start: 0;
}

.compact-grid .service-card {
  min-height: 218px;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.seo-topic-card {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 90% 10%, rgba(49, 91, 255, 0.13), transparent 34%),
    var(--white);
  padding: 26px;
  box-shadow: var(--soft-shadow);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.seo-topic-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 91, 255, 0.24);
  box-shadow: var(--shadow);
}

.seo-topic-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-topic-card strong {
  display: block;
  margin-top: 26px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.seo-hero {
  padding-block: 150px 92px;
}

.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 58px;
}

.seo-hero h1 {
  max-width: 850px;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  line-height: 1.02;
}

.seo-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.seo-proof-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 0%, rgba(49, 91, 255, 0.36), transparent 36%),
    rgba(255, 255, 255, 0.06);
  padding: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.seo-proof-card span {
  display: flex;
  min-height: 54px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-weight: 900;
  padding-inline: 16px;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.seo-main,
.seo-side,
.seo-inline-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.seo-main {
  padding: clamp(28px, 5vw, 58px);
}

.seo-main h2 {
  margin: 28px 0 12px;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.12;
}

.seo-main h2:first-child {
  margin-top: 0;
}

.seo-main p,
.seo-check-list {
  color: var(--muted);
}

.seo-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.seo-inline-cta {
  margin-top: 34px;
  background:
    radial-gradient(circle at 88% 16%, rgba(49, 91, 255, 0.22), transparent 34%),
    var(--navy-950);
  color: var(--white);
  padding: clamp(24px, 4vw, 38px);
}

.seo-inline-cta h2 {
  margin-top: 0;
}

.seo-inline-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.seo-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.seo-side h2 {
  margin: 0 0 4px;
  font-size: 1rem;
  text-transform: uppercase;
}

.seo-side a {
  display: flex;
  min-height: 52px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--light);
  color: var(--ink);
  font-weight: 900;
  padding-inline: 15px;
  transition: border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.seo-side a:hover {
  transform: translateX(3px);
  border-color: rgba(49, 91, 255, 0.26);
  color: var(--blue);
}

.process {
  padding-block: 104px;
}

.process .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  padding: 28px;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(49, 91, 255, 0.18);
  filter: blur(10px);
}

.process-card p {
  color: rgba(255, 255, 255, 0.66);
}

.before-after,
.projects {
  padding-block-start: 102px;
}

.split-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.before-after .split-heading h2 {
  font-size: clamp(2.2rem, 3.35vw, 3.45rem);
  line-height: 1.08;
}

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

.comparison-card {
  overflow: hidden;
  padding: 26px;
}

.browser-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.browser-bar span {
  background: rgba(7, 17, 31, 0.2);
}

.comparison-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
}

.old-site,
.new-site {
  min-height: 230px;
  border-radius: 20px;
}

.old-site {
  display: grid;
  gap: 14px;
  align-content: start;
  background: #ECEFF5;
  padding: 24px;
}

.old-site i {
  display: block;
  height: 44px;
  border-radius: 8px;
  background: #D6DCE8;
}

.old-site i:first-child {
  width: 60%;
  height: 70px;
}

.new-site {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 76% 22%, rgba(49, 91, 255, 0.36), transparent 28%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  padding: 24px;
}

.new-site strong,
.new-site span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 12px;
  padding-inline: 18px;
  font-weight: 900;
}

.new-site strong {
  background: var(--blue);
}

.new-site span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.75);
}

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

.project-card {
  overflow: hidden;
  padding: 14px 14px 24px;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.project-preview {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 244px;
  align-content: end;
  gap: 8px;
  border-radius: 17px;
  color: var(--white);
  padding: 24px;
}

.project-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 20, 0.06) 0%, rgba(5, 10, 20, 0.2) 35%, rgba(5, 10, 20, 0.88) 100%),
    radial-gradient(circle at 20% 20%, rgba(49, 91, 255, 0.22), transparent 34%);
}

.project-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.project-preview span {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.project-preview strong {
  position: relative;
  z-index: 1;
  max-width: 240px;
  font-size: 1.72rem;
  line-height: 1.08;
}

.italian {
  background: #10151D;
}

.cafe {
  background: #19120E;
}

.pizza {
  background: #1B100D;
}

.project-card h3 {
  margin: 22px 10px 4px;
}

.project-card p {
  margin: 0 10px;
}

.cta-section {
  padding-block: 72px 92px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 20%, rgba(49, 91, 255, 0.32), transparent 30%),
    linear-gradient(135deg, var(--navy-900), #02050A);
  color: var(--white);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 30px 90px rgba(6, 14, 30, 0.22);
}

.cta-card p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  margin-top: 28px;
}

.contact-copy,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.contact-copy {
  padding: clamp(26px, 4vw, 42px);
}

.contact-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.06;
}

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

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a,
.contact-methods span {
  display: flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--light);
  padding: 0 15px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 17, 31, 0.14);
  border-radius: 13px;
  background: #FBFCFF;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 14px 15px;
  outline: none;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(49, 91, 255, 0.64);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(49, 91, 255, 0.12);
}

.contact-form button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-note.is-success {
  color: #116B39;
  font-weight: 800;
}

.form-note.is-error {
  color: #A32929;
  font-weight: 800;
}

.faq {
  padding-block-start: 28px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 0 22px;
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  content: "+";
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: rgba(49, 91, 255, 0.1);
  color: var(--blue);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: -4px 22px 22px;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(49, 91, 255, 0.16), transparent 30%),
    var(--navy-950);
  color: var(--white);
  padding-block: 68px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 44px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid h2 {
  margin: 6px 0 14px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer-grid a {
  min-height: 32px;
}

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

.footer-bottom {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

.mobile-cta {
  display: none;
}

.demo-hero {
  padding-block: 150px 76px;
}

.demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 44px;
}

.demo-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.demo-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

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

.demo-hero-proof div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.demo-hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
}

.demo-hero-proof span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.demo-flow-section {
  padding-block: 96px;
}

.demo-flow-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  gap: 24px;
}

.demo-phone-panel,
.restaurant-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.demo-phone-panel {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 640px;
  background:
    radial-gradient(circle at 65% 10%, rgba(49, 91, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #F8FAFF, #EEF3FA);
  padding: 34px;
}

.demo-phone {
  width: min(100%, 360px);
  border: 1px solid rgba(7, 17, 31, 0.18);
  border-radius: 38px;
  background: #05070C;
  box-shadow: 0 28px 80px rgba(7, 17, 31, 0.24);
  padding: 12px;
}

.demo-screen {
  min-height: 540px;
  border-radius: 28px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F5FA 100%);
  padding: 20px;
}

.demo-restaurant-head {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.demo-restaurant-head span {
  color: var(--blue);
  font-weight: 950;
}

.demo-restaurant-head strong {
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.1;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow: auto;
}

.demo-tabs span,
.demo-options span {
  flex: 0 0 auto;
  border: 1px solid rgba(12, 25, 44, 0.1);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.demo-tabs .is-active {
  background: var(--blue);
  color: var(--white);
}

.demo-dish,
.demo-cart {
  border: 1px solid rgba(12, 25, 44, 0.08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(8, 21, 42, 0.08);
}

.demo-dish {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 14px;
}

.demo-dish strong,
.demo-dish b {
  color: var(--ink);
}

.demo-dish span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.demo-options {
  display: flex;
  gap: 7px;
  margin: 0 0 10px;
  overflow: auto;
}

.demo-cart {
  display: grid;
  gap: 2px;
  margin-top: 16px;
  padding: 16px;
}

.demo-cart span,
.demo-cart small {
  color: var(--muted);
}

.demo-cart strong {
  color: var(--ink);
  font-size: 2.1rem;
  line-height: 1;
}

.demo-screen button {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border: 0;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  font-weight: 950;
}

.restaurant-panel {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.restaurant-panel h3 {
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.04;
}

.order-admin-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--light);
  padding: 22px;
}

.order-admin-card > div:first-child,
.order-admin-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.order-admin-card span {
  color: var(--muted);
  font-weight: 850;
}

.order-admin-card strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.order-admin-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.order-admin-card li {
  border-radius: 14px;
  background: var(--white);
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 780;
}

.order-admin-total {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.demo-trust-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.demo-trust-list span {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
  font-weight: 850;
}

.demo-benefits {
  padding-block: 96px;
}

.demo-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.demo-cta-section {
  padding-block: 78px 98px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .page-shell,
  .nav-shell {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    inset-block-start: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    display: none;
    border: 1px solid var(--dark-line);
    border-radius: 18px;
    background: rgba(5, 10, 20, 0.97);
    padding: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a:not(.btn),
  .nav-links .btn {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
  }

  .hero {
    padding-block-start: 126px;
  }

  .hero-grid,
  .demo-hero-grid,
  .seo-hero-grid,
  .seo-content-grid,
  .demo-flow-grid,
  .ordering-grid,
  .faq-grid,
  .cta-card,
  .contact-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

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

  .laptop {
    right: 0;
    width: 92%;
  }

  .services-grid,
  .projects-grid,
  .seo-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .demo-benefit-grid,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-logos {
    grid-template-columns: repeat(5, 1fr);
  }

  .seo-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .nav-shell {
    width: calc(100% - 24px);
  }

  .nav-shell {
    min-height: 62px;
    border-radius: 18px;
    padding-inline: 15px 10px;
  }

  .brand {
    font-size: 1.06rem;
  }

  .hero {
    padding-block: 112px 92px;
  }

  h1 {
    font-size: clamp(1.85rem, 8.1vw, 2.45rem);
    line-height: 1.06;
  }

  .demo-hero {
    padding-block: 116px 68px;
  }

  .demo-hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    line-height: 1;
  }

  .demo-hero-grid,
  .demo-flow-grid,
  .demo-benefit-grid {
    grid-template-columns: 1fr;
  }

  .demo-hero-proof {
    gap: 10px;
  }

  .demo-hero-proof div {
    padding: 18px;
  }

  .demo-hero-proof strong {
    font-size: 1.75rem;
  }

  .demo-flow-section,
  .demo-benefits {
    padding-block: 72px;
  }

  .demo-phone-panel {
    min-height: auto;
    padding: 20px;
  }

  .demo-screen {
    min-height: 500px;
    padding: 18px;
  }

  .restaurant-panel {
    padding: 24px;
  }

  .restaurant-panel h3 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .order-admin-card > div:first-child,
  .order-admin-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-card .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: -6px;
  }

  .laptop {
    top: 44px;
    width: 100%;
    padding: 10px;
  }

  .dashboard {
    grid-template-columns: 58px 1fr;
    min-height: 276px;
    gap: 10px;
    padding: 10px;
  }

  .dash-sidebar {
    padding: 8px;
  }

  .dash-hero strong {
    font-size: 2.65rem;
  }

  .chart {
    height: 72px;
  }

  .phone-mock {
    width: 148px;
    bottom: 16px;
  }

  .phone-screen {
    min-height: 236px;
    padding: 17px 12px;
  }

  .mini-brand {
    margin-bottom: 34px;
  }

  .float-card {
    min-width: 132px;
    padding: 11px 12px;
  }

  .float-card span {
    font-size: 0.78rem;
  }

  .card-google {
    right: 6px;
    top: 2px;
  }

  .card-growth {
    right: 0;
    bottom: 76px;
  }

  .card-menu {
    left: 90px;
    top: 118px;
  }

  .trust-logos,
  .services-grid,
  .seo-card-grid,
  .seo-content-grid,
  .ordering-points,
  .process-grid,
  .projects-grid,
  .stats-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-light,
  .process,
  .seo-hero {
    padding-block: 72px;
  }

  .seo-hero {
    padding-block-start: 112px;
  }

  .seo-hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.75rem);
  }

  .ordering-section {
    padding-block: 70px;
  }

  .ordering-copy h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .order-showcase {
    min-height: 520px;
    margin-inline: -2px;
  }

  .order-phone {
    top: 28px;
    width: min(86%, 300px);
  }

  .order-screen {
    min-height: 400px;
    padding: 18px;
  }

  .order-ticket {
    right: 18px;
    bottom: 18px;
    width: min(70%, 230px);
  }

  .section-heading {
    text-align: left;
  }

  .service-card,
  .process-card,
  .comparison-card {
    padding: 24px;
  }

  .project-preview {
    min-height: 220px;
  }

  .faq {
    padding-block-start: 0;
  }

  body {
    padding-bottom: 82px;
  }

  section,
  #contact-form {
    scroll-margin-top: 88px;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 12px 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(5, 10, 20, 0.88);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    padding: 8px;
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 48px;
    place-items: center;
    border-radius: 12px;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 950;
  }

  .mobile-cta a:first-child {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-cta a:last-child {
    background: var(--blue);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
