:root {
  --ink: #11191c;
  --ink-soft: #263539;
  --muted: #56666a;
  --paper: #f4f6f3;
  --panel: #ffffff;
  --line: #d7e1df;
  --dark: #060d0f;
  --dark-2: #0c171a;
  --deep: #102625;
  --teal: #12bdb4;
  --teal-strong: #056f69;
  --teal-soft: #7fe8df;
  --teal-ink: #073331;
  --amber: #d8a449;
  --coral: #d66d52;
  --shadow: 0 18px 50px rgba(12, 23, 26, .12);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, .28);
  --radius: 8px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

#services,
#projets,
#methode,
#faq,
#contact,
#brief {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 72% 0%, rgba(18, 189, 180, .12), transparent 32rem),
    radial-gradient(circle at 14% 16%, rgba(216, 164, 73, .08), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

.site-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .72;
}

.marketing-page > main,
.contact-page > main,
.local-page > main,
.site-footer,
.sticky-contact {
  position: relative;
  z-index: 1;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

svg {
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 10px clamp(16px, 4vw, 58px);
  border-bottom: 1px solid rgba(125, 243, 234, .16);
  background:
    linear-gradient(90deg, rgba(25, 200, 189, .08), transparent 40%),
    rgba(6, 13, 15, .96);
  backdrop-filter: blur(16px);
}

.brand-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo img {
  width: clamp(190px, 18vw, 286px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #dce9e7;
  font-size: .93rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, .09);
  color: #fff;
  outline: none;
}

.main-nav .nav-cta {
  gap: 8px;
  min-height: 42px;
  margin-left: 2px;
  padding-inline: 16px;
  border: 1px solid rgba(127, 232, 223, .34);
  border-radius: 999px;
  background: rgba(18, 189, 180, .16);
  color: #f3fffd;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 0 0 1px rgba(127, 232, 223, .04);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  border-color: rgba(127, 232, 223, .54);
  background: rgba(18, 189, 180, .26);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(125, 243, 234, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.main-nav svg,
.button svg,
.field-title svg,
.contact-points svg,
.contact-mini-proof svg,
.hero-proof-list svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: rgba(127, 232, 223, .42);
  background: #0fb3aa;
  color: #031817;
  box-shadow:
    0 14px 34px rgba(18, 189, 180, .20),
    inset 0 -1px 0 rgba(255, 255, 255, .18);
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: rgba(127, 232, 223, .56);
  background: #24c8bd;
  color: #031817;
  outline: none;
}

.button.secondary,
.button.ghost {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .045);
  color: #fff;
}

.button.secondary:hover,
.button.secondary:focus-visible,
.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(127, 232, 223, .38);
  background: rgba(255, 255, 255, .085);
  color: #fff;
  outline: none;
}

.button.light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.section {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0;
}

.section[id],
.projects-section[id],
.faq-section[id] {
  scroll-margin-top: 112px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.section-heading h2,
.contact-copy h2,
.brief-copy h2,
.local-content-panel h2,
.method-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 4.7vw, 4.7rem);
  line-height: 1;
}

.section-heading p,
.contact-copy p,
.brief-copy p,
.local-content-panel p,
.method-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal-strong);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero,
.contact-hero,
.local-hero {
  position: relative;
  overflow-x: clip;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 74% 30%, rgba(125, 243, 234, .13), transparent 30rem),
    linear-gradient(120deg, rgba(25, 200, 189, .10), transparent 42%),
    linear-gradient(135deg, rgba(6, 13, 15, .94) 0%, rgba(12, 23, 26, .90) 56%, rgba(16, 38, 37, .86) 100%);
}

.hero {
  padding: clamp(108px, 10vw, 148px) clamp(16px, 5vw, 70px) clamp(64px, 8vw, 104px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(460px, .82fr);
  gap: clamp(24px, 3.8vw, 52px);
  align-items: center;
  width: min(1340px, 100%);
  margin: 0 auto;
}

.hero-copy,
.hero-visual,
.contact-hero-copy {
  min-width: 0;
}

.hero .eyebrow,
.contact-hero .eyebrow,
.local-hero .eyebrow {
  color: var(--teal-soft);
}

.hero h1,
.contact-hero h1,
.local-hero h1 {
  max-width: 1040px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(3rem, 5.05vw, 5.15rem);
  line-height: .97;
}

.hero h1 {
  max-width: 1120px;
}

.hero-lead,
.contact-hero p,
.local-hero p {
  max-width: 760px;
  margin-bottom: 28px;
  color: #c6d7d4;
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-mini-proof,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-mini-proof span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #ecfffb;
  background: rgba(255, 255, 255, .06);
  font-weight: 850;
}

.contact-mini-proof svg,
.contact-points svg {
  color: var(--teal-soft);
}

.hero-proof-list {
  display: grid;
  gap: 9px;
  max-width: 820px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.hero-proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e7f5f2;
  font-size: 1.02rem;
  font-weight: 800;
}

.hero-proof-list svg {
  margin-top: 4px;
  color: var(--teal-soft);
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 42vw, 660px);
  isolation: isolate;
}

.brand-device {
  position: absolute;
  top: 20px;
  right: clamp(-150px, -8vw, -60px);
  overflow: hidden;
  width: min(118%, 720px);
  border: 1px solid rgba(125, 243, 234, .18);
  border-radius: var(--radius);
  background: #071012;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .38);
  z-index: 1;
}

.brand-device img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
  object-position: top center;
}

