:root {
  --ink: #163e35;
  --ink-deep: #102d27;
  --text: #243d35;
  --muted: #63736d;
  --line: #dce5df;
  --paper: #fff;
  --soft: #f5f7f3;
  --mint: #e9f1e9;
  --lime: #d6ef7a;
  --radius: 14px;
  --font: "Segoe UI", Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #688524;
  outline-offset: 5px;
}
a:hover {
  text-decoration: none;
}
p {
  margin: 0 0 1.2rem;
}
h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 650;
  margin: 0;
  line-height: 1.14;
}
h1 {
  font-size: clamp(2.8rem, 4.6vw, 4.75rem);
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(2rem, 3.1vw, 2.85rem);
  letter-spacing: -0.045em;
}
h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}
address {
  font-style: normal;
}
button {
  border: 0;
}
svg {
  flex-shrink: 0;
}
.icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.6;
  color: #526d5e;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .icon {
  width: 18px;
  height: 18px;
}
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #789e4d;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.875rem;
}
.lead {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 710px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 23px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  transform: translateY(-2px);
}
.button .icon {
  width: 19px;
  height: 19px;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #235d4f;
}
.button-lime {
  background: var(--lime);
  color: var(--ink-deep);
}
.button-lime:hover {
  background: #e3f6a6;
}
.button-outline {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: #a5b8a4;
  text-underline-offset: 6px;
}
.text-link .icon {
  width: 19px;
  height: 19px;
}
.text-link:hover {
  text-decoration-color: var(--ink);
}
.skip-link {
  position: fixed;
  z-index: 50;
  top: 10px;
  left: 20px;
  transform: translateY(-150%);
  background: var(--lime);
  padding: 12px 20px;
}
.skip-link:focus {
  transform: translateY(0);
}
[hidden] {
  display: none !important;
}
.topbar {
  background: var(--ink);
  color: #edf5e9;
  font-size: 0.76rem;
  line-height: 1.4;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
}
.topbar span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar .icon {
  width: 14px;
  height: 14px;
}
.topbar a {
  letter-spacing: 0.015em;
}
.header {
  background: rgba(255, 255, 255, 0.98);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #eef1ec;
}
.nav-row {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 37px;
  height: 37px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 9px;
  font-weight: 750;
  display: grid;
  place-items: center;
  line-height: 1;
  text-align: center;
  font-size: 16px;
  letter-spacing: -1px;
}
.brand-mark span {
  font-size: 17px;
}
.brand-name {
  font-size: 29px;
  font-weight: 750;
  letter-spacing: -1.5px;
  line-height: 1;
}
.brand-dot {
  color: #7d9c46;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 29px;
}
.header nav > a {
  font-size: 0.87rem;
  font-weight: 550;
}
.header nav > a:not(.button):hover,
.header nav > a[aria-current] {
  color: #567c29;
}
.nav-cta {
  min-height: 44px;
  padding: 12px 18px;
  margin-left: 8px;
}
.menu-toggle {
  display: none;
  background: var(--soft);
  padding: 9px;
  border-radius: 5px;
  color: var(--ink);
}
.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 65px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 50px;
}
.hero .eyebrow {
  margin-bottom: 18px;
}
.hero .hero-title {
  font-size: clamp(3.2rem, 4.9vw, 4.5rem);
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.063em;
  line-height: 1.04;
  margin-bottom: 20px;
}
.hero .hero-title > span {
  color: #648b36;
}
.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 550;
  margin-bottom: 15px;
  letter-spacing: -0.015em;
}
.hero-description {
  font-size: 1rem;
  color: var(--muted);
  max-width: 425px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.hero-actions .text-link {
  font-size: 0.875rem;
}
.hero-proof {
  display: flex;
  gap: 24px;
  font-size: 0.76rem;
  color: #586d60;
  margin-top: 27px;
}
.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-proof .icon {
  width: 16px;
  height: 16px;
}
.hero-visual {
  background: #eaf0e8;
  border: 1px solid #e2e9de;
  border-radius: 21px;
  padding: 24px 24px 17px;
  position: relative;
  min-width: 0;
  box-shadow: inset 0 0 60px #f0f5e9;
}
.visual-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  gap: 15px;
  color: #57705f;
  margin: 0 1px 19px;
}
.visual-kicker span:last-child {
  font-size: 0.54rem;
  white-space: nowrap;
}
.product-window {
  background: white;
  border: 1px solid #d0dacf;
  border-radius: 10px;
  box-shadow: 0 17px 35px #1a372715;
  overflow: hidden;
}
.window-bar {
  background: #173e35;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 17px;
  gap: 10px;
}
.mini-brand {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -1px;
}
.preview-tabs {
  display: flex;
  gap: 4px;
}
.preview-tabs button {
  color: #cedcd2;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 5px;
}
.preview-tabs button[aria-selected="true"] {
  background: #d8ec9c;
  color: #203e2d;
}
.preview-tabs button:hover {
  background: #3b6152;
}
.preview-tabs button[aria-selected="true"]:hover {
  background: #e2f3b9;
}
.pos-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 17px 16px;
  border-bottom: 1px solid #edf1eb;
  gap: 5px;
}
.pos-top > span:first-child {
  display: grid;
  gap: 4px;
}
.pos-top strong {
  font-size: 0.96rem;
}
.pos-top small {
  font-size: 0.64rem;
  color: #7b8c80;
}
.sample-badge {
  font-size: 0.48rem;
  font-weight: 650;
  letter-spacing: 0.065em;
  background: #f2f5ef;
  color: #6e7f71;
  padding: 5px 7px;
  border-radius: 4px;
}
.pos-layout {
  display: flex;
  min-height: 289px;
}
.pos-sidebar {
  padding: 15px 9px;
  background: #f8faf6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #7c9183;
  border-right: 1px solid #edf1eb;
}
.pos-sidebar > .icon,
.pos-sidebar .sidebar-active > .icon {
  width: 18px;
  height: 18px;
}
.sidebar-active {
  padding: 8px;
  background: #e3eddc;
  border-radius: 6px;
  color: var(--ink);
}
.sidebar-bottom {
  margin-top: auto;
  border-radius: 50%;
  font-size: 0.5rem;
  background: #e3eadf;
  padding: 6px;
  font-weight: 700;
}
.pos-main {
  padding: 18px 17px 13px;
  flex: 1;
  min-width: 0;
}
.pos-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  gap: 5px;
}
.pos-label b {
  font-size: 0.72rem;
}
.pos-label > span {
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.legend {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}
.legend.free {
  background: #aec398;
}
.legend.busy {
  background: #e7b980;
  margin-left: 4px;
}
.tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.table-tile {
  position: relative;
  border: 1px solid #dce8d5;
  border-radius: 7px;
  padding: 11px 7px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #f0f6ec;
  color: #718465;
  min-height: 64px;
}
.table-number {
  font-size: 0.64rem;
  font-weight: 700;
  position: absolute;
  top: 7px;
  left: 8px;
}
.table-tile > .icon {
  width: 25px;
  height: 25px;
  margin-top: 3px;
  stroke-width: 1.3;
}
.table-tile small {
  font-size: 0.51rem;
}
.table-tile.occupied {
  background: #fbf1e3;
  border-color: #edddc3;
  color: #a17d45;
}
.table-tile.bill {
  background: #eef0fb;
  border-color: #dfe2f2;
  color: #7d83ad;
}
.table-tile.selected {
  background: #2e5945;
  color: white;
  border-color: #2e5945;
}
.pos-caption {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.58rem;
  color: #668458;
  margin-top: 15px;
}
.pos-caption .icon {
  width: 14px;
  height: 14px;
}
.order-notification {
  margin: 17px 7px 0 7px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #dce6d6;
  border-radius: 9px;
  box-shadow: 0 8px 16px #2e4b2110;
}
.order-notification > .icon:first-child {
  width: 29px;
  height: 29px;
  background: #e9f2dd;
  box-sizing: content-box;
  padding: 8px;
  border-radius: 8px;
  color: #5e853c;
}
.order-notification > span {
  display: grid;
  gap: 3px;
}
.order-notification strong {
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}
.order-notification small {
  font-size: 0.65rem;
  color: var(--muted);
}
.notification-check {
  margin-left: auto;
  color: #567b39;
  width: 18px;
}
.preview-note {
  text-align: center;
  font-size: 0.6rem;
  color: #667b66;
  margin: 15px 0 0;
}
.sample-kitchen {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  min-height: 289px;
  background: #f9fbf7;
}
.kitchen-ticket {
  background: white;
  border: 1px solid #dce4d7;
  border-radius: 6px;
  overflow: hidden;
}
.kitchen-ticket header {
  background: #e9eee6;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.kitchen-ticket strong {
  font-size: 0.75rem;
}
.kitchen-ticket small {
  font-size: 0.53rem;
}
.kitchen-ticket p {
  font-size: 0.68rem;
  margin: 8px 12px;
}
.kitchen-ticket.new header {
  background: #dcecba;
}
.kitchen-ticket.changed header {
  background: #f7e9cf;
}
.voice-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1/-1;
  background: #173e35;
  color: #eff6e8;
  border-radius: 6px;
  padding: 13px;
}
.voice-strip b {
  font-size: 0.7rem;
  display: block;
}
.voice-strip small {
  font-size: 0.62rem;
  color: #c3d3bf;
}
.sample-bill {
  padding: 14px 35px;
  max-width: 365px;
  margin: auto;
  min-height: 289px;
}
.bill-brand {
  font-weight: 700;
  text-align: center;
  letter-spacing: -1px;
}
.sample-bill > p {
  font-size: 0.65rem;
  text-align: center;
  margin: 2px 0 15px;
  color: var(--muted);
}
.bill-line {
  display: flex;
  justify-content: space-between;
  padding-block: 9px;
  font-size: 0.73rem;
  border-bottom: 1px dashed #dce4d7;
}
.bill-total {
  margin-top: 6px;
  font-size: 0.95rem;
  border-bottom: 0;
}
.sample-bill > small {
  font-size: 0.59rem;
  color: var(--muted);
}
.feature-ribbon {
  border-block: 1px solid var(--line);
  background: #fcfdfb;
}
.feature-ribbon .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 25px;
}
.feature-ribbon span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 550;
  font-size: 0.87rem;
  color: #4f6555;
}
.feature-ribbon .icon {
  color: #809879;
  width: 21px;
  height: 21px;
}
.section {
  padding-block: 95px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 41px;
}
.section-heading .eyebrow {
  margin-bottom: 15px;
}
.section-heading > p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  max-width: 340px;
  padding-bottom: 3px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  display: block;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 22px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  background: #fff;
}
.feature-card:hover {
  border-color: #92aa76;
  box-shadow: 0 8px 25px #203d2110;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 10px;
  background: #eff4e8;
  color: #55723d;
}
.feature-index {
  position: absolute;
  top: 34px;
  right: 27px;
  color: #63736d;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.feature-card h3 {
  margin-top: 23px;
  margin-bottom: 13px;
  font-size: 1.19rem;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.8;
  min-height: 76px;
  margin-bottom: 18px;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.77rem;
  font-weight: 650;
  padding-top: 16px;
  border-top: 1px solid #edf0e9;
}
.card-link .icon {
  width: 18px;
  height: 18px;
}
.workflow-section {
  background: var(--ink);
  color: #d9e5d9;
  padding-block: 78px;
}
.workflow-section h2,
.workflow-section h3 {
  color: #f6faef;
}
.workflow-section .eyebrow {
  color: #c5de96;
}
.light-link {
  color: #e0edc9;
  text-decoration-color: #5e8165;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 29px;
}
.workflow-steps article {
  border-top: 1px solid #4a6c57;
  padding-top: 24px;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: #c7e08e;
}
.step-top > span {
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.step-top .icon {
  width: 25px;
  height: 25px;
}
.workflow-steps h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.workflow-steps p {
  font-size: 0.89rem;
  line-height: 1.8;
  color: #bdcfc2;
  margin: 0;
}
.restaurant-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}
.section-intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 470px;
  margin-block: 24px;
}
.restaurant-types {
  border-top: 1px solid var(--line);
}
.restaurant-types article {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.restaurant-types article > .icon {
  margin-top: 3px;
  width: 30px;
  height: 30px;
  color: #78945c;
}
.restaurant-types h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}
.restaurant-types p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.chennai-section {
  background: var(--soft);
  border-block: 1px solid #e9eee4;
  padding: 72px 0;
}
.chennai-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 85px;
  align-items: center;
}
.chennai-layout > div > p:not(.eyebrow) {
  margin-block: 24px;
  max-width: 500px;
  color: var(--muted);
  font-size: 0.95rem;
}
.area-preview {
  border: 1px solid #d5dfcf;
  border-radius: 15px;
  background: #fff;
  padding: 29px;
}
.area-preview-head {
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  padding-bottom: 22px;
  border-bottom: 1px solid #e8ede4;
  color: #5c7658;
}
.area-preview-head .icon {
  width: 18px;
  height: 18px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-block: 23px;
}
.area-tags span {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid #dce5d4;
  border-radius: 5px;
  font-size: 0.78rem;
  color: #536a4c;
  background: #fafcf7;
}
.area-tags span:last-child {
  background: #eaf3d7;
  border-color: #cddbaf;
}
.area-preview .text-link {
  font-size: 0.8rem;
}
.area-preview > p {
  font-size: 0.67rem;
  color: #798575;
  margin: 16px 0 0;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
}
.faq-section h2 {
  max-width: 390px;
}
.faq-section .muted {
  margin-top: 25px;
  line-height: 2;
  font-size: 0.92rem;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  padding: 21px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 550;
  line-height: 1.55;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  font-size: 1.5rem;
  color: #657d51;
  font-weight: 400;
  line-height: 1;
}
details[open] .faq-plus {
  transform: rotate(45deg);
}
details p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.85;
  margin: 0 34px 23px 0;
}
.cta-section {
  background: var(--ink);
  border-radius: 17px;
  padding: 46px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 90px;
}
.cta-section .eyebrow {
  color: #c6e09b;
  font-size: 0.67rem;
  margin-bottom: 18px;
}
.cta-section h2 {
  color: #f9fcf3;
  font-size: 2.35rem;
}
.cta-section p:not(.eyebrow) {
  font-size: 0.85rem;
  color: #c1d3c5;
  margin: 19px 0 0;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  flex-shrink: 0;
}
.cta-phone {
  display: flex;
  gap: 8px;
  color: #e0eada;
  font-size: 0.81rem;
}
.cta-phone .icon {
  width: 16px;
  height: 16px;
}
.footer {
  background: #f7f9f5;
  border-top: 1px solid #e7ede1;
  padding-top: 53px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr 1fr;
  gap: 42px;
  padding-bottom: 50px;
}
.footer .brand {
  margin-bottom: 18px;
}
.footer-about p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-grid h2 {
  font-size: 0.85rem;
  letter-spacing: 0;
  margin: 7px 0 21px;
  font-weight: 650;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  font-size: 0.78rem;
  color: #5e7362;
  margin-top: 8px;
}
.footer-grid > div > a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-grid address {
  font-size: 0.79rem;
  line-height: 1.9;
  color: #5e7362;
  max-width: 245px;
}
.footer-grid .footer-directions {
  font-weight: 650;
  margin-top: 13px !important;
  margin-bottom: 17px;
}
.footer-directions .icon {
  width: 14px;
  height: 14px;
  margin-left: 4px;
}
.footer-grid .footer-call {
  font-size: 0.98rem !important;
  color: var(--ink) !important;
  font-weight: 650;
}
.footer-bottom {
  border-top: 1px solid #dee6d8;
  padding-block: 21px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #63736d;
  font-size: 0.69rem;
}
.mobile-contact {
  display: none;
}
.breadcrumbs {
  display: flex;
  gap: 11px;
  font-size: 0.77rem;
  align-items: center;
  color: #71806e;
  padding-top: 28px;
  flex-wrap: wrap;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs > span[aria-hidden] {
  color: #a4b29c;
}
.feature-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 80px;
  padding-top: 51px;
  padding-bottom: 68px;
  align-items: center;
}
.feature-hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.1rem);
}
.feature-hero .lead {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 29px;
}
.feature-statement {
  background: #eaf1e2;
  border: 1px solid #d6e2ce;
  border-radius: 17px;
  padding: 35px;
  min-height: 335px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-statement .feature-icon {
  background: #fff;
  width: 61px;
  height: 61px;
}
.feature-statement .icon {
  width: 30px;
  height: 30px;
}
.feature-statement p {
  font-size: 2.55rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--ink);
  font-weight: 600;
  margin: 26px 0;
}
.feature-statement > span:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #5f7652;
  font-weight: 650;
}
.feature-details {
  border-top: 1px solid var(--line);
  padding-top: 65px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 70px;
}
.detail-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.detail-number {
  font-size: 0.78rem;
  color: #7b9367;
  letter-spacing: 0.1em;
}
.detail-grid h3 {
  margin: 13px 0 15px;
  font-size: 1.3rem;
}
.detail-grid p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.85;
}
.example-section {
  background: var(--soft);
  padding: 70px 0;
}
.example-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.scenario {
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 25px 0;
  color: #506447;
}
.demo-checklist {
  border: 1px solid #dce5d2;
  border-radius: 12px;
  padding: 31px;
  background: white;
}
.demo-checklist h3 {
  font-size: 1.4rem;
  margin-bottom: 13px;
}
.demo-checklist > p {
  color: var(--muted);
  font-size: 0.93rem;
}
.demo-checklist ul {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.demo-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  margin-bottom: 14px;
}
.demo-checklist li .icon {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: #729443;
}
.related-section {
  margin-bottom: 70px;
}
.related-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.related-links a {
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 7px;
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 0.86rem;
}
.related-links a:hover {
  background: var(--soft);
}
.related-links .icon {
  width: 19px;
  height: 19px;
}
.related-links .icon:last-child {
  margin-left: 8px;
  width: 16px;
}
.page-intro {
  padding-top: 55px;
  padding-bottom: 55px;
}
.page-intro h1 {
  max-width: 940px;
}
.page-intro .lead {
  max-width: 760px;
}
.area-directory {
  margin-bottom: 75px;
}
.directory-tools {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.directory-tools > div {
  flex: 1;
  max-width: 530px;
}
.directory-tools label {
  display: block;
  font-weight: 650;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.directory-tools > p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 15px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #b8c9ad;
  border-radius: 6px;
  padding: 3px 15px;
  background: #fbfcf9;
}
.search-box > .icon {
  width: 20px;
  height: 20px;
  color: #6c8657;
}
.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--ink);
}
.search-box input:focus {
  outline: 0;
}
.search-box:focus-within {
  outline: 2px solid #8eaa6c;
  outline-offset: 3px;
}
.search-box button {
  background: transparent;
  color: var(--ink);
  font-size: 0.8rem;
  text-decoration: underline;
}
.area-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 35px;
}
.area-jumps a {
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  background: var(--soft);
}
.area-jumps a:hover {
  border-color: #8fa776;
}
.area-group {
  padding: 35px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.area-group h2 {
  font-size: 1.6rem;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.area-group p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.85;
}
.area-group ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  gap: 10px 16px;
  padding: 0;
  margin: 0;
  align-content: start;
}
.area-group li {
  font-size: 0.86rem;
  padding: 3px 0;
  color: #476141;
}
.coverage-note {
  padding: 32px;
  background: var(--soft);
  border-radius: 10px;
  margin-top: 30px;
}
.coverage-note h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.coverage-note p {
  color: var(--muted);
  max-width: 850px;
  font-size: 0.95rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 95px;
  margin-bottom: 95px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.contact-method > span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-method small {
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  color: #6c815d;
  font-weight: 650;
}
.contact-method strong {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.contact-method > .icon:first-child {
  color: #718d56;
}
.contact-method > .icon:last-child {
  margin-left: auto;
  width: 18px;
}
.office-card {
  padding: 29px;
  border: 1px solid #dce6d2;
  background: #f1f6e9;
  border-radius: 12px;
  margin-top: 25px;
}
.office-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6b8159;
}
.office-card h2 {
  font-size: 1.9rem;
  margin: 15px 0 20px;
}
.office-card address {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 330px;
}
.office-card .small {
  margin: 20px 0 0;
}
.secondary-office {
  margin-top: 27px;
  padding-left: 4px;
}
.secondary-office h3 {
  font-size: 1.12rem;
  margin-bottom: 13px;
}
.secondary-office address {
  font-size: 0.91rem;
  color: var(--muted);
  margin-bottom: 13px;
}
.enquiry-card {
  padding: 33px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fcfdfb;
  align-self: start;
}
.enquiry-card h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 17px;
}
.enquiry-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.86rem;
}
.enquiry-card .eyebrow {
  font-size: 0.64rem;
  margin-bottom: 16px;
}
form label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin: 17px 0 7px;
}
form label span {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.75rem;
}
form input,
form textarea {
  width: 100%;
  border: 1px solid #c9d5c1;
  background: white;
  border-radius: 5px;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}
