:root {
  --ink: #092e31;
  --ink-deep: #061f22;
  --ink-soft: #17484a;
  --acid: #dbff63;
  --acid-deep: #bfe63e;
  --coral: #ff7658;
  --coral-deep: #c84d38;
  --cream: #f5f4ea;
  --paper: #fffef8;
  --white: #ffffff;
  --text: #173638;
  --muted: #566d6f;
  --line: rgba(9, 46, 49, 0.14);
  --shadow: 0 24px 70px rgba(6, 31, 34, 0.15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--acid), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background-color 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}

.site-header.scrolled {
  background: rgba(6, 31, 34, 0.9);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--acid);
  border-radius: 13px 13px 13px 4px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.primary-nav > a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.primary-nav > a:hover {
  color: var(--white);
}

.primary-nav .nav-call {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
}

.nav-call svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 158px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 32%, rgba(33, 118, 113, 0.44), transparent 34%),
    linear-gradient(145deg, #092e31 0%, #061f22 58%, #031719 100%);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  top: -180px;
  left: -120px;
  background: rgba(219, 255, 99, 0.08);
  box-shadow: 0 0 120px rgba(219, 255, 99, 0.1);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: 40px;
  background: rgba(255, 118, 88, 0.11);
  box-shadow: 0 0 90px rgba(255, 118, 88, 0.09);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--acid);
}

.eyebrow.dark {
  color: var(--ink-soft);
}

.eyebrow.dark > span {
  background: var(--coral);
}

.hero h1,
.section-heading h2,
.process-intro h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(4.25rem, 7.2vw, 7.15rem);
}

.hero h1 em {
  color: var(--acid);
  font-weight: inherit;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 200ms var(--ease), background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg,
.text-button svg,
.card-action svg,
.service-card button svg,
.faq-intro a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms var(--ease);
}

.button:hover svg,
.text-button:hover svg,
.card-action:hover svg,
.service-card button:hover svg,
.faq-intro a:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 12px 35px rgba(219, 255, 99, 0.16);
}

.button-primary:hover {
  background: #e4ff89;
  box-shadow: 0 16px 42px rgba(219, 255, 99, 0.22);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ink-soft);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 50px;
}

.hero-proof > div {
  display: grid;
  gap: 2px;
  min-width: 125px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-proof > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.clarity-card {
  position: relative;
  z-index: 3;
  width: min(420px, 92%);
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 254, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.28);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) rotate(-2deg);
  transform-style: preserve-3d;
  transition: transform 300ms var(--ease);
}

.clarity-card::before {
  content: "";
  position: absolute;
  inset: 11px;
  pointer-events: none;
  border: 1px solid rgba(9, 46, 49, 0.08);
  border-radius: 24px;
}

.clarity-card > * {
  position: relative;
  z-index: 1;
}

.clarity-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card-kicker {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clarity-card h2 {
  margin: 2px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: var(--ink-soft);
  background: rgba(219, 255, 99, 0.45);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
}

.live-dot i {
  width: 7px;
  height: 7px;
  background: #3b8e4b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(59, 142, 75, 0.12);
}

.clarity-score {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.score-ring {
  position: relative;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--coral) 0 26%, var(--acid-deep) 26% 78%, rgba(9, 46, 49, 0.08) 78%);
  border-radius: 50%;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--paper);
  border-radius: 50%;
}

.score-ring span {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 900;
}

.score-label {
  display: block;
  color: var(--muted);
  font-size: 0.71rem;
}

.clarity-score strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 500;
}

.clarity-score p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.mini-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-checklist li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(9, 46, 49, 0.035);
  border-radius: 11px;
  font-size: 0.77rem;
  font-weight: 750;
}

.mini-checklist small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
}

.check-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 0.69rem;
  font-weight: 900;
}

.card-action {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 17px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orbit::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(219, 255, 99, 0.8);
}

.orbit-one {
  width: 520px;
  height: 520px;
  animation: orbit-spin 18s linear infinite;
}

.orbit-one::before {
  top: 45px;
  left: 98px;
}

.orbit-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
  animation: orbit-spin 22s linear infinite reverse;
}

.orbit-two::before {
  right: 16px;
  bottom: 120px;
  background: var(--coral);
  box-shadow: 0 0 24px rgba(255, 118, 88, 0.7);
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.float-chip {
  position: absolute;
  z-index: 4;
  min-width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border: 4px solid rgba(9, 46, 49, 0.85);
  border-radius: 18px;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  animation: chip-float 4.6s ease-in-out infinite;
}

.chip-gst { top: 72px; right: 25px; transform: rotate(9deg); }
.chip-itr { bottom: 70px; left: 0; background: var(--coral); animation-delay: -1.4s; transform: rotate(-9deg); }
.chip-tds { right: -12px; bottom: 125px; background: var(--paper); animation-delay: -2.6s; transform: rotate(6deg); }

@keyframes chip-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}