.secondary-device {
  top: auto;
  right: auto;
  bottom: 66px;
  left: clamp(-18px, 1vw, 22px);
  width: min(71%, 460px);
  z-index: 2;
}

.device-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  color: #cde2de;
  background: rgba(255, 255, 255, .055);
  font-size: .78rem;
  font-weight: 850;
}

.device-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.device-bar span:nth-child(2) {
  background: #fff;
}

.device-bar span:nth-child(3) {
  background: var(--amber);
}

.device-bar strong {
  margin-left: auto;
}

.hero-score {
  position: absolute;
  right: clamp(-118px, -6vw, -48px);
  bottom: 94px;
  max-width: min(100%, 650px);
  width: min(46%, 320px);
  padding: 18px;
  border: 1px solid rgba(125, 243, 234, .26);
  border-radius: var(--radius);
  color: #effffb;
  background: rgba(6, 13, 15, .92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
  z-index: 3;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .30);
}

.hero-score svg {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
  color: var(--teal);
}

.hero-score strong {
  display: block;
  margin-bottom: 5px;
}

.hero-score p {
  margin: 0;
  color: #bfd2ce;
}

.launch-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  width: min(1180px, calc(100% - 34px));
  margin: -34px auto 0;
  padding: 20px;
  border: 1px solid rgba(125, 243, 234, .24);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(25, 200, 189, .16), transparent 46%),
    #071012;
  box-shadow: var(--shadow-dark);
}

.launch-strip span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-soft);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.launch-strip strong {
  display: block;
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  line-height: 1.08;
}

.launch-strip p {
  margin: 0;
  color: #e6f7f4;
  font-weight: 900;
  white-space: nowrap;
}

.launch-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 15px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #061010;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 34px));
  margin: 34px auto 0;
}

.clarity-grid article,
.service-card,
.project-card,
.method-panel,
.faq-list details,
.contact-form,
.contact-side-card,
.local-content-panel,
.local-service-card,
.city-grid a,
.city-grid span,
.contact-direct,
.brief-helper-grid span,
.local-proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.clarity-grid article {
  padding: 22px;
}

.clarity-grid svg,
.service-card > svg,
.local-service-card > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--teal-strong);
}

.clarity-grid strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.08rem;
}

.clarity-grid p {
  margin: 0;
  color: var(--muted);
}

.services-section {
  padding-top: clamp(58px, 7vw, 98px);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .72fr) minmax(260px, .72fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
}

.service-main {
  grid-row: span 2;
  color: #fff;
  border-color: rgba(125, 243, 234, .18);
  background:
    linear-gradient(135deg, rgba(25, 200, 189, .18), transparent 48%),
    #071012;
  box-shadow: var(--shadow-dark);
}

.service-software {
  grid-column: span 2;
}

.service-wide {
  grid-column: 1 / -1;
  min-height: 220px;
}

.service-card span {
  margin-bottom: 12px;
  color: var(--teal-strong);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-main span,
.service-main > svg {
  color: var(--teal-soft);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.06;
}

.service-main h3 {
  color: #fff;
  font-size: clamp(2.3rem, 4.3vw, 3.75rem);
}

.service-card p {
  color: var(--muted);
}

.service-main p {
  color: #d1e3df;
  font-size: 1.06rem;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: #f4fffc;
  font-weight: 850;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.service-card a,
.project-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--teal-strong);
  font-weight: 950;
  text-decoration: none;
}

.service-main a,
.project-content a {
  color: var(--teal-soft);
}

.pricing-section {
  padding-top: clamp(58px, 7vw, 92px);
}

.pricing-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .52fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: end;
  margin-bottom: 22px;
}

.pricing-head h2 {
  margin-bottom: 0;
}

.pricing-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .78fr) minmax(260px, .78fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 14px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.pricing-featured {
  grid-row: span 2;
  color: #fff;
  border-color: rgba(125, 243, 234, .18);
  background:
    radial-gradient(circle at 88% 12%, rgba(25, 200, 189, .24), transparent 34%),
    linear-gradient(135deg, #071012 0%, #122827 100%);
  box-shadow: var(--shadow-dark);
}

.pricing-refonte {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(25, 200, 189, .09), transparent 46%),
    #fff;
}

.pricing-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card-head svg {
  width: 26px;
  height: 26px;
  color: var(--teal-strong);
}

.pricing-featured .pricing-card-head svg,
.pricing-featured .pricing-card-head span {
  color: var(--teal-soft);
}

.pricing-card-head span {
  color: var(--teal-strong);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-card > strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2.05rem, 3.4vw, 3rem);
  line-height: .95;
  letter-spacing: 0;
}

.pricing-featured > strong {
  color: #fff;
  font-size: clamp(2.55rem, 5vw, 4.6rem);
}

.pricing-card > p {
  margin: 0;
  color: var(--muted);
}

.pricing-featured > p {
  color: #d1e3df;
}

.pricing-yearly {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding: 15px;
  border: 1px solid rgba(25, 200, 189, .20);
  border-radius: 12px;
  background: #eef9f7;
}

.pricing-featured .pricing-yearly {
  border-color: rgba(125, 243, 234, .20);
  background: rgba(255, 255, 255, .08);
}

.pricing-yearly span {
  color: var(--teal-dark);
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-featured .pricing-yearly span {
  color: var(--teal-soft);
}

.pricing-yearly b {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.1;
}

.pricing-featured .pricing-yearly b {
  color: #fff;
}

.pricing-yearly small {
  color: var(--muted);
  line-height: 1.4;
}

.pricing-featured .pricing-yearly small {
  color: #c5d8d4;
}

.pricing-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: var(--teal-strong);
  font-weight: 950;
  text-decoration: none;
}

