:root {
  --navy: #06184d;
  --navy-2: #0a2867;
  --blue: #007ebf;
  --cyan: #08afe5;
  --cyan-light: #e8f9ff;
  --ink: #101b3d;
  --muted: #63708d;
  --line: #dfe6ef;
  --surface: #f5f8fc;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(5, 26, 76, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255,255,255,.84);
  border-bottom: 1px solid rgba(6,24,77,.07);
  backdrop-filter: blur(14px);
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  border-color: rgba(6,24,77,.1);
  box-shadow: 0 8px 30px rgba(6,24,77,.1);
  backdrop-filter: blur(16px);
}
.navbar { height: 72px; display: flex; align-items: center; justify-content: space-between; transition: height .3s ease; }
.site-header.scrolled .navbar { height: 62px; }
.brand img { width: 145px; height: 49px; object-fit: contain; transition: .3s ease; }
.site-header.scrolled .brand img { width: 132px; height: 44px; }
.nav-links { display: flex; align-items: center; gap: 34px; color: #243252; font-size: 14px; font-weight: 600; }
.nav-links > a:not(.button) { position: relative; }
.nav-links > a:not(.button)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px;
  background: var(--cyan); transition: right .25s ease;
}
.nav-links > a:hover::after { right: 0; }
.menu-button { display: none; border: 0; background: none; padding: 8px; }
.menu-button span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--navy); transition: .25s; }

.button {
  display: inline-flex; justify-content: center; align-items: center; gap: 14px;
  min-height: 56px; padding: 0 25px; border: 0; border-radius: 8px;
  color: var(--white); background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(0, 153, 213, .25);
  font-size: 14px; font-weight: 700; cursor: pointer; transition: .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0, 153, 213, .32); }
.button-small { min-height: 44px; padding-inline: 22px; border-radius: 999px; }