.trust-ribbon {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
}

.trust-ribbon i {
  width: 4px;
  height: 4px;
  background: var(--acid);
  border-radius: 50%;
}

.trust-ribbon a {
  transition: color 180ms ease;
}

.trust-ribbon a:hover {
  color: var(--white);
}

.services {
  position: relative;
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.process-intro h2,
.faq-intro h2 {
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 5rem);
}

.section-heading > p,
.process-intro > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 52px 0 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.filter-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: rgba(255, 254, 248, 0.75);
  border: 1px solid rgba(9, 46, 49, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), background-color 300ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -80px;
  bottom: -100px;
  background: var(--acid);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 300ms ease, transform 500ms var(--ease);
}

.service-card:hover {
  z-index: 2;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card:hover::after {
  opacity: 0.32;
  transform: scale(1.6);
}

.service-card[hidden] {
  display: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.popular-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 14px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 0 0 12px 0;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured .service-icon {
  margin-top: 12px;
}

.service-icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(9, 46, 49, 0.07);
  border-radius: 15px 15px 15px 5px;
  font-size: 0.72rem;
  font-weight: 900;
  transition: background-color 250ms ease, transform 300ms var(--ease);
}

.service-card:hover .service-icon {
  background: var(--acid);
  transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.service-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.7;
}

.service-card button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: pointer;
  align-self: flex-start;
}

.statement {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  background: var(--coral-deep);
  overflow: hidden;
}

.statement::before,
.statement::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.statement::before {
  width: 420px;
  height: 420px;
  top: -270px;
  right: -80px;
}

.statement::after {
  width: 260px;
  height: 260px;
  bottom: -190px;
  left: -60px;
}

.statement-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
}

.statement-mark {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  line-height: 0.55;
  opacity: 0.85;
}