.pricing-featured a {
  color: var(--teal-soft);
}

.pricing-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(8, 40, 37, .10);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.pricing-note > svg {
  width: 28px;
  height: 28px;
  color: var(--teal-strong);
}

.pricing-note p {
  margin: 0;
  color: var(--muted);
}

.pricing-note .button {
  white-space: nowrap;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(280px, .46fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(125, 243, 234, .18);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(25, 200, 189, .20), transparent 32%),
    linear-gradient(135deg, #071012 0%, #0f2424 100%);
  box-shadow: var(--shadow-dark);
}

.pricing-intro {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: clamp(14px, 2vw, 22px);
}

.pricing-intro .section-label {
  color: var(--teal-soft);
}

.pricing-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: .98;
}

.pricing-intro p {
  margin: 0;
  color: #c7d9d5;
  font-size: 1.08rem;
}

.pricing-inclusions {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #eefaf7;
  font-weight: 850;
}

.pricing-inclusions svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--teal-soft);
}

.pricing-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, .32fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: clamp(16px, 2.2vw, 22px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
}

.pricing-row.is-primary {
  border-color: rgba(125, 243, 234, .30);
  background:
    linear-gradient(135deg, rgba(25, 200, 189, .14), rgba(255, 255, 255, .07));
}

.pricing-row-main {
  min-width: 0;
}

.pricing-row-main span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--teal-soft);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-row-main svg {
  width: 18px;
  height: 18px;
}

.pricing-row-main h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(1.18rem, 1.9vw, 1.58rem);
  line-height: 1.12;
}

.pricing-row-main p {
  margin: 0;
  color: #c5d8d4;
}

.pricing-row-price {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 0;
  text-align: right;
}

.pricing-row-price strong {
  color: #fff;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  line-height: .98;
}

.pricing-row-price small {
  max-width: 25ch;
  color: #aecac5;
  line-height: 1.38;
}

.pricing-section .pricing-note {
  border-color: rgba(8, 40, 37, .12);
}

.budget-shell {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.budget-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(8, 40, 37, .10);
  border-radius: 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 189, 179, .16), rgba(255, 255, 255, 0) 42%),
    #071012;
  box-shadow: var(--shadow-dark);
}

.budget-copy h2 {
  max-width: 9ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: .98;
}

.budget-copy p {
  max-width: 36ch;
  margin: 0;
  color: #c6dad6;
  font-size: 1.04rem;
}

.budget-points {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.budget-points span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #f4fffd;
  font-weight: 900;
}

.budget-points svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--teal-soft);
}

.budget-copy .button {
  width: fit-content;
  margin-top: 2px;
}

.budget-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.budget-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-width: 0;
  min-height: 290px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(8, 40, 37, .12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(25, 200, 189, .06), rgba(255, 255, 255, 0) 58%),
    #fff;
  box-shadow: var(--soft-shadow);
}

.budget-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 16px 0 0 16px;
  background: var(--teal);
}

.budget-card.is-main {
  background:
    linear-gradient(135deg, rgba(25, 200, 189, .18), rgba(255, 255, 255, 0) 44%),
    #effbf8;
}

.budget-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-strong);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.budget-card-head svg {
  width: 20px;
  height: 20px;
}

.budget-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.04;
}

.budget-card p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.budget-card-foot {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 10px;
  align-items: stretch;
  margin-top: auto;
}

.budget-amount,
.budget-yearly {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  min-height: 100px;
  padding: 14px;
  border-radius: 12px;
}

.budget-amount {
  color: #fff;
  background: #071012;
}

.budget-yearly {
  border: 1px solid rgba(25, 200, 189, .22);
  background: #eef9f7;
}

.budget-amount strong {
  color: #fff;
  font-size: clamp(1.52rem, 2.55vw, 2.25rem);
  line-height: 1;
}

.budget-amount span,
.budget-yearly span {
  color: #5d6d70;
  font-size: .82rem;
  line-height: 1.35;
}

.budget-amount span {
  color: #bed1cd;
}

.budget-yearly b {
  color: var(--teal-dark);
  font-size: 1.08rem;
  line-height: 1.08;
}

.pricing-section {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.pricing-section .pricing-intro {
  max-width: min(1080px, 100%);
  padding: 0;
}

.pricing-section .pricing-intro .section-label {
  color: var(--teal-strong);
}

.pricing-section .pricing-intro h2 {
  max-width: min(1040px, 100%);
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.45rem);
}

.pricing-section .pricing-intro p {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.pricing-section .budget-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-section .budget-card {
  min-height: 0;
  padding: clamp(20px, 2.4vw, 28px);
  border-color: rgba(8, 40, 37, .11);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(25, 200, 189, .045), rgba(255, 255, 255, 0) 54%),
    #fff;
}

.pricing-section .budget-card::before {
  inset: 0 0 auto;
  width: auto;
  height: 5px;
  border-radius: 14px 14px 0 0;
}

.pricing-section .budget-card h3 {
  max-width: 15ch;
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
  line-height: 1.03;
}

.pricing-section .budget-card p {
  font-size: .96rem;
}

.pricing-section .budget-card-foot {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 10px;
}

.pricing-section .budget-amount,
.pricing-section .budget-yearly {
  min-height: 82px;
  padding: 13px;
  border-radius: 10px;
}

