:root {
  --ink: #10263a;
  --ink-soft: #516273;
  --deep: #0b2138;
  --deep-2: #092f43;
  --teal: #0a8a7e;
  --teal-dark: #087165;
  --aqua: #dff7f3;
  --blue-wash: #edf8fc;
  --line: #dce7ec;
  --paper: #ffffff;
  --warm: #fffaf2;
  --shadow-sm: 0 10px 30px rgba(11, 33, 56, .08);
  --shadow-lg: 0 30px 70px rgba(11, 33, 56, .16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  font-weight: 780;
}

h3 {
  margin-bottom: 13px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  color: var(--ink-soft);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-light {
  background: #f8fbfc;
}

.section-tint {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(20, 184, 166, .12), transparent 30%),
    linear-gradient(180deg, #f4fbfd 0%, #eaf7f9 100%);
}

.section-dark {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(20, 184, 166, .20), transparent 28%),
    linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%);
}

.section-dark::after {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 15px;
  color: #fff;
  background: var(--deep);
  border-radius: 8px;
  transform: translateY(-140%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(220, 231, 236, .82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #16a6c0);
  border-radius: 14px;
  box-shadow: 0 9px 22px rgba(10, 138, 126, .22);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.28rem;
  letter-spacing: .12em;
}

.brand-copy span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  position: relative;
  color: #405365;
  font-size: .94rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(11, 33, 56, .15);
}

.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.footer-link:focus-visible,
.footer-links a:focus-visible,
.contact-detail:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.dialog-close:focus-visible {
  outline: 3px solid rgba(20, 184, 166, .35);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #0b7890);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--teal-dark), #075f75);
}

.button-light {
  color: var(--deep);
  background: #fff;
}

.button-small {
  min-height: 44px;
  padding: 0 21px;
  font-size: .9rem;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Shared headings */
.eyebrow {
  margin-bottom: 17px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #72e0d1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-heading.centred {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centred p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.section-heading-light h2 {
  color: #fff;
}

.section-heading-light p {
  color: rgba(255, 255, 255, .72);
}

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

.section-action-left {
  justify-content: flex-start;
}

/* Hero */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: 76px 0 90px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .96), rgba(245, 252, 253, .94)),
    #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 138, 126, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 138, 126, .035) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

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

.hero-glow-one {
  top: -190px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: rgba(20, 184, 166, .11);
}

.hero-glow-two {
  bottom: -220px;
  left: -170px;
  width: 480px;
  height: 480px;
  background: rgba(83, 191, 236, .10);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(470px, .88fr);
  align-items: center;
  gap: 66px;
}

.hero-copy {
  padding: 40px 0;
}

.hero-intro {
  max-width: 670px;
  margin-bottom: 31px;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-list {
  display: flex;
  padding: 0;
  margin: 37px 0 0;
  flex-wrap: wrap;
  gap: 15px 23px;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 22px;
  color: #526879;
  font-size: .92rem;
  font-weight: 650;
}

.trust-list li::before {
  position: absolute;
  top: .43em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border: 3px solid var(--aqua);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  padding: 18px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
  backdrop-filter: blur(18px);
}

.visual-card::before {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #12b7a8, #6fdacb);
  border-radius: 30px;
  content: "";
  opacity: .16;
  transform: rotate(18deg);
}

.visual-card-top {
  display: flex;
  padding: 6px 8px 16px;
  align-items: center;
  gap: 9px;
  color: #56697a;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #28c898;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(40, 200, 152, .14);
}

.room-illustration {
  width: 100%;
  border-radius: 22px;
}

.visual-caption {
  display: flex;
  padding: 18px 10px 5px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.visual-caption div {
  display: flex;
  flex-direction: column;
}

.visual-caption strong {
  font-size: 1.02rem;
}

.visual-caption span:not(.spark-badge) {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: .8rem;
}

.spark-badge {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--teal);
  background: var(--aqua);
  border-radius: 50%;
  font-size: 1.2rem;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  display: grid;
  min-height: 445px;
  padding: 44px;
  grid-template-columns: 82px 1fr;
  align-items: start;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card-accent {
  background:
    linear-gradient(145deg, rgba(223, 247, 243, .82), rgba(255, 255, 255, .96));
  border-color: #bfe5de;
}

.service-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: var(--teal);
  background: var(--aqua);
  border-radius: 24px;
}

.service-icon svg {
  width: 43px;
  height: 43px;
}

.card-kicker {
  margin-bottom: 7px;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.service-card p:not(.card-kicker) {
  margin-bottom: 23px;
}

.tick-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding: 10px 0 10px 29px;
  color: #44596b;
  border-bottom: 1px solid #edf2f4;
}

.tick-list li:last-child {
  border-bottom: 0;
}

.tick-list li::before {
  position: absolute;
  top: 14px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  content: "✓";
  font-size: .68rem;
  font-weight: 900;
}

/* Benefits */
.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  min-height: 280px;
  padding: 30px 27px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
}

.benefit-number {
  display: inline-block;
  margin-bottom: 54px;
  color: #72e0d1;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.benefit-card h3 {
  color: #fff;
}

.benefit-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
  font-size: .94rem;
}

/* Process */
.process-grid {
  position: relative;
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 31px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #bcdedc 10%, #bcdedc 90%, transparent);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-number {
  display: grid;
  width: 63px;
  height: 63px;
  margin: 0 auto 27px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #168da5);
  border: 8px solid #fff;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 850;
  box-shadow: 0 9px 22px rgba(10, 138, 126, .20);
}