.statement blockquote {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.statement blockquote em {
  color: var(--ink);
  font-weight: inherit;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 0 5px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}

.text-button.light {
  color: var(--white);
}

.process {
  background: var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 110px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 130px;
}

.process-intro > p {
  max-width: 520px;
  margin: 28px 0 32px;
}

.process-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-steps li {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-steps li > span {
  color: var(--coral-deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  align-self: start;
  margin-top: 15px;
}

.process-steps h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.process-steps li > svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  gap: 100px;
}

.faq-intro > p {
  margin: 25px 0;
}

.faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 850;
  border-bottom: 1px solid var(--ink);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 2px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  max-width: 670px;
  margin: -7px 0 27px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.8;
}

.contact {
  padding-top: 20px;
  background: var(--cream);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
  gap: 70px;
  padding: 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(219, 255, 99, 0.09), transparent 30%),
    var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-panel::after {
  content: "RK";
  position: absolute;
  right: 42%;
  bottom: -98px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.contact-copy,
.contact-options {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-options {
  display: grid;
  align-content: center;
  gap: 10px;
}

.contact-options > a {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  transition: background-color 200ms ease, transform 250ms var(--ease);
}

.contact-options > a:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateX(5px);
}

.contact-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 13px;
}

.contact-icon svg,
.option-arrow {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-options a > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.contact-options small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
}

.contact-options strong {
  overflow: hidden;
  color: var(--white);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.option-arrow {
  color: rgba(255, 255, 255, 0.35);
}

.site-footer {
  padding: 75px 0 110px;
  background: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: auto minmax(250px, 1fr) auto;
  align-items: center;
  gap: 60px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .brand-copy strong {
  color: var(--ink);
}

.footer-brand .brand-copy small {
  color: var(--muted);
}

.footer-main > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-main nav a {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  color: var(--muted);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

.inquiry-dialog {
  width: min(580px, calc(100% - 28px));
  max-height: calc(100dvh - 30px);
  margin: auto;
  padding: 0;
  color: var(--text);
  background: var(--paper);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
  overflow: auto;
}

.inquiry-dialog::backdrop {
  background: rgba(3, 20, 22, 0.76);
  backdrop-filter: blur(8px);
}

.inquiry-dialog[open] {
  animation: dialog-in 300ms var(--ease) both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-shell {
  position: relative;
  padding: 42px;
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.dialog-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.dialog-shell h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.dialog-intro {
  margin: 14px 0 26px;
  color: var(--muted);
  font-size: 0.82rem;
}

.inquiry-dialog form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.inquiry-dialog label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.71rem;
  font-weight: 800;
}

.inquiry-dialog label:nth-child(n + 3) {
  grid-column: 1 / -1;
}

.inquiry-dialog label span {
  color: var(--muted);
  font-weight: 500;
}

.inquiry-dialog input,
.inquiry-dialog select,
.inquiry-dialog textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 11px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.inquiry-dialog textarea {
  resize: vertical;
}

.inquiry-dialog input:focus,
.inquiry-dialog select:focus,
.inquiry-dialog textarea:focus {
  border-color: var(--ink-soft);
  box-shadow: 0 0 0 3px rgba(9, 46, 49, 0.08);
}

.dialog-submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 3px;
}

.form-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 0.65rem;
}

.form-note svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.toast {
  position: fixed;
  z-index: 2100;
  right: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  padding: 12px 17px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 0.76rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 250ms var(--ease);
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7vw, 5.7rem);
  }

  .hero-visual {
    transform: scale(0.9);
    transform-origin: center;
  }

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

  .statement-inner {
    grid-template-columns: auto 1fr;
  }

  .statement .text-button {
    grid-column: 2;
    justify-self: start;
  }

  .process-layout,
  .faq-layout {
    gap: 60px;
  }

  .contact-panel {
    padding: 54px;
    gap: 40px;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  .section {
    padding: 84px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 64px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 13px;
    background: rgba(6, 31, 34, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 250ms var(--ease);
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a {
    padding: 12px;
  }

  .primary-nav .nav-call {
    justify-content: center;
    margin-top: 5px;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 100px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy {
    max-width: 670px;
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(3.7rem, 12vw, 6rem);
  }

  .hero-visual {
    min-height: 555px;
    transform: none;
  }

  .trust-ribbon {
    position: relative;
    width: 100%;
    min-height: auto;
    flex-wrap: wrap;
    margin-top: 35px;
    padding: 25px 20px 0;
    gap: 10px 15px;
  }

  .section-heading,
  .process-layout,
  .faq-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 600px;
  }

  .process-intro {
    position: static;
  }

  .faq-layout {
    gap: 45px;
  }

  .contact-panel {
    padding: 50px 42px;
  }

  .contact-options {
    margin-top: 15px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy small {
    font-size: 0.56rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 112px 0 72px;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.7rem);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }

  .hero-proof > div {
    min-width: 0;
    padding: 0 12px;
  }

  .hero-proof span {
    font-size: 0.6rem;
    line-height: 1.35;
  }

  .hero-visual {
    min-height: 470px;
    margin-inline: -10px;
  }

  .clarity-card {
    width: min(370px, calc(100% - 25px));
    padding: 22px;
    border-radius: 26px;
  }

  .clarity-card h2 {
    font-size: 1.75rem;
  }

  .live-dot {
    font-size: 0.58rem;
  }

  .clarity-score {
    gap: 14px;
    margin: 22px 0;
    padding: 18px 0;
  }

  .score-ring {
    width: 74px;
    height: 74px;
  }

  .mini-checklist li {
    grid-template-columns: auto 1fr;
  }

  .mini-checklist small {
    display: none;
  }

  .orbit-one { width: 410px; height: 410px; }
  .orbit-two { width: 330px; height: 330px; }
  .float-chip { min-width: 50px; height: 50px; border-radius: 15px; }
  .chip-gst { top: 28px; right: 3px; }
  .chip-itr { bottom: 22px; left: 2px; }
  .chip-tds { right: -2px; bottom: 80px; }

  .trust-ribbon {
    display: grid;
    justify-items: center;
    font-size: 0.68rem;
    text-align: center;
  }

  .trust-ribbon i {
    display: none;
  }

  .section-heading h2,
  .process-intro h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

  .service-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 38px;
  }

  .filter-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .filter-button {
    padding: 0 10px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }

  .statement {
    padding: 78px 0;
  }

  .statement-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .statement-mark {
    font-size: 5rem;
  }

  .statement blockquote {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .statement .text-button {
    grid-column: 1;
    margin-top: 15px;
  }

  .process-layout {
    gap: 50px;
  }

  .process-steps li {
    grid-template-columns: 38px 1fr;
    min-height: 175px;
    gap: 12px;
  }

  .process-steps li > svg {
    display: none;
  }

  .process-steps h3 {
    font-size: 1.43rem;
  }

  .accordion summary {
    font-size: 1.12rem;
  }

  .contact {
    padding-top: 0;
  }

  .contact-panel {
    gap: 34px;
    padding: 42px 22px;
    border-radius: 28px;
  }

  .contact-options > a {
    padding: 14px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
  }

  .contact-options strong {
    font-size: 0.72rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-main nav {
    grid-column: 1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding: 60px 0 50px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    height: 68px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    padding: 8px max(10px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    background: rgba(255, 254, 248, 0.95);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(15px);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 13px;
    font-size: 0.77rem;
    font-weight: 850;
  }

  .mobile-actions .mobile-call {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
  }

  .mobile-actions svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .dialog-shell {
    padding: 38px 22px 26px;
  }

  .dialog-shell h2 {
    font-size: 2.1rem;
  }

  .inquiry-dialog form {
    grid-template-columns: 1fr;
  }

  .inquiry-dialog label,
  .inquiry-dialog label:nth-child(n + 3),
  .dialog-submit,
  .form-note {
    grid-column: 1;
  }

  .toast {
    right: 12px;
    bottom: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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