.pricing-section .budget-amount strong {
  font-size: clamp(1.46rem, 2vw, 1.9rem);
}

.pricing-section .budget-yearly b {
  font-size: 1rem;
}

.pricing-section .pricing-note {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: 100%;
  margin-top: 0;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(25, 200, 189, .10), rgba(255, 255, 255, 0) 44%),
    #fff;
}

.pricing-section .pricing-note span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #344245;
  font-weight: 850;
}

.pricing-section .pricing-note svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--teal-strong);
}

.projects-section {
  color: #fff;
  background:
    linear-gradient(135deg, var(--dark) 0%, #0a181a 52%, var(--deep) 100%);
}

.light h2 {
  color: #fff;
}

.light p {
  color: #c4d5d1;
}

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

.project-card {
  overflow: hidden;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-dark);
}

.project-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #071012;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.project-content {
  padding: clamp(22px, 3vw, 30px);
}

.project-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--teal-soft);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-content h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.04;
}

.project-content p {
  color: #c4d5d1;
}

.testimonial-panel {
  display: grid;
  grid-template-columns: minmax(260px, .56fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 20px;
}

.testimonial-heading {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}

.testimonial-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.06;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, .075);
  box-shadow: var(--shadow-dark);
}

.reassurance-section .testimonial-card {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.testimonial-card > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  color: var(--teal-soft);
}

.reassurance-section .testimonial-card > svg {
  color: var(--teal-strong);
}

.testimonial-card blockquote {
  margin: 0 0 22px;
  color: #d9e9e6;
  font-size: 1.02rem;
}

.reassurance-section .testimonial-card blockquote {
  color: var(--ink-soft);
}

.testimonial-card footer {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.testimonial-card strong {
  color: inherit;
  font-size: 1.04rem;
}

.testimonial-card span {
  color: var(--teal-soft);
  font-weight: 900;
}

.reassurance-section .testimonial-card span {
  color: var(--teal-strong);
}

.method-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(25, 200, 189, .10), transparent 44%),
    #fff;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  min-height: 168px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfa;
}

.method-list span {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-weight: 950;
}

.method-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.method-list p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.zones-section {
  background:
    linear-gradient(180deg, #fff, rgba(255, 255, 255, 0)),
    var(--paper);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.zones-panel {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.zone-highlight,
.wide-zone-line {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.zone-highlight {
  padding: 22px;
}

.zone-highlight svg {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--teal-strong);
}

.zone-highlight strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.zone-highlight p {
  margin: 0;
  color: var(--muted);
}

.city-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wide-zone-line {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding: 14px;
}

.wide-zone-line span {
  color: var(--ink);
  font-weight: 950;
}

.wide-zone-line a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-strong);
  background: #f8fbfa;
  font-weight: 850;
  text-decoration: none;
}

.city-grid a,
.city-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 13px 14px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.city-grid svg {
  width: 18px;
  height: 18px;
  color: var(--teal-strong);
}

.city-grid a:hover,
.city-grid a:focus-visible {
  border-color: rgba(25, 200, 189, .45);
  outline: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 19px 58px 19px 22px;
  font-weight: 950;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #061010;
  background: var(--teal);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -4px 22px 22px;
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(440px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(66px, 8vw, 106px) clamp(16px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(135deg, var(--dark) 0%, #0b1b1d 100%);
}

.contact-copy,
.contact-form {
  width: min(100%, 620px);
}

.contact-copy {
  justify-self: end;
  position: sticky;
  top: 100px;
}

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

.contact-copy p {
  color: #c8dad7;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-dark);
}

.brief-form {
  width: min(100%, 760px);
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(8, 40, 37, .12);
  border-radius: 14px;
}

.form-intro-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(25, 199, 173, .28), transparent 34%),
    linear-gradient(135deg, #071012 0%, #122827 100%);
}

.form-intro-card > span,
.form-section-head > span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #061010;
  background: var(--teal);
  font-weight: 950;
}

.form-intro-card svg {
  width: 21px;
  height: 21px;
}

.form-intro-card strong,
.form-section-head strong,
.brief-writing-help strong {
  display: block;
  color: inherit;
  font-size: 1.08rem;
  line-height: 1.2;
}

.form-intro-card p,
.form-section-head p {
  margin: 5px 0 0;
  color: inherit;
  opacity: .78;
}

.form-section-card {
  display: grid;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbfa;
}

.form-section-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.form-section-head > span {
  background: #e2f6f1;
  color: var(--teal-dark);
}

.compact-form .form-alt-link {
  color: var(--teal-strong);
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(112px, 10vw, 152px) clamp(16px, 5vw, 70px) clamp(56px, 7vw, 88px);
}

.contact-hero-copy {
  width: min(860px, 100%);
}

.contact-side-card {
  padding: 24px;
  border-color: rgba(125, 243, 234, .20);
  color: #fff;
  background: rgba(255, 255, 255, .07);
  box-shadow: var(--shadow-dark);
}

.contact-side-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--teal-soft);
}

.contact-side-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.contact-side-card p {
  margin: 0;
  color: #c7dad6;
}

.contact-side-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-side-list li {
  position: relative;
  padding-left: 20px;
  color: #edf9f6;
  font-weight: 850;
}

.contact-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-soft);
}

.contact-side-action {
  margin-top: 18px;
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
}

.contact-side-action svg {
  width: 19px;
  height: 19px;
  margin: 0;
  color: currentColor;
}

.brief-section {
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, .82fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) 0;
}