.process-step p {
  max-width: 240px;
  margin: 0 auto;
  font-size: .93rem;
}

/* Area and pricing */
.area-card {
  display: grid;
  padding: 62px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .72fr);
  align-items: center;
  gap: 68px;
  background: #fff;
  border: 1px solid rgba(190, 221, 227, .82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.area-copy h2 {
  max-width: 700px;
}

.area-copy > p {
  max-width: 690px;
}

.service-pills {
  display: flex;
  margin: 29px 0 34px;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pills span {
  padding: 9px 14px;
  color: #245367;
  background: #ecf8fa;
  border: 1px solid #d1ebef;
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 700;
}

.quote-panel {
  position: relative;
  padding: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(114, 224, 209, .22), transparent 30%),
    linear-gradient(145deg, var(--deep), #0b4555);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 45px rgba(11, 33, 56, .22);
}

.quote-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 27px;
  place-items: center;
  color: var(--deep);
  background: #72e0d1;
  border-radius: 18px;
  font-size: 1.45rem;
  font-weight: 850;
}

.quote-panel h3 {
  color: #fff;
}

.quote-list {
  padding: 0;
  margin: 23px 0;
  list-style: none;
}

.quote-list li {
  position: relative;
  padding: 9px 0 9px 25px;
  color: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.quote-list li::before {
  position: absolute;
  left: 0;
  color: #72e0d1;
  content: "✓";
  font-weight: 900;
}

.quote-note {
  margin-bottom: 0;
  color: #72e0d1;
  font-size: .82rem;
  font-weight: 750;
}

/* Contact */
.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 15%, rgba(30, 195, 174, .20), transparent 28%),
    linear-gradient(135deg, #071c30 0%, #0a3548 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(480px, 1fr);
  align-items: start;
  gap: 75px;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding-top: 13px;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p {
  max-width: 550px;
  color: rgba(255, 255, 255, .70);
  font-size: 1.06rem;
}

.contact-details {
  display: grid;
  margin-top: 43px;
  gap: 13px;
}

.contact-detail {
  display: flex;
  padding: 18px 20px;
  align-items: center;
  gap: 15px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 15px;
  text-decoration: none;
}

.contact-detail > span:first-child {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  color: #72e0d1;
  background: rgba(114, 224, 209, .11);
  border-radius: 12px;
}

.contact-detail span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-detail small {
  color: rgba(255, 255, 255, .50);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-detail strong {
  overflow-wrap: anywhere;
  font-size: .92rem;
}

.form-card {
  padding: 38px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 70px rgba(0, 0, 0, .23);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #233c50;
  font-size: .82rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid #cedde3;
  border-radius: 11px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input,
select {
  height: 49px;
  padding: 0 14px;
}

textarea {
  min-height: 142px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10, 138, 126, .11);
}

textarea::placeholder {
  color: #8495a3;
}

.consent {
  display: flex;
  margin: 3px 0 20px;
  align-items: flex-start;
  gap: 10px;
  color: #526676;
  font-size: .78rem;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--teal);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-note,
.form-status {
  margin: 13px 0 0;
  color: #718391;
  font-size: .74rem;
  text-align: center;
}

.form-status {
  min-height: 1.2em;
  color: var(--teal-dark);
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 48px 0;
  color: #fff;
  background: #061827;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 1.4fr auto;
  align-items: center;
  gap: 25px;
}

.brand-footer {
  color: #fff;
}

.brand-footer .brand-copy span {
  color: rgba(255, 255, 255, .56);
}

.footer-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: .82rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 19px;
}

.footer-links a,
.footer-link {
  padding: 0;
  color: rgba(255, 255, 255, .70);
  background: transparent;
  border: 0;
  font-size: .82rem;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-link:hover {
  color: #72e0d1;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Privacy dialog */
.privacy-dialog {
  width: min(620px, calc(100% - 32px));
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .30);
}

.privacy-dialog::backdrop {
  background: rgba(3, 18, 30, .72);
  backdrop-filter: blur(4px);
}

.dialog-header {
  display: flex;
  padding: 25px 29px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.dialog-header h2 {
  margin: 0;
  font-size: 1.7rem;
}

.dialog-close {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--ink);
  background: #edf4f6;
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

.dialog-body {
  padding: 26px 29px 30px;
}

.dialog-body p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1060px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 30px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 17px 5px;
    font-size: 1.06rem;
    border-bottom: 1px solid #edf2f4;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-cta {
    margin-left: 0;
  }

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

  .hero-copy {
    max-width: 830px;
    padding-bottom: 15px;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

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

  .service-card {
    min-height: auto;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 50px;
  }

  .process-grid::before {
    display: none;
  }

  .area-card {
    grid-template-columns: 1fr;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .brand-mark svg {
    width: 24px;
    height: 24px;
  }

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

  .brand-copy span {
    font-size: .65rem;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 68px;
  }

  .hero-copy {
    padding: 15px 0;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-card {
    padding: 11px;
    border-radius: 24px;
    transform: none;
  }

  .visual-caption {
    padding: 14px 5px 5px;
  }

  .visual-caption span:not(.spark-badge) {
    font-size: .72rem;
  }

  .service-card {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 240px;
  }

  .area-card {
    padding: 32px 23px;
    gap: 44px;
    border-radius: 24px;
  }

  .quote-panel {
    padding: 29px 24px;
  }

  .form-card {
    padding: 26px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .trust-list {
    flex-direction: column;
    gap: 10px;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .visual-caption {
    align-items: flex-start;
  }

  .spark-badge {
    display: none;
  }
}

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

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