.hero {
  position: relative; overflow: hidden; min-height: 915px; padding-top: 72px;
  background: linear-gradient(125deg, #06143d 0%, #09265b 53%, #08356c 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image: linear-gradient(rgba(6,24,77,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(6,24,77,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); }
.hero-glow-one { width: 460px; height: 460px; right: -210px; top: 80px; background: rgba(9,175,228,.1); }
.hero-glow-two { width: 300px; height: 300px; left: -180px; bottom: 100px; background: rgba(0,83,153,.07); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 45px; min-height: 755px; padding-block: 70px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 25px;
  color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.eyebrow span { width: 22px; height: 2px; background: var(--cyan); }
.hero h1 { max-width: 720px; margin: 0; color: white; font-size: clamp(42px, 5vw, 68px); line-height: 1.03; letter-spacing: -.05em; font-weight: 500; }
.hero h1 strong { color: var(--cyan); font-weight: 800; }
.hero-slider { min-width: 0; }
.hero-slides { position: relative; min-height: 570px; }
.hero-slide {
  position: absolute; inset: 0; visibility: hidden; opacity: 0; pointer-events: none;
  transform: translateX(28px); transition: opacity .45s ease, transform .55s ease, visibility .45s;
}
.hero-slide.active { visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(0); }
.hero-slide > p { max-width: 590px; margin: 25px 0 0; color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.75; }
.slide-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.slide-tags span {
  padding: 7px 11px; border: 1px solid rgba(0,126,191,.15); border-radius: 30px;
  color: #a9eaff; background: rgba(255,255,255,.08); font-size: 9px; font-weight: 800;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 35px; }
.text-link { color: white; font-size: 14px; font-weight: 700; }
.text-link span { margin-left: 8px; color: var(--cyan); }
.slider-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 12px; }
.slider-controls { display: flex; align-items: center; gap: 10px; }
.slider-arrow {
  display: grid; place-items: center; width: 34px; height: 34px; padding: 0;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: white;
  background: rgba(255,255,255,.08); cursor: pointer; transition: .25s ease;
}
.slider-arrow:hover { color: white; border-color: var(--blue); background: var(--blue); transform: translateY(-1px); }
.slider-dots { display: flex; align-items: center; gap: 5px; }
.slider-dot { width: 28px; height: 18px; padding: 0; border: 0; background: none; cursor: pointer; }
.slider-dot span { display: block; overflow: hidden; height: 3px; border-radius: 5px; background: rgba(255,255,255,.2); }
.slider-dot span::after {
  content: ""; display: block; width: 0; height: 100%; border-radius: inherit; background: var(--cyan);
}
.slider-dot.active span::after { width: 100%; transition: width 5.5s linear; }
.hero-proof { display: flex; align-items: center; gap: 14px; }
.proof-avatars { display: flex; }
.proof-avatars span {
  display: grid; place-items: center; width: 36px; height: 36px; margin-right: -8px;
  border: 3px solid white; border-radius: 50%; color: white; background: var(--navy); font-size: 10px; font-weight: 800;
}
.proof-avatars span:nth-child(2) { background: var(--blue); }
.proof-avatars span:nth-child(3) { background: var(--cyan); }
.hero-proof p { margin: 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.4; }
.hero-proof strong { color: white; font-size: 12px; }

.hero-copy { position: relative; z-index: 5; }
.hero-visual { position: relative; align-self: stretch; min-height: 610px; }
.hero-visual-gallery { z-index: 1; }
.hero-image-frame {
  position: absolute; z-index: 2; top: -70px; bottom: -45px; left: -135px;
  right: min(-20px, calc((1160px - 100vw) / 2)); overflow: hidden;
  background: var(--navy);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 14%, #000 38%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 14%, #000 38%);
}
.hero-image-slide {
  position: absolute; inset: 0; margin: 0; visibility: hidden; opacity: 0;
  transform: scale(1.05); transition: opacity .65s ease, transform 1.1s ease, visibility .65s;
}
.hero-image-slide.active { visibility: visible; opacity: 1; transform: scale(1); }
.hero-image-slide::before {
  content: ""; position: absolute; z-index: 1; inset: 0;
  background: linear-gradient(to right, rgba(3,15,48,.88) 0%, rgba(3,15,48,.48) 24%, rgba(3,15,48,.22) 58%, rgba(3,15,48,.4) 100%);
}
.hero-image-slide::after {
  content: ""; position: absolute; z-index: 1; inset: 38% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(3,16,53,.78));
}
.hero-image-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image-slide figcaption { position: absolute; z-index: 2; left: auto; right: max(34px, calc((100vw - 1160px) / 2 + 20px)); bottom: 62px; max-width: 270px; color: white; text-align: right; }
.hero-image-slide figcaption small,
.hero-image-slide figcaption strong,
.hero-image-slide figcaption span { display: block; }
.hero-image-slide figcaption small { margin-bottom: 7px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-image-slide figcaption strong { margin-bottom: 5px; font-size: 27px; letter-spacing: -.03em; }
.hero-image-slide figcaption span { color: rgba(255,255,255,.76); font-size: 11px; }
.image-status {
  position: absolute; z-index: 5; top: 28px; right: max(30px, calc((100vw - 1160px) / 2 + 20px)); padding: 9px 13px;
  border-radius: 30px; color: #146f52; background: rgba(255,255,255,.92);
  box-shadow: 0 8px 20px rgba(6,24,77,.12); font-size: 9px; font-weight: 800;
}
.image-status i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #24b984; }
.image-counter {
  position: absolute; z-index: 5; right: max(30px, calc((100vw - 1160px) / 2 + 20px)); bottom: 28px; display: flex; align-items: baseline; gap: 5px; color: white;
}
.image-counter .current-slide { color: var(--cyan); font-size: 22px; font-weight: 800; }
.image-counter em, .image-counter span:last-child { color: rgba(255,255,255,.55); font-size: 9px; font-style: normal; }
.image-source { position: absolute; z-index: 4; right: max(20px, calc((100vw - 1160px) / 2)); bottom: -35px; color: rgba(255,255,255,.68); font-size: 8px; }
.image-source a { color: var(--blue); font-weight: 700; }
.hero-visual-gallery .orbit,
.hero-visual-gallery .floating-card { display: none; }
.orbit { position: absolute; border: 1px solid rgba(0,139,201,.16); border-radius: 50%; }
.orbit-one { width: 540px; height: 540px; left: -35px; top: -30px; }
.orbit-two { width: 420px; height: 420px; left: 24px; top: 30px; }
.dashboard-card {
  position: absolute; z-index: 2; inset: 35px 4px auto 35px; padding: 27px;
  border: 1px solid rgba(255,255,255,.9); border-radius: 25px; background: rgba(255,255,255,.88);
  box-shadow: var(--shadow); backdrop-filter: blur(16px); transform: rotate(1.5deg);
}
.dashboard-top, .chart-heading { display: flex; align-items: flex-start; justify-content: space-between; }
.mini-label { color: #8d98ad; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.dashboard-top h3 { margin: 5px 0 0; color: var(--navy); font-size: 20px; }
.live-badge { padding: 7px 11px; border-radius: 20px; color: #187c5b; background: #e9f9f2; font-size: 10px; font-weight: 700; }
.live-badge i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #25b882; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 14px; }
.metric { position: relative; padding: 18px; border-radius: 14px; background: #f5f8fc; }
.metric > span { display: block; color: var(--muted); font-size: 10px; }
.metric strong { display: block; margin: 4px 0; color: var(--navy); font-size: 22px; }
.metric small { color: #8993a8; font-size: 9px; }
.metric .positive { color: #169c70; }
.chart-card { padding: 18px 18px 0; border: 1px solid #edf1f6; border-radius: 14px; }
.chart-heading span { color: var(--navy); font-size: 11px; font-weight: 700; }
.chart-heading b { color: #9aa3b6; font-size: 8px; }
.chart-card svg { width: 100%; height: 145px; overflow: visible; }
.chart-area { fill: url(#area); }
.chart-line { fill: none; stroke: var(--cyan); stroke-width: 4; stroke-linecap: round; }
.floating-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.9); border-radius: 13px; background: rgba(255,255,255,.94);
  box-shadow: 0 15px 35px rgba(6,24,77,.13); backdrop-filter: blur(12px);
}
.floating-sales { left: -20px; bottom: 72px; }
.floating-ai { right: -30px; top: 72px; }
.floating-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; color: white; background: #23b783; font-size: 13px; }
.ai-icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { margin-bottom: 2px; color: #929bae; font-size: 8px; }
.floating-card strong { color: var(--navy); font-size: 10px; }
.sector-strip { position: absolute; inset: auto 0 0; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.1); background: rgba(3,15,48,.55); }
.sector-strip .container { display: flex; align-items: center; justify-content: space-between; color: #65708a; }
.sector-strip span { color: #a0a8b8; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.sector-strip b { color: rgba(255,255,255,.72); font-size: 12px; }
.sector-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); }

.section { padding: 120px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 55px; }
.section-heading > p { max-width: 430px; margin: 0 0 5px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.section-kicker { display: block; margin-bottom: 15px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section h2, .contact-section h2 { margin: 0; color: var(--navy); font-size: clamp(36px, 4vw, 52px); line-height: 1.12; letter-spacing: -.04em; }
.section h2 em { color: var(--blue); font-style: normal; }
.solutions { background: white; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.solution-card {
  position: relative; overflow: hidden; min-height: 295px; padding: 31px;
  border: 1px solid var(--line); border-radius: 16px; background: white; transition: .3s ease;
}
.solution-card::after {
  content: ""; position: absolute; right: -50px; bottom: -70px; width: 150px; height: 150px;
  border: 1px solid rgba(9,175,228,.18); border-radius: 50%; transition: .3s ease;
}
.solution-card:hover { transform: translateY(-6px); border-color: rgba(9,175,228,.5); box-shadow: 0 20px 50px rgba(6,24,77,.1); }
.solution-card:hover::after { transform: scale(1.25); }
.card-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 11px; color: var(--blue); background: var(--cyan-light); font-size: 23px; font-weight: 500; }
.card-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 32px; right: 30px; color: #a5afc0; font-size: 10px; font-weight: 700; }
.solution-card h3 { margin: 24px 0 10px; color: var(--navy); font-size: 18px; }
.solution-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.solution-card a { display: inline-flex; gap: 8px; margin-top: 20px; color: var(--blue); font-size: 11px; font-weight: 800; }
.featured { color: white; border-color: var(--navy); background: linear-gradient(140deg, var(--navy), var(--navy-2)); box-shadow: 0 18px 45px rgba(6,24,77,.18); }
.featured .card-icon { color: white; background: rgba(255,255,255,.1); }
.featured .card-number { color: rgba(255,255,255,.45); }
.featured h3, .featured a { color: white; }
.featured p { color: rgba(255,255,255,.68); }
.featured::after { border-color: rgba(9,175,228,.35); }
.chatbot { border-color: rgba(9,175,228,.5); background: linear-gradient(145deg, white, #f1fbff); }

.smart-scheduling {
  position: relative; overflow: hidden; color: white;
  background: linear-gradient(135deg, #06143d 0%, #08285f 68%, #064d80 100%);
}
.smart-scheduling::before {
  content: ""; position: absolute; width: 520px; height: 520px; top: -270px; right: -180px;
  border: 1px solid rgba(9,175,228,.2); border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(9,175,228,.025), 0 0 0 180px rgba(9,175,228,.018);
}
.smart-scheduling .container { position: relative; z-index: 2; }
.scheduling-top { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 90px; }
.smart-scheduling h2 { color: white; }
.smart-scheduling h2 em { color: var(--cyan); }
.scheduling-copy > p { max-width: 520px; margin: 24px 0 31px; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.75; }
.scheduling-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
.scheduling-features article {
  display: grid; grid-template-columns: 32px 1fr; gap: 13px; min-height: 150px; padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.scheduling-features article > span {
  display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%;
  color: var(--cyan); background: rgba(9,175,228,.12); font-size: 9px; font-weight: 800;
}
.scheduling-features h3 { margin: 3px 0 8px; font-size: 14px; }
.scheduling-features p { margin: 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.65; }
.agenda-showcase {
  position: relative; margin-top: 65px; padding: 10px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 19px; background: rgba(255,255,255,.92); box-shadow: 0 35px 80px rgba(0,0,0,.28);
}
.agenda-showcase-bar { display: flex; align-items: center; justify-content: space-between; padding: 8px 7px 15px; color: var(--navy); }
.agenda-showcase-bar > div { display: flex; align-items: center; gap: 8px; }
.agenda-showcase-bar i { width: 8px; height: 8px; border-radius: 50%; background: #25c985; box-shadow: 0 0 0 4px rgba(37,201,133,.12); }
.agenda-showcase-bar span { font-size: 10px; font-weight: 800; }
.agenda-showcase-bar strong { display: flex; align-items: center; gap: 7px; color: var(--blue); font-size: 9px; }
.agenda-showcase-bar strong span { color: var(--cyan); font-size: 15px; }
.agenda-showcase > img { width: 100%; border: 1px solid #e7ebef; border-radius: 9px; }
.agenda-floating-card {
  position: absolute; right: 32px; bottom: -27px; display: flex; align-items: center; gap: 11px;
  padding: 14px 17px; border: 1px solid rgba(255,255,255,.8); border-radius: 13px;
  color: var(--ink); background: white; box-shadow: 0 16px 40px rgba(3,15,48,.23);
}
.agenda-floating-card > span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 9px; color: white; background: #25c985; }
.agenda-floating-card small, .agenda-floating-card strong { display: block; }
.agenda-floating-card small { margin-bottom: 2px; color: #8b96a9; font-size: 8px; }
.agenda-floating-card strong { color: var(--navy); font-size: 10px; }
.agenda-privacy { margin: 38px 0 0; color: rgba(255,255,255,.4); text-align: right; font-size: 8px; }

.restaurant-platform { overflow: hidden; background: #f5f8fc; }
.restaurant-heading { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 90px; }
.restaurant-heading h2 { max-width: 610px; }
.restaurant-intro > p { margin: 0 0 26px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.restaurant-points {
  display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px;
  border: 1px solid var(--line); border-radius: 16px; background: white;
}
.restaurant-points article {
  display: grid; grid-template-columns: 30px 1fr; gap: 12px; min-height: 170px; padding: 27px 22px;
  border-right: 1px solid var(--line); transition: .25s ease;
}
.restaurant-points article:last-child { border-right: 0; }
.restaurant-points article:hover { background: #f0faff; }
.restaurant-points article > span {
  display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%;
  color: var(--blue); background: var(--cyan-light); font-size: 9px; font-weight: 800;
}
.restaurant-points h3 { margin: 3px 0 8px; color: var(--navy); font-size: 13px; }
.restaurant-points p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
.restaurant-showcase {
  position: relative; margin-top: 45px; padding: 10px; border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), #0a3477); box-shadow: 0 28px 70px rgba(6,24,77,.2);
}
.restaurant-showcase-top { display: flex; align-items: center; justify-content: space-between; padding: 8px 8px 16px; color: white; }
.restaurant-showcase-top > div { display: flex; align-items: center; gap: 8px; }
.restaurant-showcase-top i { width: 8px; height: 8px; border-radius: 50%; background: #25c985; box-shadow: 0 0 0 4px rgba(37,201,133,.13); }
.restaurant-showcase-top span { font-size: 10px; font-weight: 800; }
.restaurant-showcase-top strong { color: var(--cyan); font-size: 9px; }
.restaurant-showcase > img { width: 100%; border-radius: 10px; }
.restaurant-floating-stat {
  position: absolute; right: 31px; bottom: -26px; display: flex; align-items: center; gap: 11px;
  padding: 14px 18px; border: 1px solid white; border-radius: 13px; background: white;
  box-shadow: 0 16px 40px rgba(6,24,77,.2);
}
.restaurant-floating-stat > span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 9px; color: white; background: var(--blue); }
.restaurant-floating-stat small, .restaurant-floating-stat strong { display: block; }
.restaurant-floating-stat small { margin-bottom: 2px; color: #8b96a9; font-size: 8px; }
.restaurant-floating-stat strong { color: var(--navy); font-size: 10px; }
.restaurant-app {
  display: grid; grid-template-columns: 92px 1.1fr .9fr auto; align-items: center; gap: 28px;
  margin-top: 58px; padding: 25px 29px; border: 1px solid var(--line); border-radius: 18px;
  background: white; box-shadow: 0 15px 45px rgba(6,24,77,.07);
}
.app-phone {
  position: relative; width: 62px; height: 105px; margin-inline: auto; padding: 12px 6px 7px;
  border: 4px solid var(--navy); border-radius: 14px; background: #edfaff;
  box-shadow: 0 10px 24px rgba(6,24,77,.18); transform: rotate(-4deg);
}
.app-phone > span { position: absolute; width: 19px; height: 3px; top: 4px; left: 50%; border-radius: 5px; background: var(--navy); transform: translateX(-50%); }
.app-phone > div { display: grid; place-items: center; height: 100%; text-align: center; }
.app-phone i { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: white; background: #25c985; font-size: 11px; font-style: normal; }
.app-phone small { color: var(--navy); font-size: 7px; font-weight: 800; line-height: 1.3; }
.restaurant-app-copy .section-kicker { margin-bottom: 8px; }
.restaurant-app-copy h3 { margin: 0 0 8px; color: var(--navy); font-size: 19px; }
.restaurant-app-copy p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.restaurant-app-tags { display: flex; flex-direction: column; gap: 8px; }
.restaurant-app-tags span { color: #4f5f7d; font-size: 9px; font-weight: 700; }
.restaurant-app-tags span::first-letter { color: #25b980; }
.app-link { white-space: nowrap; color: var(--blue); font-size: 11px; }

.dental-platform { overflow: hidden; background: white; }
.dental-grid { display: grid; grid-template-columns: 1.28fr .72fr; align-items: center; gap: 60px; }
.dental-visual { position: relative; min-width: 0; }
.dental-screen {
  padding: 9px; border: 1px solid #dfe6ef; border-radius: 19px; background: #f7f9fc;
  box-shadow: 0 30px 75px rgba(6,24,77,.17); transform: perspective(1200px) rotateY(2.5deg);
}
.dental-screen-bar { display: flex; align-items: center; justify-content: space-between; padding: 8px 7px 15px; color: var(--navy); }
.dental-screen-bar > div { display: flex; align-items: center; gap: 8px; }
.dental-screen-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(9,175,228,.12); }
.dental-screen-bar span { font-size: 9px; font-weight: 800; }
.dental-screen-bar strong { color: var(--blue); font-size: 8px; }
.dental-screen img { width: 100%; border: 1px solid #e7ebef; border-radius: 10px; }
.dental-floating-card {
  position: absolute; left: -24px; bottom: -27px; display: flex; align-items: center; gap: 11px;
  padding: 14px 17px; border: 1px solid white; border-radius: 13px; background: white;
  box-shadow: 0 16px 40px rgba(6,24,77,.2);
}
.dental-floating-card > span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 9px; color: white; background: #25c985; }
.dental-floating-card small, .dental-floating-card strong { display: block; }
.dental-floating-card small { margin-bottom: 2px; color: #8b96a9; font-size: 8px; }
.dental-floating-card strong { color: var(--navy); font-size: 10px; }
.dental-copy > p { margin: 22px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.dental-feature-list { margin-bottom: 30px; border-top: 1px solid var(--line); }
.dental-feature-list article { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.dental-feature-list article > span {
  display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%;
  color: var(--blue); background: var(--cyan-light); font-size: 9px; font-weight: 800;
}
.dental-feature-list h3 { margin: 1px 0 5px; color: var(--navy); font-size: 13px; }
.dental-feature-list p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.dental-copy .dental-privacy { margin: 15px 0 0; color: #9aa3b4; font-size: 8px; }

.medical-platform {
  position: relative; overflow: hidden; color: white;
  background: radial-gradient(circle at 82% 30%, rgba(9,175,228,.2), transparent 32%), linear-gradient(135deg, #031238, #061b53);
}
.medical-platform::before {
  content: ""; position: absolute; width: 380px; height: 380px; left: -190px; bottom: -250px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025);
}
.medical-grid { position: relative; display: grid; grid-template-columns: .76fr 1.24fr; align-items: center; gap: 62px; }
.medical-copy .section-kicker { color: #6edfff; }
.medical-copy h2 { color: white; }
.medical-copy h2 em { color: #64d8fa; }
.medical-copy > p { margin: 22px 0 30px; color: rgba(224,234,255,.72); font-size: 14px; line-height: 1.75; }
.medical-capabilities { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 32px; border-top: 1px solid rgba(255,255,255,.13); }
.medical-capabilities article { display: grid; grid-template-columns: 33px 1fr; gap: 11px; padding: 17px 11px 17px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.medical-capabilities article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.13); }
.medical-capabilities article:nth-child(even) { padding-left: 14px; }
.medical-capabilities article > span {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  color: #70e0ff; background: rgba(53,195,235,.13); font-size: 13px; font-weight: 800;
}
.medical-capabilities h3 { margin: 1px 0 5px; color: white; font-size: 11px; }
.medical-capabilities p { margin: 0; color: rgba(224,234,255,.58); font-size: 9px; line-height: 1.55; }
.medical-button { border-color: white; color: var(--navy); background: white; }
.medical-button:hover { color: white; background: transparent; }
.medical-copy .medical-privacy { margin: 15px 0 0; color: rgba(224,234,255,.42); font-size: 8px; }
.medical-visual { position: relative; min-width: 0; }
.medical-screen {
  padding: 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 19px; background: rgba(255,255,255,.12);
  box-shadow: 0 35px 80px rgba(0,0,0,.32); backdrop-filter: blur(8px); transform: perspective(1200px) rotateY(-2.5deg);
}
.medical-screen-bar { display: flex; align-items: center; justify-content: space-between; padding: 8px 7px 15px; }
.medical-screen-bar > div { display: flex; align-items: center; gap: 8px; }
.medical-screen-bar i { width: 8px; height: 8px; border-radius: 50%; background: #64d8fa; box-shadow: 0 0 0 4px rgba(100,216,250,.14); }
.medical-screen-bar span { font-size: 9px; font-weight: 800; }
.medical-screen-bar strong { color: #7ce2ff; font-size: 8px; }
.medical-screen img { width: 100%; border-radius: 10px; }
.medical-floating-card {
  position: absolute; right: -23px; bottom: -27px; display: flex; align-items: center; gap: 11px;
  padding: 14px 17px; border: 1px solid white; border-radius: 13px; color: var(--navy); background: white;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.medical-floating-card > span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 9px; color: white; background: var(--blue); }
.medical-floating-card small, .medical-floating-card strong { display: block; }
.medical-floating-card small { margin-bottom: 2px; color: #8b96a9; font-size: 8px; }
.medical-floating-card strong { font-size: 10px; }

.benefits { overflow: hidden; background: var(--surface); }
.benefits-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 100px; }
.benefits-visual { position: relative; min-height: 510px; }
.benefits-visual::before {
  content: ""; position: absolute; width: 450px; height: 450px; top: 20px; left: 0;
  border-radius: 50%; background: linear-gradient(140deg, #daeffa, #edf8fc);
}
.visual-panel {
  position: absolute; z-index: 2; left: 45px; top: 70px; width: 400px; padding: 38px;
  border-radius: 20px; color: white; background: linear-gradient(145deg, var(--navy), #0a3477);
  box-shadow: 0 30px 65px rgba(6,24,77,.25); transform: rotate(-2deg);
}
.panel-tag { color: var(--cyan); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.visual-panel h3 { margin: 18px 0 35px; font-size: 29px; line-height: 1.25; letter-spacing: -.03em; }
.progress-list > div { margin-top: 22px; }
.progress-list span { display: flex; justify-content: space-between; margin-bottom: 9px; }
.progress-list b, .progress-list small { font-size: 10px; }
.progress-list small { color: var(--cyan); }
.progress-list i { display: block; overflow: hidden; height: 5px; border-radius: 10px; background: rgba(255,255,255,.12); }
.progress-list em { display: block; width: var(--progress); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.mini-stat {
  position: absolute; z-index: 3; right: -5px; bottom: 55px; width: 155px; padding: 20px;
  border-radius: 15px; background: white; box-shadow: 0 20px 50px rgba(6,24,77,.15);
}
.mini-stat span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; color: #1b9b70; background: #e7f9f1; }
.mini-stat strong, .mini-stat small { display: block; }
.mini-stat strong { margin: 13px 0 3px; color: var(--navy); font-size: 25px; }
.mini-stat small { color: var(--muted); font-size: 9px; }
.benefits-copy .lead { margin: 24px 0 36px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.benefit-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid #dce4ed; }
.benefit-list > div > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: var(--blue); background: white; font-size: 10px; font-weight: 800; }
.benefit-list h3 { margin: 0 0 6px; color: var(--navy); font-size: 15px; }
.benefit-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.services { background: white; }
.center-heading { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.center-heading > p { max-width: 570px; margin: 20px auto 0; color: var(--muted); line-height: 1.7; font-size: 15px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; }
.service-grid article { min-height: 260px; padding: 32px 27px; border-right: 1px solid var(--line); transition: .25s; }
.service-grid article:last-child { border-right: 0; }
.service-grid article:hover { background: var(--surface); }
.service-grid span { color: var(--cyan); font-size: 11px; font-weight: 800; }
.service-grid h3 { margin: 55px 0 12px; color: var(--navy); font-size: 17px; }
.service-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.contact-section { position: relative; overflow: hidden; padding: 110px 0; color: white; background: linear-gradient(135deg, #051640 0%, #07265f 68%, #064b82 100%); }
.contact-section::after {
  content: ""; position: absolute; width: 500px; height: 500px; right: -230px; top: -230px;
  border: 1px solid rgba(9,175,228,.22); border-radius: 50%; box-shadow: 0 0 0 80px rgba(9,175,228,.03), 0 0 0 160px rgba(9,175,228,.025);
}
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 105px; }
.section-kicker.light { color: var(--cyan); }
.contact-section h2 { color: white; font-size: clamp(38px, 4vw, 55px); }
.contact-copy > p { margin: 24px 0 32px; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.75; }
.contact-copy ul { margin: 0; padding: 0; list-style: none; }
.contact-copy li { margin: 15px 0; color: rgba(255,255,255,.8); font-size: 13px; }
.contact-copy li span { display: inline-grid; place-items: center; width: 21px; height: 21px; margin-right: 10px; border-radius: 50%; color: var(--cyan); background: rgba(9,175,228,.13); font-size: 9px; }
.contact-form { padding: 35px; border-radius: 20px; color: var(--ink); background: white; box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.contact-form h3 { margin: 0 0 27px; color: var(--navy); font-size: 21px; }
.contact-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; margin-bottom: 16px; color: #485675; font-size: 10px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  display: block; width: 100%; margin-top: 7px; padding: 12px 14px; outline: none;
  border: 1px solid #dfe5ee; border-radius: 7px; color: var(--ink); background: #fbfcfe; font-size: 12px;
  transition: .2s; resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(9,175,228,.1); }
.form-button { width: 100%; min-height: 50px; }
.form-status { min-height: 18px; margin: 11px 0 0; text-align: center; color: #138760; font-size: 11px; }
.form-status.is-error { color: #c43b48; }

.sr-only {
  position: absolute; overflow: hidden; width: 1px; height: 1px; padding: 0; margin: -1px;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.whatsapp-chat {
  position: fixed; z-index: 44; right: 24px; bottom: 96px; width: min(340px, calc(100vw - 32px));
  overflow: hidden; visibility: hidden; opacity: 0; border-radius: 18px; background: #f1eee8;
  box-shadow: 0 24px 65px rgba(4,23,15,.28); transform: translateY(18px) scale(.97);
  transform-origin: bottom right; transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.whatsapp-widget[open] .whatsapp-chat { visibility: visible; opacity: 1; transform: translateY(0) scale(1); }
.whatsapp-chat-header { display: flex; align-items: center; gap: 12px; padding: 17px 18px; color: white; background: #075e54; }
.whatsapp-avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #25d366; }
.whatsapp-avatar svg { width: 25px; fill: white; }
.whatsapp-chat-header strong, .whatsapp-chat-header small { display: block; }
.whatsapp-chat-header strong { font-size: 14px; }
.whatsapp-chat-header small { margin-top: 3px; color: rgba(255,255,255,.72); font-size: 9px; }
.whatsapp-chat-header small i { display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 50%; background: #4ce38a; }
.whatsapp-close { margin-left: auto; padding: 5px; border: 0; color: rgba(255,255,255,.8); background: none; font-size: 25px; line-height: 1; cursor: pointer; }
.whatsapp-chat-body {
  min-height: 150px; padding: 25px 18px;
  background-color: #efeae2;
  background-image: radial-gradient(rgba(7,94,84,.06) 1px, transparent 1px);
  background-size: 14px 14px;
}
.whatsapp-message {
  position: relative; max-width: 82%; padding: 12px 13px 18px; border-radius: 3px 12px 12px 12px;
  color: #303b40; background: white; box-shadow: 0 2px 5px rgba(0,0,0,.08); font-size: 11px;
}
.whatsapp-message::before {
  content: ""; position: absolute; top: 0; left: -8px; border-top: 9px solid white; border-left: 9px solid transparent;
}
.whatsapp-message strong, .whatsapp-message span { display: block; }
.whatsapp-message strong { margin-bottom: 5px; color: #075e54; }
.whatsapp-message span { line-height: 1.5; }
.whatsapp-message small { position: absolute; right: 8px; bottom: 5px; color: #96a0a3; font-size: 7px; }
.whatsapp-form { display: grid; grid-template-columns: 1fr 42px; align-items: center; gap: 8px; padding: 10px; background: #f7f7f7; }
.whatsapp-form textarea {
  width: 100%; min-height: 45px; max-height: 90px; padding: 12px 14px; border: 1px solid #e0e4e4;
  border-radius: 22px; outline: none; color: #344149; background: white; font-size: 11px; resize: none;
}
.whatsapp-form textarea:focus { border-color: #25d366; }
.whatsapp-form button {
  display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 0;
  border-radius: 50%; color: white; background: #25d366; cursor: pointer; transition: .2s;
}
.whatsapp-form button:hover { transform: scale(1.06); background: #20bd5a; }
.whatsapp-form button svg { width: 19px; fill: currentColor; }
.whatsapp-button {
  position: fixed; z-index: 45; right: 24px; bottom: 24px;
  display: flex; align-items: center; gap: 10px; min-height: 58px; padding: 0 18px 0 15px;
  border: 2px solid rgba(255,255,255,.9); border-radius: 40px; color: white; background: #25d366;
  box-shadow: 0 12px 35px rgba(5,35,22,.3); font-size: 12px; font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-button::-webkit-details-marker { display: none; }
.whatsapp-button::marker { content: ""; }
.whatsapp-button::before {
  content: ""; position: absolute; inset: -7px; z-index: -1; border: 1px solid rgba(37,211,102,.45);
  border-radius: inherit; animation: whatsapp-pulse 2.2s ease-out infinite;
}
.whatsapp-button svg { width: 29px; height: 29px; fill: currentColor; }
.whatsapp-button:hover { transform: translateY(-4px); box-shadow: 0 17px 38px rgba(5,35,22,.38); }
@keyframes whatsapp-pulse {
  0% { opacity: .8; transform: scale(.93); }
  75%, 100% { opacity: 0; transform: scale(1.15); }
}

.technology-benefits { position: relative; overflow: hidden; background: #f7faff; }
.technology-benefits::after {
  content: ""; position: absolute; width: 320px; height: 320px; right: -180px; bottom: -210px;
  border: 1px solid rgba(9,175,228,.16); border-radius: 50%; box-shadow: 0 0 0 55px rgba(9,175,228,.035);
}
.technology-heading {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr;
  align-items: end; gap: 80px; margin-bottom: 55px;
}
.technology-heading h2 { max-width: 720px; }
.technology-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.technology-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.technology-card {
  position: relative; overflow: hidden; min-height: 250px; padding: 27px 25px;
  border: 1px solid #e1e8f2; border-radius: 17px; background: white;
  box-shadow: 0 15px 38px rgba(6,24,77,.055); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.technology-card::after {
  content: ""; position: absolute; width: 100px; height: 100px; right: -48px; top: -48px;
  border-radius: 50%; background: rgba(9,175,228,.06);
}
.technology-card:hover { border-color: rgba(9,175,228,.35); box-shadow: 0 22px 48px rgba(6,24,77,.1); transform: translateY(-5px); }
.technology-card > span { position: absolute; right: 21px; top: 22px; color: #b3bece; font-size: 9px; font-weight: 800; }
.technology-icon {
  display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 43px;
  border-radius: 14px; color: var(--blue); background: linear-gradient(145deg, #eaf9ff, #eef3ff);
}
.technology-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.technology-card h3 { margin: 0 0 11px; color: var(--navy); font-size: 16px; }
.technology-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

footer { padding: 70px 0 25px; background: white; }
.footer-main { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 55px; }
.footer-brand img { width: 180px; }
.footer-brand p { max-width: 300px; margin: 20px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; }
.footer-links div { display: flex; flex-direction: column; gap: 11px; }
.footer-links strong { margin-bottom: 7px; color: var(--navy); font-size: 12px; }
.footer-links a { color: var(--muted); font-size: 11px; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line); color: #8c96a9; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 80px; padding-bottom: 150px; text-align: center; }
  .hero-slide > p { margin-inline: auto; }
  .slide-tags, .slider-footer { justify-content: center; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { width: min(560px, 100%); margin-inline: auto; }
  .hero-visual-gallery { width: 100vw; min-height: 520px; margin-left: calc(50% - 50vw); }
  .hero-image-frame {
    inset: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%);
  }
  .hero-image-slide figcaption { right: 30px; bottom: 52px; }
  .image-status { top: 45px; right: 25px; }
  .image-counter { right: 25px; bottom: 22px; }
  .image-source { right: 20px; bottom: 8px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .scheduling-top { grid-template-columns: 1fr; gap: 55px; }
  .scheduling-copy { max-width: 680px; }
  .restaurant-heading { grid-template-columns: 1fr; gap: 28px; }
  .restaurant-intro { max-width: 680px; }
  .restaurant-points { grid-template-columns: repeat(2, 1fr); }
  .restaurant-points article:nth-child(2) { border-right: 0; }
  .restaurant-points article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .restaurant-app { grid-template-columns: 82px 1fr 1fr; }
  .restaurant-app .app-link { grid-column: 2 / -1; }
  .dental-grid { grid-template-columns: 1fr; gap: 70px; }
  .dental-visual { width: min(820px, 100%); margin-inline: auto; }
  .dental-copy { max-width: 680px; }
  .medical-grid { grid-template-columns: 1fr; gap: 70px; }
  .medical-copy { max-width: 720px; }
  .medical-visual { width: min(900px, 100%); margin-inline: auto; }
  .benefits-grid { grid-template-columns: 1fr; gap: 55px; }
  .benefits-visual { width: min(520px, 100%); margin-inline: auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid article:nth-child(2) { border-right: 0; }
  .service-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-grid { gap: 50px; }
  .technology-heading { grid-template-columns: 1fr; gap: 24px; }
  .technology-heading > p { max-width: 650px; }
  .technology-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { gap: 35px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 1160px); }
  .navbar { height: 64px; }
  .brand img { width: 125px; height: 43px; }
  .menu-button { position: relative; z-index: 60; display: block; }
  .menu-button.active span { background: var(--navy); }
  .menu-open .brand img { position: relative; z-index: 60; filter: none; }
  .menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.active span:nth-child(2) { opacity: 0; }
  .menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 30px;
    visibility: hidden; opacity: 0; color: var(--navy); background: rgba(255,255,255,.98); font-size: 18px; transition: .25s;
  }
  .nav-links.open { visibility: visible; opacity: 1; }
  .hero { padding-top: 64px; }
  .hero-grid { min-height: auto; padding-top: 60px; padding-bottom: 130px; }
  .hero h1 { font-size: 43px; }
  .hero-slides { min-height: 610px; }
  .hero-slide > p { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .slider-footer { flex-direction: column; margin-top: 0; }
  .hero-visual { min-height: 430px; margin-top: 15px; }
  .hero-visual-gallery { min-height: 430px; }
  .hero-image-frame { inset: 0; }
  .hero-image-slide figcaption { left: 20px; right: 20px; bottom: 46px; max-width: none; text-align: left; }
  .hero-image-slide figcaption strong { font-size: 23px; }
  .image-status { top: 42px; right: 15px; }
  .image-counter { right: 17px; bottom: 18px; }
  .image-source { right: 15px; bottom: 6px; }
  .dashboard-card { inset: 20px 0 auto; padding: 18px; }
  .chart-card svg { height: 110px; }
  .orbit-one { width: 400px; height: 400px; }
  .orbit-two { width: 330px; height: 330px; }
  .floating-sales { left: -5px; bottom: 25px; }
  .floating-ai { right: -5px; top: 90px; }
  .sector-strip .container { flex-wrap: wrap; justify-content: center; gap: 12px 18px; }
  .sector-strip span { flex-basis: 100%; text-align: center; }
  .section { padding: 85px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 22px; margin-bottom: 38px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 270px; }
  .scheduling-features { grid-template-columns: 1fr; }
  .scheduling-features article { min-height: auto; }
  .agenda-showcase { margin-top: 45px; padding: 6px; border-radius: 13px; }
  .agenda-showcase-bar { padding: 7px 5px 12px; }
  .agenda-showcase-bar strong { font-size: 8px; }
  .agenda-floating-card { right: 12px; bottom: -35px; }
  .agenda-privacy { margin-top: 48px; text-align: left; }
  .restaurant-points { grid-template-columns: 1fr; margin-top: 40px; }
  .restaurant-points article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .restaurant-points article:nth-child(3) { border-bottom: 1px solid var(--line); }
  .restaurant-points article:last-child { border-bottom: 0; }
  .restaurant-showcase { padding: 6px; border-radius: 14px; }
  .restaurant-showcase-top { padding: 7px 6px 13px; }
  .restaurant-floating-stat { right: 12px; bottom: -35px; }
  .restaurant-app { grid-template-columns: 1fr; gap: 20px; padding: 25px 21px; text-align: center; }
  .restaurant-app .app-link { grid-column: auto; }
  .restaurant-app-tags { align-items: center; }
  .dental-grid { gap: 62px; }
  .dental-screen { padding: 6px; border-radius: 13px; transform: none; }
  .dental-screen-bar strong { display: none; }
  .dental-floating-card { left: 8px; bottom: -35px; }
  .medical-grid { gap: 62px; }
  .medical-capabilities { grid-template-columns: 1fr; }
  .medical-capabilities article, .medical-capabilities article:nth-child(even) { padding: 17px 0; border-right: 0; }
  .medical-screen { padding: 6px; border-radius: 13px; transform: none; }
  .medical-screen-bar strong { display: none; }
  .medical-floating-card { right: 8px; bottom: -35px; }
  .benefits-visual { min-height: 430px; }
  .benefits-visual::before { width: 370px; height: 370px; }
  .visual-panel { left: 12px; top: 50px; width: calc(100% - 25px); padding: 29px; }
  .mini-stat { right: 0; bottom: 8px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-grid article:nth-child(3) { border-bottom: 1px solid var(--line); }
  .service-grid article:last-child { border-bottom: 0; }
  .service-grid h3 { margin-top: 38px; }
  .contact-section { padding: 85px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .technology-heading { margin-bottom: 38px; }
  .technology-grid { grid-template-columns: 1fr; }
  .technology-card { min-height: 225px; }
  .technology-icon { margin-bottom: 34px; }
  .whatsapp-chat { right: 16px; bottom: 88px; }
  .whatsapp-button { right: 16px; bottom: 16px; width: 58px; padding: 0; justify-content: center; }
  .whatsapp-button span { display: none; }
  .footer-main { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .whatsapp-button::before { animation: none; }
}