.brief-copy {
  position: sticky;
  top: 100px;
}

.brief-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
}

.brief-helper-grid {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.brief-helper-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 13px;
  font-weight: 850;
}

.brief-helper-grid svg {
  width: 18px;
  height: 18px;
  color: var(--teal-strong);
}

.budget-reminder {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(8, 40, 37, .12);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.budget-reminder > strong {
  color: var(--ink);
  font-size: 1.06rem;
}

.budget-reminder div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 10px;
  align-items: baseline;
  min-width: 0;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.budget-reminder div:first-of-type {
  border-top: 0;
}

.budget-reminder span {
  min-width: 0;
  color: var(--muted);
  font-weight: 850;
}

.budget-reminder b {
  color: var(--ink);
  white-space: nowrap;
}

.budget-reminder small {
  grid-column: 1 / -1;
  color: var(--teal-dark);
  font-weight: 850;
}

.contact-direct {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 16px;
}

.contact-direct a {
  color: var(--teal-strong);
  font-weight: 950;
  text-decoration: none;
}

.brief-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.brief-options legend,
.form-step-title {
  grid-column: 1 / -1;
  margin: 4px 0 10px;
  color: var(--ink);
  font-weight: 950;
}

.project-picker {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.project-picker legend {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 4px;
}

.project-picker legend span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #061010;
  background: var(--teal);
  font-size: .82rem;
}

.brief-option {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 154px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.brief-option input {
  position: absolute;
  inset: 12px 12px auto auto;
  width: 16px;
  height: 16px;
  accent-color: var(--teal-strong);
}

.brief-option svg {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  color: var(--teal-strong);
}

.brief-option span {
  margin-bottom: 5px;
  padding-right: 22px;
  font-weight: 950;
  line-height: 1.2;
}

.brief-option small {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.42;
}

.brief-option:hover,
.brief-option:focus-within,
.brief-option.is-selected {
  border-color: rgba(25, 200, 189, .62);
  background: #eefbf9;
}

.brief-form .brief-option {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 6px 12px;
  align-content: center;
  min-height: 128px;
  padding: 16px 42px 16px 14px;
  border-radius: 12px;
}

.brief-form .brief-option svg {
  grid-row: 1 / 3;
  width: 26px;
  height: 26px;
  margin: 2px 0 0;
}

.brief-form .brief-option span,
.brief-form .brief-option small {
  grid-column: 2;
}

.brief-form .brief-option span {
  margin: 0;
  padding-right: 0;
  font-size: 1rem;
}

.brief-form .brief-option small {
  max-width: 28ch;
}

label {
  display: grid;
  gap: 7px;
  width: 100%;
  color: #233231;
  font-size: .93rem;
  font-weight: 850;
}

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

.field-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.field-title svg {
  color: var(--teal-strong);
}

input,
textarea {
  width: 100%;
  border: 1px solid #c9d6d3;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.message-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .42fr);
  gap: 12px;
  align-items: stretch;
}

.message-layout textarea {
  min-height: 230px;
}

.brief-writing-help {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(25, 200, 189, .28);
  border-radius: 12px;
  background: #effaf7;
}

.brief-writing-help strong {
  margin-bottom: 2px;
  color: var(--ink);
}

.brief-writing-help span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #40504d;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.35;
}

.brief-writing-help svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal-dark);
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(25, 200, 189, .16);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: 100%;
}

.form-submit-row {
  display: grid;
  gap: 11px;
  padding: 18px;
  border: 1px solid rgba(8, 40, 37, .12);
  border-radius: 12px;
  background: #fff;
}

.form-submit-row .button {
  min-height: 54px;
  border-radius: 10px;
}

.form-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.form-note svg {
  width: 17px;
  height: 17px;
  color: var(--teal-strong);
}

.notice {
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 850;
}

.notice.error {
  border: 1px solid #efbbbb;
  background: #fff1f1;
  color: #8d2424;
}

.local-hero {
  padding: clamp(112px, 10vw, 152px) clamp(16px, 5vw, 70px) clamp(56px, 7vw, 94px);
}

.local-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.local-hero-copy {
  width: min(880px, 100%);
}

.local-hero h1 {
  max-width: 980px;
  line-height: 1;
}

.local-proof-list {
  display: grid;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.local-proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e7f5f2;
  font-weight: 850;
}

.local-proof-list svg {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--teal-soft);
}

.local-hero-card {
  padding: 24px;
  border: 1px solid rgba(125, 243, 234, .20);
  border-color: rgba(125, 243, 234, .20);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, .07);
  box-shadow: var(--shadow-dark);
}

.local-hero-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--teal-soft);
}

.local-hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-soft);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.local-hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.local-hero-card p {
  margin: 0 0 18px;
  color: #c7dad6;
}

.local-hero-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-soft);
  font-weight: 950;
  text-decoration: none;
}

.local-hero-card a svg {
  width: 17px;
  height: 17px;
}

.local-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) 0;
}

.local-content-panel {
  padding: clamp(24px, 4vw, 42px);
}

.local-content-panel > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--teal-strong);
}

.local-content-panel.wide {
  grid-column: 1 / -1;
}

.local-content-panel.tinted {
  color: #fff;
  border-color: rgba(125, 243, 234, .18);
  background:
    linear-gradient(135deg, rgba(25, 200, 189, .16), transparent 45%),
    #071012;
}

.local-content-panel.tinted .section-label {
  color: var(--teal-soft);
}

.local-content-panel.tinted h2 {
  color: #fff;
}