form textarea {
  resize: vertical;
  min-height: 110px;
  max-height: 450px;
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
form .button {
  width: 100%;
  margin-top: 22px;
}
.form-note {
  font-size: 0.69rem;
  line-height: 1.75;
  color: #708168;
  margin: 15px 0 0;
}
.form-note a {
  text-decoration: underline;
}
#draft-result {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 22px;
}
#draft-result h3 {
  margin-bottom: 12px;
}
#draft-result p {
  font-size: 0.87rem;
  color: var(--muted);
}
#draft-result a {
  overflow-wrap: anywhere;
  text-decoration: underline;
}
#draft-text {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: 0.85rem/1.8 var(--font);
  padding: 18px;
  background: var(--mint);
  border-radius: 6px;
}
.guide {
  max-width: 900px;
}
.guide .page-intro h1 {
  font-size: clamp(2.5rem, 4.1vw, 4rem);
}
.guide-steps section {
  display: flex;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.guide-steps .detail-number {
  margin-top: 7px;
}
.guide-steps h2 {
  font-size: 1.65rem;
  margin-bottom: 15px;
}
.guide-steps p {
  color: var(--muted);
  line-height: 1.9;
}
.guide-note {
  padding: 34px;
  background: var(--soft);
  border-radius: 12px;
  margin: 30px 0 75px;
}
.guide-note h2 {
  font-size: 1.8rem;
  margin-bottom: 19px;
}
.guide-note p {
  color: var(--muted);
}
.prose {
  max-width: 820px;
  padding-block: 60px 85px;
}
.prose h1 {
  margin-bottom: 35px;
}
.prose h2 {
  font-size: 1.65rem;
  margin: 30px 0 18px;
}
.prose p,
.prose address {
  color: var(--muted);
  line-height: 1.9;
}
.prose a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.error-page {
  min-height: 60vh;
}
.error-page p:not(.eyebrow) {
  margin-top: 20px;
}
@media (min-width: 1500px) {
  .hero {
    gap: 80px;
    padding-block: 85px;
  }
  .hero .hero-title {
    font-size: 5.25rem;
  }
  .hero-visual {
    padding: 29px 27px 20px;
  }
  .table-tile {
    min-height: 75px;
  }
  .pos-layout {
    min-height: 315px;
  }
  .sample-kitchen,
  .sample-bill {
    min-height: 315px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 35px;
  }
  .hero .hero-title {
    font-size: 4rem;
  }
  .header nav {
    gap: 19px;
  }
  .nav-row {
    gap: 20px;
  }
  .hero-visual {
    padding: 19px 16px 14px;
  }
  .visual-kicker span:last-child {
    display: none;
  }
  .pos-label > span {
    font-size: 0.45rem;
  }
  .pos-sidebar {
    padding-inline: 6px;
  }
  .pos-main {
    padding-inline: 12px;
  }
  .hero-actions {
    gap: 17px;
    flex-wrap: wrap;
  }
  .hero-proof {
    gap: 15px;
  }
  .order-notification {
    margin-inline: 0;
    padding: 12px;
  }
  .order-notification strong {
    font-size: 0.75rem;
  }
  .order-notification small {
    font-size: 0.57rem;
  }
  .section-heading > p {
    max-width: 280px;
  }
  .feature-card {
    padding: 25px 22px;
  }
  .restaurant-section,
  .chennai-layout,
  .faq-section {
    gap: 50px;
  }
  .footer-grid {
    gap: 26px;
  }
  .contact-layout {
    gap: 50px;
  }
  .feature-hero {
    gap: 45px;
  }
  .feature-statement {
    padding: 27px;
  }
  .feature-statement p {
    font-size: 2.2rem;
  }
  .cta-section {
    padding-inline: 38px;
  }
  .cta-section h2 {
    font-size: 2.1rem;
  }
  .area-group {
    gap: 35px;
  }
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .topbar .wrap {
    justify-content: center;
  }
  .topbar a {
    display: none;
  }
  .nav-row {
    height: 75px;
  }
  .header nav {
    gap: 15px;
  }
  .header nav > a {
    font-size: 0.77rem;
  }
  .header nav .nav-cta {
    padding: 10px 12px;
    gap: 8px;
    margin-left: 0;
  }
  .brand-name {
    font-size: 25px;
  }
  .brand-mark {
    width: 33px;
    height: 33px;
    line-height: 29px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 27px;
    padding-top: 47px;
    padding-bottom: 51px;
  }
  .hero .hero-title {
    font-size: 3.25rem;
  }
  .hero .eyebrow {
    font-size: 0.62rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-description {
    font-size: 0.9rem;
  }
  .hero-proof {
    flex-direction: column;
    gap: 8px;
    font-size: 0.7rem;
  }
  .hero-visual {
    padding: 15px 12px;
  }
  .pos-top {
    padding: 12px 10px;
  }
  .sample-badge {
    display: none;
  }
  .preview-tabs button {
    font-size: 0.6rem;
    padding: 5px 7px;
  }
  .mini-brand {
    font-size: 17px;
  }
  .window-bar {
    padding: 9px 12px;
  }
  .pos-sidebar {
    display: none;
  }
  .table-tile {
    min-height: 60px;
  }
  .table-tile small {
    font-size: 0.48rem;
  }
  .tables {
    gap: 7px;
  }
  .pos-main {
    padding: 12px;
  }
  .pos-top strong {
    font-size: 0.85rem;
  }
  .order-notification {
    gap: 7px;
  }
  .order-notification > .icon:first-child {
    width: 21px;
    height: 21px;
    padding: 5px;
  }
  .notification-check {
    display: none;
  }
  .order-notification small {
    font-size: 0.54rem;
  }
  .preview-note {
    font-size: 0.52rem;
  }
  .feature-ribbon .wrap {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 28px;
    row-gap: 14px;
    padding-block: 19px;
  }
  .feature-ribbon span {
    font-size: 0.78rem;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 25px;
  }
  .section-heading > p {
    max-width: 245px;
    font-size: 0.83rem;
  }
  .section-heading h2 {
    font-size: 2.25rem;
  }
  .feature-grid {
    gap: 14px;
  }
  .feature-card {
    padding: 22px 18px;
  }
  .feature-card h3 {
    font-size: 1.06rem;
  }
  .feature-card p {
    font-size: 0.83rem;
    min-height: 88px;
  }
  .feature-index {
    right: 19px;
    top: 25px;
  }
  .workflow-steps {
    gap: 20px;
  }
  .workflow-steps h3 {
    font-size: 1.06rem;
  }
  .workflow-steps p {
    font-size: 0.82rem;
  }
  .restaurant-section,
  .chennai-layout,
  .faq-section {
    gap: 35px;
  }
  .chennai-section {
    padding-block: 55px;
  }
  .chennai-layout h2 {
    font-size: 2rem;
  }
  .area-preview {
    padding: 24px;
  }
  .area-tags {
    gap: 7px;
  }
  .area-tags span {
    padding: 6px 9px;
    font-size: 0.7rem;
  }
  .cta-section {
    padding: 33px 28px;
    gap: 25px;
  }
  .cta-section h2 {
    font-size: 1.85rem;
  }
  .cta-section p:not(.eyebrow) {
    max-width: 380px;
  }
  .cta-section .eyebrow {
    font-size: 0.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 55px;
  }
  .feature-hero {
    gap: 30px;
  }
  .feature-hero h1 {
    font-size: 3rem;
  }
  .feature-statement p {
    font-size: 2rem;
  }
  .feature-statement {
    padding: 25px;
    min-height: 300px;
  }
  .feature-hero .lead {
    font-size: 0.97rem;
  }
  .example-grid {
    gap: 40px;
  }
  .area-group {
    grid-template-columns: 1fr 1.8fr;
  }
  .area-group ul {
    grid-template-columns: 1fr 1fr;
  }
  .contact-layout {
    gap: 30px;
  }
  .enquiry-card {
    padding: 25px;
  }
  .contact-method strong {
    font-size: 0.93rem;
  }
  .enquiry-card h2 {
    font-size: 1.7rem;
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sample-kitchen {
    padding: 12px;
    gap: 9px;
  }
  .kitchen-ticket header {
    padding: 7px;
    flex-wrap: wrap;
  }
  .kitchen-ticket p {
    font-size: 0.6rem;
    margin: 7px;
  }
  .voice-strip {
    padding: 10px;
  }
  .voice-strip b {
    font-size: 0.62rem;
  }
  .voice-strip small {
    font-size: 0.54rem;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 87px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .topbar {
    font-size: 0.67rem;
  }
  .topbar .wrap {
    padding-block: 8px;
  }
  .nav-row {
    height: 68px;
  }
  .brand-name {
    font-size: 27px;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 20px #163e3510;
    padding: 15px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header nav.is-open {
    display: flex;
  }
  .header nav > a {
    font-size: 0.95rem;
    padding: 13px 8px;
  }
  .header nav .nav-cta {
    padding: 14px 18px;
    margin-top: 10px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 37px;
    padding-bottom: 40px;
  }
  .hero .hero-title {
    font-size: clamp(3.25rem, 12vw, 4.4rem);
    letter-spacing: -0.065em;
  }
  .hero .eyebrow {
    font-size: 0.65rem;
    margin-bottom: 21px;
  }
  .hero-subtitle {
    font-size: 1.18rem;
  }
  .hero-description {
    font-size: 0.96rem;
    max-width: 500px;
    margin-bottom: 25px;
  }
  .hero-actions {
    gap: 22px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    font-size: 0.86rem;
    padding-inline: 19px;
  }
  .hero-proof {
    flex-direction: row;
    gap: 22px;
    margin-top: 22px;
    font-size: 0.68rem;
  }
  .hero-visual {
    padding: 22px 18px 16px;
    max-width: 510px;
    width: 100%;
    margin: auto;
  }
  .visual-kicker {
    font-size: 0.53rem;
    margin-bottom: 16px;
  }
  .visual-kicker span:last-child {
    display: inline;
    font-size: 0.48rem;
  }
  .pos-top {
    padding: 15px;
  }
  .pos-top strong {
    font-size: 0.89rem;
  }
  .pos-top small {
    font-size: 0.6rem;
  }
  .pos-main {
    padding: 15px;
  }
  .pos-sidebar {
    display: flex;
  }
  .pos-label b {
    font-size: 0.67rem;
  }
  .pos-label > span {
    font-size: 0.48rem;
  }
  .table-tile {
    min-height: 64px;
  }
  .table-number {
    font-size: 0.61rem;
  }
  .table-tile small {
    font-size: 0.49rem;
  }
  .pos-layout {
    min-height: 284px;
  }
  .window-bar {
    padding: 10px 15px;
  }
  .mini-brand {
    font-size: 19px;
  }
  .preview-tabs button {
    font-size: 0.65rem;
    padding: 6px 9px;
  }
  .order-notification {
    padding: 12px;
    gap: 10px;
  }
  .order-notification strong {
    font-size: 0.79rem;
  }
  .order-notification small {
    font-size: 0.6rem;
  }
  .order-notification > .icon:first-child {
    width: 25px;
    height: 25px;
    padding: 6px;
  }
  .notification-check {
    display: block;
  }
  .preview-note {
    font-size: 0.56rem;
  }
  .sample-kitchen {
    min-height: 284px;
    padding: 17px;
    gap: 11px;
  }
  .kitchen-ticket header {
    padding: 8px 10px;
    flex-wrap: nowrap;
  }
  .kitchen-ticket p {
    font-size: 0.66rem;
    margin: 8px 10px;
  }
  .voice-strip {
    padding: 13px;
  }
  .voice-strip b {
    font-size: 0.69rem;
  }
  .voice-strip small {
    font-size: 0.58rem;
  }
  .sample-bill {
    min-height: 284px;
  }
  .feature-ribbon .wrap {
    gap: 12px 23px;
    padding-block: 19px;
  }
  .feature-ribbon span {
    font-size: 0.73rem;
    gap: 7px;
  }
  .feature-ribbon .icon {
    width: 18px;
    height: 18px;
  }
  .section {
    padding-block: 56px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    margin-bottom: 29px;
  }
  .section-heading h2 {
    font-size: 2.05rem;
  }
  .section-heading > p {
    max-width: 100%;
    font-size: 0.93rem;
  }
  .eyebrow {
    font-size: 0.67rem;
    margin-bottom: 17px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }
  .feature-card {
    padding: 21px 17px 17px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .feature-icon .icon {
    width: 22px;
    height: 22px;
  }
  .feature-index {
    font-size: 0.65rem;
    top: 25px;
    right: 17px;
  }
  .feature-card h3 {
    font-size: 1.05rem;
    line-height: 1.25;
    margin-top: 20px;
    margin-bottom: 12px;
  }
  .feature-card p {
    font-size: 0.81rem;
    line-height: 1.8;
    min-height: 115px;
    margin-bottom: 18px;
  }
  .card-link {
    font-size: 0.7rem;
  }
  .workflow-section {
    padding-block: 53px;
  }
  .workflow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }
  .workflow-steps p {
    font-size: 0.85rem;
  }
  .workflow-steps h3 {
    font-size: 1.12rem;
  }
  .workflow-steps article {
    padding-top: 19px;
  }
  .step-top {
    margin-bottom: 19px;
  }
  .workflow-section .section-heading {
    gap: 24px;
  }
  .restaurant-section,
  .chennai-layout,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .section-intro {
    font-size: 0.95rem;
    margin-block: 21px;
  }
  .restaurant-types article {
    padding: 24px 0;
  }
  .chennai-section {
    padding-block: 51px;
  }
  .chennai-layout h2 {
    font-size: 2.2rem;
  }
  .area-preview {
    padding: 24px;
  }
  .area-tags span {
    font-size: 0.81rem;
    padding: 7px 12px;
  }
  .area-preview .text-link {
    font-size: 0.86rem;
  }
  .area-preview > p {
    font-size: 0.74rem;
  }
  .faq-section {
    gap: 28px;
  }
  .faq-section h2 {
    max-width: 330px;
  }
  .faq-section .muted {
    font-size: 0.9rem;
    margin-top: 20px;
  }
  .faq-section .muted br {
    display: none;
  }
  summary {
    font-size: 0.92rem;
    padding-block: 19px;
  }
  details p {
    font-size: 0.9rem;
  }
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 33px 27px;
    margin-bottom: 55px;
    gap: 29px;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-section p:not(.eyebrow) {
    font-size: 0.87rem;
    line-height: 1.9;
  }
  .cta-section .eyebrow {
    font-size: 0.6rem;
  }
  .cta-actions {
    align-items: flex-start;
  }
  .cta-phone {
    font-size: 0.82rem;
  }
  .footer {
    padding-top: 39px;
    padding-bottom: 64px;
  }
  .footer-grid {
    gap: 30px 25px;
    padding-bottom: 35px;
  }
  .footer-about {
    grid-column: 1/-1;
  }
  .footer-about p {
    margin-bottom: 13px;
  }
  .footer-grid h2 {
    font-size: 0.84rem;
    margin-bottom: 17px;
  }
  .footer-grid address,
  .footer-grid > div > a:not(.brand) {
    font-size: 0.8rem;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 20px;
    line-height: 1.6;
  }
  .footer-bottom span:nth-child(2) {
    display: none;
  }
  .footer-bottom a {
    margin-left: auto;
  }
  .mobile-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #dae4d3;
    background: white;
    padding: 9px 14px max(9px, env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 -4px 15px #183a2110;
  }
  .mobile-contact > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.79rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 5px;
    background: var(--soft);
  }
  .mobile-contact > a:last-child {
    background: var(--ink);
    color: white;
  }
  .mobile-contact .icon {
    width: 17px;
    height: 17px;
  }
  .breadcrumbs {
    font-size: 0.69rem;
    gap: 8px;
    padding-top: 22px;
  }
  .feature-hero {
    grid-template-columns: 1fr;
    padding-top: 33px;
    padding-bottom: 45px;
    gap: 30px;
  }
  .feature-hero h1 {
    font-size: 2.85rem;
  }
  .feature-hero .lead {
    font-size: 1rem;
    margin-top: 21px;
  }
  .feature-statement {
    min-height: 220px;
    padding: 26px;
  }
  .feature-statement p {
    font-size: 2rem;
    margin: 21px 0;
  }
  .feature-statement .feature-icon {
    width: 48px;
    height: 48px;
  }
  .feature-statement .icon {
    width: 26px;
    height: 26px;
  }
  .feature-statement > span:last-child {
    font-size: 0.58rem;
  }
  .feature-details {
    padding-top: 48px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  .detail-grid h3 {
    font-size: 1.23rem;
  }
  .detail-grid p {
    font-size: 0.93rem;
    margin-bottom: 10px;
  }
  .example-section {
    padding-block: 49px;
  }
  .example-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .example-grid h2 {
    font-size: 2rem;
  }
  .scenario {
    font-size: 1rem;
    margin-block: 23px;
  }
  .demo-checklist {
    padding: 25px;
  }
  .related-section {
    margin-bottom: 49px;
  }
  .related-section h2 {
    font-size: 1.85rem;
  }
  .related-links a {
    font-size: 0.8rem;
    padding: 12px 15px;
    gap: 9px;
  }
  .related-links .icon:last-child {
    margin-left: auto;
  }
  .related-links {
    display: grid;
    grid-template-columns: 1fr;
  }
  .page-intro {
    padding-block: 36px 40px;
  }
  .page-intro h1 {
    font-size: 2.85rem;
  }
  .page-intro .lead {
    font-size: 1.02rem;
    margin-top: 23px;
  }
  .directory-tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
  }
  .directory-tools > div {
    width: 100%;
    max-width: none;
  }
  .directory-tools > p {
    margin: 0;
    font-size: 0.78rem;
  }
  .search-box {
    padding-inline: 10px;
  }
  .search-box input {
    font-size: 0.82rem;
  }
  .area-jumps {
    gap: 8px;
    margin: 23px 0 25px;
  }
  .area-jumps a {
    font-size: 0.75rem;
    padding: 6px 9px;
  }
  .area-group {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 28px;
  }
  .area-group h2 {
    font-size: 1.55rem;
  }
  .area-group p {
    margin-bottom: 9px;
    font-size: 0.87rem;
  }
  .area-group ul {
    gap: 7px 16px;
  }
  .area-group li {
    font-size: 0.84rem;
    padding: 3px 0;
  }
  .coverage-note {
    padding: 25px;
  }
  .coverage-note p {
    font-size: 0.9rem;
  }
  .area-directory {
    margin-bottom: 50px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 55px;
  }
  .contact-method strong {
    font-size: 1rem;
  }
  .office-card {
    padding: 25px;
  }
  .secondary-office {
    margin-top: 25px;
  }
  .enquiry-card {
    padding: 25px;
  }
  .enquiry-card h2 {
    font-size: 1.8rem;
  }
  .enquiry-card .eyebrow {
    font-size: 0.6rem;
  }
  .form-pair {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .form-note {
    font-size: 0.73rem;
  }
  .guide .page-intro h1 {
    font-size: 2.65rem;
  }
  .guide-steps section {
    gap: 18px;
    padding-block: 24px;
  }
  .guide-steps h2 {
    font-size: 1.45rem;
  }
  .guide-steps p {
    font-size: 0.93rem;
    margin-bottom: 0;
  }
  .guide-note {
    padding: 25px;
    margin-bottom: 50px;
  }
  .guide-note h2 {
    font-size: 1.6rem;
  }
  .guide-note p {
    font-size: 0.95rem;
  }
  .prose {
    padding-block: 40px 55px;
  }
  .prose h1 {
    font-size: 3rem;
  }
  .prose h2 {
    font-size: 1.5rem;
  }
  .prose p,
  .prose address {
    font-size: 0.95rem;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero .hero-title {
    font-size: 3.2rem;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-proof {
    gap: 12px;
    font-size: 0.63rem;
  }
  .hero-visual {
    padding: 16px 10px;
  }
  .visual-kicker span:last-child {
    display: none;
  }
  .pos-sidebar {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card p {
    min-height: 0;
  }
  .feature-card {
    padding: 24px;
  }
  .feature-card h3 {
    font-size: 1.2rem;
  }
  .feature-card p {
    font-size: 0.94rem;
  }
  .feature-index {
    right: 25px;
  }
  .card-link {
    font-size: 0.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-about {
    grid-column: auto;
  }
  .area-group ul {
    column-gap: 12px;
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-method {
    gap: 10px;
  }
  .contact-method strong {
    font-size: 0.9rem;
  }
}
.feature-hero > * {
  min-width: 0;
}
h1,
h2 {
  overflow-wrap: break-word;
}
@media (max-width: 370px) {
  .feature-hero h1 {
    font-size: 2.45rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
