:root {
  --navy: #09253d;
  --navy-deep: #061b2d;
  --blue: #164f73;
  --teal: #0d8290;
  --teal-bright: #17a6ab;
  --cream: #f6f4ef;
  --sand: #ebe7dd;
  --white: #ffffff;
  --ink: #102331;
  --muted: #63737d;
  --line: rgba(9, 37, 61, 0.12);
  --shadow: 0 20px 60px rgba(6, 27, 45, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.section-tint { background: #edf0ed; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}
h1 { margin-bottom: 24px; font-size: clamp(4rem, 7.2vw, 7rem); line-height: 0.94; }
h2 { margin-bottom: 24px; font-size: clamp(3rem, 5vw, 5.25rem); line-height: 0.98; }
h3 { margin-bottom: 8px; color: var(--navy); font-size: 1.05rem; line-height: 1.35; }
em { color: var(--teal); font-weight: 400; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.eyebrow-light { color: #6ad9d7; }
.centered .eyebrow { justify-content: center; }

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(246, 244, 239, 0.93);
  box-shadow: 0 6px 24px rgba(6, 27, 45, 0.06);
  backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; min-height: 86px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { width: 118px; height: auto; }
.brand-mark {
  position: relative;
  display: flex;
  align-items: baseline;
  color: var(--navy);
  font-size: 1.85rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.25em;
  line-height: 1;
}
.brand-mark span:last-child { color: var(--teal); font-size: 1.62rem; transform: translateY(3px); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { color: var(--navy); font-size: 0.83rem; font-style: italic; letter-spacing: 0.08em; }
.brand-copy small { margin-top: 4px; color: var(--teal); font-size: 0.48rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.main-nav a:not(.button):hover { color: var(--teal); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); cursor: pointer; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: 0.25s ease;
}
.button:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.button svg { width: 17px; height: 17px; }
.button-small { min-height: 42px; padding: 0 18px; color: var(--white) !important; }
.button-light { border-color: var(--white); background: var(--white); color: var(--navy); }
.button-light:hover { border-color: #b7f1ef; background: #b7f1ef; color: var(--navy); }
.button-outline { border-color: rgba(255,255,255,.5); background: transparent; }
.button-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.text-link svg { width: 16px; height: 16px; transition: .2s ease; }
.text-link:hover { color: var(--teal); }
.text-link:hover svg { transform: translate(2px, -2px); }

.hero { min-height: 100vh; padding-top: 86px; background: #f1efe9; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; min-height: 750px; align-items: center; gap: 64px; padding-block: 56px 36px; }
.hero-text { max-width: 670px; color: #53656f; font-size: 1.06rem; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 38px; color: var(--blue); font-size: 0.72rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.hero-points span { display: flex; align-items: center; gap: 7px; }
.hero-points svg { width: 16px; color: var(--teal); }
.hero-visual { position: relative; align-self: stretch; min-height: 650px; }
.hero-image-wrap {
  position: absolute;
  top: 30px; right: 0; bottom: 28px; left: 36px;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
}
.hero-image-wrap::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,27,45,.28)); content: ""; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute;
  bottom: 0; left: 0;
  display: flex;
  max-width: 350px;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-card-icon { display: grid; flex: 0 0 43px; height: 43px; place-items: center; background: #d8f0ee; color: var(--teal); }
.hero-card svg { width: 22px; }
.hero-card strong { display: block; color: var(--navy); font-size: .9rem; line-height: 1.4; }
.hero-card p { margin: 5px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.6; }
.hero-stamp {
  position: absolute;
  top: 3px; right: -30px;
  display: flex;
  width: 122px; height: 122px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  line-height: 1;
  text-align: center;
}
.hero-stamp svg { width: 14px; }
.hero-stamp strong { margin: 3px 0; font-size: 2rem; font-style: italic; letter-spacing: -.12em; }
.hero-stamp span { max-width: 70px; font-size: .52rem; font-weight: 800; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.hero-bottom { background: var(--navy); color: var(--white); }
.hero-bottom-inner { display: flex; min-height: 96px; align-items: center; justify-content: space-between; gap: 32px; }
.hero-bottom-label { color: #78d3d4; font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero-bottom-items { display: flex; gap: 32px; color: rgba(255,255,255,.8); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.hero-bottom-items b { margin-right: 6px; color: var(--teal-bright); font-weight: 800; }

.split-intro { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; }
.section-heading h2 { max-width: 750px; }
.intro-copy p { color: var(--muted); font-size: 1rem; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
.section-heading-row h2 { margin-bottom: 0; }
.section-heading-row > p { max-width: 420px; margin-bottom: 5px; color: var(--muted); font-size: .94rem; }
.centered { max-width: 770px; margin: 0 auto 45px; text-align: center; }
.centered h2 { margin-inline: auto; }
.centered > p:last-child { max-width: 620px; margin: auto; color: var(--muted); font-size: .92rem; }

.hr-app { overflow: hidden; background: var(--navy); color: var(--white); }
.hr-app h2 { color: var(--white); }
.hr-app h3 { color: var(--white); }
.app-intro { display: grid; align-items: end; gap: 75px; grid-template-columns: 1.05fr .95fr; }
.app-intro-copy p { max-width: 580px; margin-bottom: 26px; color: rgba(255,255,255,.65); font-size: .94rem; }
.app-choice { display: grid; margin: 58px 0 110px; border: 1px solid rgba(255,255,255,.14); grid-template-columns: repeat(2, 1fr); }
.app-choice > div { position: relative; padding: 25px 28px; }
.app-choice > div + div { border-left: 1px solid rgba(255,255,255,.14); }
.app-choice svg { width: 23px; color: #74dad9; }
.app-choice span { display: block; margin: 17px 0 5px; color: #74dad9; font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.app-choice strong { display: block; color: var(--white); font-size: 1rem; }
.app-choice p { max-width: 460px; margin: 7px 0 0; color: rgba(255,255,255,.54); font-size: .76rem; }
.app-showcase { display: grid; align-items: center; gap: 60px; grid-template-columns: .9fr 1.1fr; }
.app-features h3, .snapshot-heading h3 { margin-bottom: 16px; font-family: "DM Serif Display", Georgia, serif; font-size: 3rem; font-weight: 400; letter-spacing: -.02em; line-height: 1; }
.app-features-copy { max-width: 540px; color: rgba(255,255,255,.58); font-size: .87rem; }
.app-feature-grid { display: grid; gap: 10px; margin-top: 29px; grid-template-columns: repeat(2, 1fr); }
.app-feature-grid div { display: flex; align-items: center; gap: 9px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.85); font-size: .72rem; font-weight: 700; }
.app-feature-grid svg { width: 17px; color: #74dad9; }
.app-device-stage { position: relative; min-height: 610px; }
.app-device { position: absolute; overflow: hidden; border: 7px solid #f9fbfc; border-radius: 22px; margin: 0; background: #e8f4f7; box-shadow: 0 24px 65px rgba(0,0,0,.28); }
.app-device img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.app-device figcaption { position: absolute; right: 13px; bottom: 12px; padding: 6px 9px; border-radius: 30px; background: rgba(6,27,45,.83); color: var(--white); font-size: .53rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.app-device-main { top: 0; right: 22%; width: 320px; height: 600px; z-index: 2; }
.app-device-side { top: 72px; right: 0; width: 260px; height: 488px; opacity: .8; transform: rotate(4deg); }
.app-live-badge { position: absolute; right: 0; bottom: 5px; z-index: 3; display: flex; align-items: center; gap: 7px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.2); background: rgba(6,27,45,.72); color: rgba(255,255,255,.8); font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(10px); }
.app-live-badge span { width: 8px; height: 8px; border-radius: 50%; background: #66d5b4; box-shadow: 0 0 0 4px rgba(102,213,180,.14); }
.app-snapshots { padding-top: 110px; }
.snapshot-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.snapshot-heading .eyebrow { margin-bottom: 13px; }
.snapshot-grid { display: grid; gap: 16px; margin-top: 22px; grid-template-columns: repeat(3, 1fr); }
.snapshot-card { overflow: hidden; border: 1px solid rgba(255,255,255,.12); margin: 0; background: rgba(255,255,255,.04); }
.snapshot-image { height: 380px; overflow: hidden; background: #e8f4f7; }
.snapshot-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: .35s ease; }
.snapshot-card:hover .snapshot-image img { transform: scale(1.035); }
.snapshot-card figcaption { display: grid; padding: 18px; gap: 3px; }
.snapshot-card figcaption span { color: #74dad9; font-size: .58rem; font-weight: 800; letter-spacing: .12em; }
.snapshot-card figcaption strong { color: var(--white); font-size: .9rem; }
.snapshot-card figcaption small { color: rgba(255,255,255,.48); font-size: .7rem; line-height: 1.55; }
.app-demo-note { margin: 22px 0 0; color: rgba(255,255,255,.43); font-size: .69rem; }
.app-demo-note a { color: #74dad9; font-weight: 800; }

.service-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(5, 1fr); }
.service-card {
  position: relative;
  min-height: 250px;
  padding: 25px 20px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.3);
  transition: .25s ease;
}
.service-card:hover { z-index: 2; background: var(--navy); box-shadow: var(--shadow); transform: translateY(-6px); }
.service-icon { display: grid; width: 44px; height: 44px; margin-bottom: 32px; place-items: center; background: rgba(13,130,144,.1); color: var(--teal); }
.service-icon svg { width: 21px; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .76rem; line-height: 1.65; }
.service-card > span { position: absolute; top: 22px; right: 16px; color: rgba(9,37,61,.24); font-size: .69rem; font-weight: 800; }
.service-card:hover h3, .service-card:hover p { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,.65); }
.service-card:hover > span { color: rgba(255,255,255,.35); }
.service-card:hover .service-icon { background: var(--teal); color: var(--white); }

.payroll-feature { background: var(--navy); color: var(--white); }
.payroll-grid { display: grid; min-height: 690px; grid-template-columns: .95fr 1.05fr; }
.payroll-photo { position: relative; min-height: 500px; }
.payroll-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-note { position: absolute; right: 0; bottom: 0; display: flex; align-items: center; gap: 10px; padding: 20px; background: var(--teal); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.photo-note svg { width: 17px; }
.payroll-copy { align-self: center; padding: 70px 0 70px 74px; }
.payroll-copy h2 { max-width: 650px; color: var(--white); }
.payroll-copy > p { max-width: 620px; color: rgba(255,255,255,.63); }
.check-grid { display: grid; margin: 32px 0 22px; gap: 12px 20px; grid-template-columns: repeat(2, 1fr); }
.check-grid span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.84); font-size: .75rem; font-weight: 700; }
.check-grid svg { width: 15px; color: #6ad9d7; }
.payroll-copy .fine-print { color: rgba(255,255,255,.42); font-size: .67rem; }

.pricing-switch { display: flex; width: max-content; margin: 0 auto 34px; padding: 4px; border: 1px solid var(--line); background: #e9e7e0; }
.price-tab { padding: 12px 18px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: .71rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price-tab.active { background: var(--navy); color: var(--white); }
.pricing-panel { display: none; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.pricing-panel.active { display: grid; }
.price-card { position: relative; padding: 34px; border: 1px solid var(--line); background: var(--white); }
.price-card.featured { border-top: 4px solid var(--teal); box-shadow: var(--shadow); transform: translateY(-10px); }
.featured-tag { position: absolute; top: 19px; right: 20px; padding: 4px 7px; background: #d9f0ee; color: var(--teal); font-size: .55rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.price-label { margin-bottom: 10px; color: var(--teal); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.price-card h3 { font-size: 1.3rem; }
.price { margin: 25px 0 8px; color: var(--navy); font-size: 3rem; font-weight: 800; letter-spacing: -.08em; line-height: 1; }
.price small { margin-right: 4px; font-size: 1rem; letter-spacing: 0; }
.price span { color: var(--muted); font-size: .68rem; letter-spacing: 0; }
.price-card > p:not(.price-label) { min-height: 50px; color: var(--muted); font-size: .8rem; }
.price-card ul { padding: 19px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 20px 0; list-style: none; }
.price-card li { display: flex; align-items: center; gap: 8px; padding: 4px 0; color: #4e626d; font-size: .75rem; }
.price-card li svg { width: 15px; color: var(--teal); }
.price-card > a { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price-card > a svg { width: 15px; transition: .2s ease; }
.price-card > a:hover { color: var(--teal); }
.price-card > a:hover svg { transform: translateX(4px); }

.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 21px 0; border: 0; background: transparent; color: var(--navy); cursor: pointer; text-align: left; }
.accordion-trigger span { display: flex; align-items: center; gap: 15px; }
.accordion-trigger span svg { width: 21px; color: var(--teal); }
.accordion-trigger > svg { width: 19px; transition: .25s ease; }
.accordion-item.open .accordion-trigger > svg { transform: rotate(45deg); }
.accordion-content { display: grid; max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.fee-list { display: grid; gap: 0; padding: 0 0 22px 36px; grid-template-columns: repeat(2, 1fr); }
.fee-list div { display: flex; min-height: 57px; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 18px; border-top: 1px solid rgba(9,37,61,.08); font-size: .74rem; }
.fee-list span { color: var(--muted); }
.fee-list strong { color: var(--navy); font-size: .7rem; text-align: right; white-space: nowrap; }

.collaboration { background: var(--white); }
.collaboration-grid { display: grid; align-items: center; gap: 90px; grid-template-columns: .9fr 1.1fr; }
.collaboration-copy p:not(.eyebrow) { max-width: 520px; color: var(--muted); font-size: .94rem; }
.model-card { padding: 28px; background: var(--navy); box-shadow: var(--shadow); }
.model-step { display: flex; align-items: center; gap: 18px; }
.model-step > span { display: grid; width: 48px; height: 48px; flex: 0 0 48px; place-items: center; border-radius: 50%; background: var(--teal); color: var(--white); font-size: .71rem; font-weight: 800; }
.model-step div { display: flex; flex-direction: column; }
.model-step strong { color: var(--white); font-size: .95rem; }
.model-step small { margin-top: 3px; color: rgba(255,255,255,.56); font-size: .72rem; line-height: 1.5; }
.model-line { width: 1px; height: 34px; margin-left: 24px; background: rgba(255,255,255,.22); }
.example { display: flex; align-items: center; gap: 22px; margin-top: 72px; padding: 22px 25px; border: 1px solid var(--line); }
.example > span { color: var(--teal); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.example > strong { margin-right: auto; color: var(--navy); font-size: .8rem; }
.example div { display: flex; flex-direction: column; min-width: 105px; }
.example b { color: var(--navy); font-size: 1.1rem; }
.example small { color: var(--muted); font-size: .58rem; }
.example svg { width: 17px; color: var(--teal); }

.contact { padding: 125px 0; background: var(--navy); color: var(--white); }
.contact-grid { display: grid; align-items: start; gap: 70px; grid-template-columns: .86fr 1.14fr; }
.contact h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.62); font-size: .96rem; }
.contact-note { display: flex; max-width: 420px; align-items: center; gap: 10px; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.58); font-size: .72rem; }
.contact-note svg { width: 18px; color: #74dad9; }
.enquiry-form { display: grid; gap: 16px; padding: 28px; background: rgba(255,255,255,.08); }
.form-row { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.enquiry-form label { display: grid; gap: 7px; }
.enquiry-form label span { color: rgba(255,255,255,.72); font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 0; outline: 0; background: rgba(255,255,255,.08); color: var(--white); font: inherit; font-size: .83rem; transition: .2s ease; }
.enquiry-form input, .enquiry-form select { height: 48px; padding: 0 12px; }
.enquiry-form textarea { min-height: 112px; padding: 11px 12px; resize: vertical; }
.enquiry-form select option { color: var(--ink); }
.enquiry-form textarea::placeholder { color: rgba(255,255,255,.36); }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: #74dad9; background: rgba(255,255,255,.12); }
.form-trap { position: absolute !important; left: -9999px !important; }
.form-submit { width: max-content; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.form-status { min-height: 20px; margin: -5px 0 0; color: rgba(255,255,255,.68); font-size: .73rem; }
.form-status.success { color: #8ce1c8; }
.form-status.error { color: #ffc4b6; }
footer { padding: 26px 0; background: var(--navy-deep); color: rgba(255,255,255,.5); }
.footer-grid { display: flex; align-items: center; gap: 28px; }
.brand-footer .brand-mark, .brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-logo { width: 108px; }
.footer-grid p { margin: 0; font-size: .68rem; }
.credits { margin-left: auto !important; }
.credits a { color: #78d3d4; }

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

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .main-nav { gap: 16px; }
  .main-nav a { font-size: .67rem; }
  .hero-grid { gap: 24px; }
  .hero-stamp { right: -5px; width: 105px; height: 105px; }
  .hero-bottom-items { gap: 16px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .app-intro, .app-showcase { gap: 45px; }
  .app-device-main { right: 16%; width: 290px; height: 545px; }
  .app-device-side { width: 230px; height: 430px; }
  .app-device-stage { min-height: 555px; }
  .payroll-copy { padding-left: 45px; }
  .fee-list { grid-template-columns: 1fr; }
  .collaboration-grid { gap: 50px; }
  .example { flex-wrap: wrap; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 640px); }
  .site-header { background: rgba(246, 244, 239, .95); }
  .nav-wrap { min-height: 70px; }
  .brand-logo { width: 102px; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: absolute;
    top: 70px; right: 0; left: 0;
    display: none;
    align-items: stretch;
    padding: 18px 15px 22px;
    border-top: 1px solid var(--line);
    background: rgba(246,244,239,.98);
    box-shadow: 0 18px 25px rgba(6,27,45,.08);
  }
  .main-nav.open { display: flex; flex-direction: column; }
  .main-nav a { padding: 6px 0; }
  .main-nav .button { margin-top: 6px; }
  .hero { padding-top: 70px; }
  .hero-grid { display: block; min-height: auto; padding: 76px 0 50px; }
  h1 { font-size: clamp(4.25rem, 19vw, 6rem); }
  h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-text { font-size: .92rem; }
  .hero-visual { min-height: 430px; margin-top: 45px; }
  .hero-image-wrap { top: 0; right: 0; bottom: 16px; left: 14px; }
  .hero-card { max-width: 290px; padding: 15px; }
  .hero-stamp { top: -24px; right: -4px; }
  .hero-bottom-inner { display: block; padding: 24px 0; }
  .hero-bottom-items { display: grid; gap: 7px; margin-top: 12px; }
  .split-intro, .collaboration-grid { grid-template-columns: 1fr; gap: 25px; }
  .app-intro, .app-showcase { grid-template-columns: 1fr; gap: 28px; }
  .app-choice { display: block; margin: 45px 0 72px; }
  .app-choice > div + div { border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .app-device-stage { min-height: 510px; margin-top: 15px; }
  .app-device-main { left: 0; width: 260px; height: 488px; }
  .app-device-side { top: 62px; right: -20px; width: 205px; height: 386px; }
  .app-snapshots { padding-top: 78px; }
  .snapshot-heading { display: block; }
  .snapshot-grid { display: block; }
  .snapshot-card { margin-bottom: 14px; }
  .section-heading-row { display: block; margin-bottom: 34px; }
  .section-heading-row > p { margin-top: 18px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 235px; }
  .payroll-grid { display: block; }
  .payroll-photo { min-height: 320px; margin-inline: -15px; }
  .payroll-copy { padding: 70px 0; }
  .check-grid { grid-template-columns: 1fr; }
  .pricing-switch { width: 100%; }
  .price-tab { flex: 1; padding: 11px 10px; font-size: .6rem; }
  .pricing-panel.active { display: block; }
  .price-card { margin-bottom: 15px; padding: 28px; }
  .price-card.featured { transform: none; }
  .fee-list { padding-left: 0; }
  .fee-list div { display: block; padding: 11px 0; }
  .fee-list strong { display: block; margin-top: 2px; text-align: left; white-space: normal; }
  .example { gap: 14px; margin-top: 38px; }
  .example > span, .example > strong { width: 100%; }
  .example div { min-width: 86px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .enquiry-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { display: block; }
  .footer-grid p { margin-top: 14px; }
  .credits { margin-top: 8px !important; }
}

@media (max-width: 440px) {
  .section { padding: 76px 0; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .hero-points { display: grid; gap: 10px; }
  .hero-visual { min-height: 375px; }
  .hero-stamp { width: 92px; height: 92px; }
  .hero-stamp strong { font-size: 1.65rem; }
  .hero-stamp span { font-size: .45rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; }
  .example svg { display: none; }
}