.local-content-panel.tinted p {
  color: #c7dad6;
}

.local-content-panel.tinted > svg {
  color: var(--teal-soft);
}

.local-services {
  color: #fff;
  background:
    linear-gradient(135deg, var(--dark) 0%, #0a181a 55%, var(--deep) 100%);
}

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

.local-service-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 22px;
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-dark);
}

.local-service-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.34rem;
  line-height: 1.1;
}

.local-service-card p {
  margin: 0;
  color: #c4d5d1;
}

.local-zones {
  background:
    linear-gradient(180deg, #fff, rgba(255, 255, 255, 0)),
    var(--paper);
}

.local-zones .section {
  padding-block: clamp(44px, 6vw, 72px);
}

.local-zones .section-heading {
  max-width: 740px;
}

.local-zones .city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.local-zones .city-grid a,
.local-zones .city-grid span {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.local-zones .city-grid svg {
  width: 16px;
  height: 16px;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(62px, 8vw, 104px) clamp(16px, 5vw, 70px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(25, 200, 189, .16), transparent 42%),
    #071012;
}

.final-cta p {
  margin: 0;
  color: var(--teal-soft);
  font-weight: 950;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
}

.legal-page {
  padding: 120px clamp(16px, 5vw, 70px) 70px;
  background:
    radial-gradient(circle at 18% 10%, rgba(32, 190, 179, .16), transparent 34%),
    linear-gradient(180deg, #071315 0%, #f2f5f1 42%, #f2f5f1 100%);
}

.legal-hero {
  max-width: 860px;
  margin: 0 auto 34px;
  color: #fff;
}

.legal-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: .95;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: #c8dad6;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.legal-card {
  padding: clamp(22px, 3vw, 34px);
  color: #101719;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(7, 26, 28, .12);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(3, 18, 20, .08);
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.05;
}

.legal-card p {
  margin: 0 0 12px;
  color: #516166;
  line-height: 1.65;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: #007f77;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(150px, max-content));
  gap: 34px;
  align-items: start;
  padding: 38px clamp(16px, 5vw, 70px);
  color: #d8e8e5;
  background: #060d0f;
}

.footer-logo img {
  width: min(260px, 70vw);
  height: auto;
}

.site-footer p {
  max-width: 600px;
  margin: 10px 0 0;
  color: #9fb2ae;
}

.footer-copy,
.site-footer span {
  color: #8ea5a0;
  font-size: .9rem;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: #cce0dc;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(680px, calc(100vw - 36px));
  padding: 18px;
  color: #eafffb;
  background: rgba(6, 16, 18, .96);
  border: 1px solid rgba(127, 232, 223, .35);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: #b7cbc7;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.button.small {
  min-height: 42px;
  padding: 10px 16px;
}

.sticky-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 75;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 15px;
  border-radius: 999px;
  color: #061010;
  background: var(--teal);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(9, 20, 21, .28);
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes tt-rise {
    from {
      transform: translateY(14px);
    }
    to {
      transform: translateY(0);
    }
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-lead,
  .hero-result-pills,
  .hero-proof-list,
  .hero-actions,
  .brand-device,
  .secondary-device,
  .hero-score,
  .launch-strip,
  .clarity-grid article {
    animation: tt-rise .58s ease both;
  }

  .hero-copy h1 {
    animation-delay: .04s;
  }

  .hero-lead,
  .brand-device {
    animation-delay: .08s;
  }

  .hero-proof-list,
  .secondary-device {
    animation-delay: .12s;
  }

  .hero-actions,
  .hero-score {
    animation-delay: .16s;
  }

  .button,
  .main-nav a,
  .launch-strip a,
  .clarity-grid article,
  .service-card,
  .pricing-card,
  .pricing-row,
  .project-card,
  .city-grid a,
  .brief-option {
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  }

  .button:hover,
  .launch-strip a:hover,
  .clarity-grid article:hover,
  .service-card:hover,
  .pricing-card:hover,
  .pricing-row:hover,
  .project-card:hover,
  .city-grid a:hover {
    transform: translateY(-2px);
  }

  .project-image img,
  .brand-device img {
    transition: transform .35s ease;
  }

  .project-card:hover .project-image img,
  .brand-device:hover img {
    transform: scale(1.025);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .service-layout,
  .pricing-head,
  .budget-shell,
  .method-panel,
  .contact-band,
  .contact-hero,
  .brief-section,
  .local-hero-inner,
  .local-hero,
  .local-content-grid,
  .testimonial-panel {
    grid-template-columns: 1fr;
  }

  .service-main,
  .service-software,
  .service-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-copy,
  .brief-copy {
    position: static;
    justify-self: stretch;
  }

  .contact-copy,
  .contact-form {
    width: min(100%, 780px);
    margin-inline: auto;
  }

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

  .brand-device {
    right: -24px;
    width: min(100%, 720px);
  }

  .secondary-device {
    left: 0;
  }

  .hero-score {
    right: 0;
  }

  .local-service-grid,
  .city-grid,
  .city-grid.compact,
  .zones-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pricing-section .budget-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-featured,
  .pricing-refonte {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-note {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .pricing-section .pricing-note {
    grid-template-columns: 1fr;
  }

  .pricing-note .button {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .pricing-panel {
    grid-template-columns: 1fr;
  }

  .pricing-intro {
    padding-bottom: 4px;
  }

  .budget-copy h2,
  .budget-copy p {
    max-width: 760px;
  }

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

@media (max-width: 940px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand-logo img {
    width: min(222px, 58vw);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav a {
    justify-content: flex-start;
    color: #273235;
  }

  .main-nav .nav-cta {
    justify-content: center;
    border-color: rgba(5, 111, 105, .28);
    background: var(--teal);
    color: #031817;
    box-shadow: 0 10px 22px rgba(18, 189, 180, .16);
  }

  .main-nav .nav-cta:hover,
  .main-nav .nav-cta:focus-visible {
    border-color: rgba(5, 111, 105, .34);
    background: #24c8bd;
    color: #031817;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero,
  .contact-hero,
  .local-hero {
    padding-top: 96px;
  }

  .section[id],
  .projects-section[id],
  .faq-section[id] {
    scroll-margin-top: 168px;
  }

  .hero h1,
  .contact-hero h1,
  .local-hero h1 {
    font-size: clamp(2.35rem, 9vw, 4.4rem);
    line-height: 1;
  }

  .launch-strip,
  .clarity-grid,
  .project-grid,
  .testimonial-grid,
  .pricing-grid,
  .budget-cards,
  .pricing-note,
  .field-row,
  .message-layout,
  .method-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding-top: 100px;
  }

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

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1;
  }

  .pricing-section .budget-cards,
  .pricing-section .budget-card-foot {
    grid-template-columns: 1fr;
  }

  .launch-strip {
    margin-top: 18px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-row-price {
    justify-items: start;
    text-align: left;
  }

  .pricing-row-price small {
    max-width: 56ch;
  }

  .budget-card {
    min-height: 0;
  }

  .launch-strip p,
  .launch-strip a {
    width: 100%;
    white-space: normal;
  }

  .clarity-grid {
    margin-top: 18px;
  }
}

@media (max-width: 680px) {
  .hero,
  .contact-hero,
  .local-hero {
    padding-inline: 16px;
  }

  .hero h1,
  .contact-hero h1,
  .local-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.3rem);
  }

  .section-heading h2,
  .contact-copy h2,
  .brief-copy h2,
  .local-content-panel h2,
  .method-panel h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .hero-actions .button,
  .contact-band .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .brand-device,
  .secondary-device,
  .hero-score {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .secondary-device {
    order: 2;
  }

  .hero-score {
    order: 3;
    max-width: none;
  }

  .local-service-grid,
  .city-grid,
  .city-grid.compact,
  .zones-panel,
  .brief-options {
    grid-template-columns: 1fr;
  }

  .brief-section,
  .section,
  .launch-strip,
  .clarity-grid,
  .local-content-grid,
  .testimonial-panel {
    width: calc(100% - 32px);
  }

  .contact-band {
    padding-inline: 16px;
  }

  .contact-mini-proof span,
  .contact-points span {
    width: 100%;
  }

  .pricing-note .button {
    width: 100%;
  }

  .pricing-panel {
    padding: 15px;
    border-radius: 14px;
  }

  .pricing-intro {
    padding: 6px;
  }

  .pricing-intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .pricing-row {
    padding: 15px;
    border-radius: 12px;
  }

  .budget-copy,
  .budget-card {
    padding: 17px;
    border-radius: 14px;
  }

  .budget-copy .button,
  .budget-card-foot {
    width: 100%;
  }

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

  .budget-reminder div {
    grid-template-columns: 1fr;
  }

  .budget-reminder b {
    white-space: normal;
  }

  .brief-form {
    padding: 16px;
    border-radius: 12px;
  }

  .form-intro-card,
  .form-section-card,
  .form-submit-row {
    padding: 15px;
  }

  .brief-form .brief-option {
    min-height: 116px;
  }

  .sticky-contact {
    display: none;
  }
}

.hero-grid {
  grid-template-columns: minmax(520px, .92fr) minmax(480px, .86fr);
  width: min(1420px, 100%);
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3.35rem, 5.35vw, 6rem);
  line-height: .95;
}

.hero-lead {
  max-width: 700px;
}

.hero-result-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin: 0 0 26px;
}

.hero-result-pills span {
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(125, 243, 234, .18);
  border-radius: 14px;
  color: #cfe3df;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

.hero-result-pills strong {
  color: #fff;
  font-size: .95rem;
}

.hero-visual {
  min-height: clamp(560px, 44vw, 720px);
}

.brand-device {
  right: clamp(-120px, -5.5vw, -42px);
  width: min(122%, 780px);
}

.secondary-device {
  left: clamp(-72px, -2vw, 12px);
  bottom: 82px;
  width: min(73%, 500px);
}

.hero-score {
  right: clamp(-84px, -3vw, -18px);
  bottom: 102px;
  width: min(47%, 350px);
}

.clarity-grid {
  margin-top: -26px;
  position: relative;
  z-index: 5;
}

.clarity-grid article {
  min-height: 150px;
}

.service-choice-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) repeat(3, minmax(220px, .72fr));
  gap: 14px;
  align-items: stretch;
}

.service-choice-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 26px 80px rgba(6, 13, 15, .08);
}

.service-choice-card.is-featured {
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 28, 27, .98), rgba(11, 54, 50, .94));
  box-shadow: var(--shadow-dark);
}

.service-choice-card > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--teal-strong);
}

.service-choice-card.is-featured > svg {
  color: var(--teal-soft);
}

.service-choice-card span {
  margin-bottom: 12px;
  color: var(--teal-strong);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-choice-card.is-featured span {
  color: var(--teal-soft);
}

.service-choice-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.04;
}

.service-choice-card.is-featured h3 {
  color: #fff;
}

.service-choice-card p,
.service-choice-card li {
  color: #51615f;
}

.service-choice-card.is-featured p,
.service-choice-card.is-featured li {
  color: #d8ebe8;
}

.service-choice-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-choice-card li {
  position: relative;
  padding-left: 18px;
  font-weight: 850;
}

.service-choice-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.service-choice-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: var(--teal-strong);
  font-weight: 950;
  text-decoration: none;
}

.service-choice-card.is-featured a {
  color: var(--teal-soft);
}

.price-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-card-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(125, 243, 234, .24);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 92% 0%, rgba(125, 243, 234, .16), transparent 17rem),
    linear-gradient(135deg, rgba(7, 16, 18, .95) 0%, rgba(16, 37, 34, .9) 100%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  isolation: isolate;
}

.price-card-top {
  display: inline-flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 9px;
  color: var(--teal-soft);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card-top svg {
  width: 20px;
  height: 20px;
}

.price-card-v2 h3 {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(1.45rem, 2.15vw, 2rem);
  line-height: 1.06;
}

.price-card-v2 p {
  grid-column: auto;
  margin: 0;
  color: rgba(226, 244, 240, .92);
}

.price-main {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(125, 243, 234, .22);
  border-radius: 14px;
  background: rgba(125, 243, 234, .09);
  text-align: left;
}

.price-main strong {
  color: #fff;
  font-size: clamp(1.8rem, 2.55vw, 2.6rem);
  line-height: 1;
  white-space: nowrap;
}

.price-main span {
  color: var(--teal-soft);
  font-size: .86rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-yearly {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(125, 243, 234, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.price-yearly b {
  color: var(--teal-soft);
  white-space: nowrap;
}

.price-yearly span {
  color: rgba(226, 244, 240, .9);
  font-size: .95rem;
}

.project-showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-spotlight {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04)),
    #0b1919;
}

.project-spotlight .project-image {
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: #f5fbfa;
}

.project-spotlight .project-image img {
  object-fit: contain;
  object-position: top center;
}

.project-spotlight .project-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: clamp(24px, 3.2vw, 36px);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 22px;
}

.project-tags small {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(125, 243, 234, .18);
  border-radius: 999px;
  color: #dffaf6;
  background: rgba(125, 243, 234, .08);
  font-weight: 900;
}

.know-panel {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding: clamp(18px, 3vw, 34px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.know-copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
}

.know-copy p {
  color: var(--muted);
}

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

.know-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 22px 58px rgba(6, 13, 15, .055);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.know-grid article {
  min-height: 150px;
}

.know-grid svg {
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  color: var(--teal-strong);
}

.know-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.05rem;
}

.know-grid p {
  margin: 0;
  color: var(--muted);
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .price-card-v2 {
    background:
      radial-gradient(circle at 92% 0%, rgba(125, 243, 234, .14), transparent 17rem),
      linear-gradient(135deg, rgba(7, 16, 18, .98) 0%, rgba(16, 37, 34, .95) 100%);
  }
}

.contact-promise-card {
  background:
    radial-gradient(circle at 88% 0%, rgba(125, 243, 234, .17), transparent 14rem),
    rgba(255, 255, 255, .075);
}

.contact-side-action {
  justify-content: center;
  margin-top: 22px;
}

.brief-form .project-picker {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

.brief-form .brief-option {
  min-height: 112px;
}

.brief-writing-help {
  background: #f3faf8;
}

@media (max-width: 1180px) {
  .hero-grid,
  .service-choice-grid,
  .know-panel {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 980px;
  }

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

  .brand-device {
    right: -24px;
    width: min(100%, 720px);
  }

  .secondary-device {
    left: 0;
  }

  .hero-score {
    right: 0;
  }

  .hero-result-pills,
  .price-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-choice-card {
    min-height: 0;
}

}


@media (max-width: 940px) {
  .price-card-v2 {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-spotlight:nth-child(even) .project-image {
    order: 0;
  }

  .project-spotlight .project-image {
    min-height: 0;
  }

  .price-main {
    justify-items: start;
    text-align: left;
  }

  .price-card-v2 p {
    grid-column: auto;
  }

  .brief-form .project-picker {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    width: 100vw;
    max-width: 100vw;
  }

  .nav-toggle {
    position: fixed;
    top: 12px;
    right: auto;
    left: min(calc(100vw - 58px), 328px);
    z-index: 96;
    display: grid !important;
    place-content: center;
    background: rgba(18, 189, 180, .18);
    border-color: rgba(127, 232, 223, .45);
  }

  .hero-grid,
  .hero-copy,
  .contact-hero,
  .contact-hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero {
    overflow: hidden;
  }

  .hero-copy {
    max-width: calc(100vw - 32px);
  }

  .hero h1 {
    max-width: 11.6ch;
    font-size: clamp(2.05rem, 10vw, 2.75rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .contact-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 10vw, 2.75rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    max-width: 34ch;
    font-size: 1rem;
  }

  .contact-hero p {
    max-width: 34ch;
  }

  .hero-result-pills,
  .price-board,
  .know-grid,
  .price-yearly {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .brand-device,
  .secondary-device,
  .hero-score {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-result-pills span {
    min-height: 0;
  }

  .clarity-grid {
    margin-top: 16px;
  }

  .project-spotlight .project-image {
    min-height: 0;
  }

  .price-main {
    width: 100%;
    justify-content: space-between;
  }

  .price-main strong {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .price-yearly b {
    white-space: normal;
  }

}
