/* SEO Engineers Agency homepage — shared tokens, desktop layout, then responsive overrides. */
@font-face {
  font-family:"Plus Jakarta Sans";
  src:url("assets/plus-jakarta-sans.woff") format("woff");
  font-style:normal;
  font-weight:200 800;
  font-display:swap;
}

:root {
  --background:#f7f6f2;
  --ink:#050605;
  --muted:#535457;
  --lime:#c7ff31;
  --line:#c5c5c3;
  --font:"Plus Jakarta Sans",sans-serif;
  --container:1476px;
  --radius:32px;
  --shadow:0 26px 38px rgba(23,31,13,.13);
  --section-space:58px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  background:var(--background);
  color:var(--ink);
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
}

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

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

button,a {
  touch-action:manipulation;
}

button {
  cursor:pointer;
}

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

button {
  color:inherit;
}

svg {
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0;
}

button:focus-visible,a:focus-visible {
  outline:3px solid #588212;
  outline-offset:5px;
}

.skip-link {
  position:absolute;
  left:20px;
  top:-100px;
  z-index:20;
  padding:15px;
  background:var(--lime);
}

.skip-link:focus {
  top:15px;
}

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

.site-header {
  height:101px;
  background:linear-gradient(110deg,#060b06 20%,#080e09 67%,#263126);
  color:#f6f6f6;
}

.header-inner {
  max-width:1524px;
  height:100%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand {
  display:block;
  flex-shrink:0;
}

.brand img {
  width:250px;
  height:auto;
  display:block;
}

nav {
  display:flex;
  gap:39px;
  align-items:center;
  margin-left:30px;
}

nav a,nav button {
  position:relative;
  font-size:20px;
  white-space:nowrap;
  font-weight:500;
}

nav button {
  background:none;
  border:0;
  padding:10px 0;
  display:flex;
  align-items:center;
  gap:3px;
}

nav svg {
  width:12px;
  height:12px;
}

nav .active:after {
  content:"";
  width:8px;
  height:8px;
  position:absolute;
  background:var(--lime);
  border-radius:50%;
  bottom:-14px;
  left:50%;
  transform:translateX(-50%);
}

nav a:hover,nav button:hover {
  color:var(--lime);
}

.header-call {
  display:flex;
  align-items:center;
  gap:18px;
  font-size:20px;
  line-height:1.55;
}

.header-call strong {
  display:block;
  font-weight:500;
}

.phone-circle {
  background:#d3ffb4;
  width:59px;
  height:59px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#0b1709;
}

.phone-circle svg {
  width:30px;
  height:30px;
}

.menu-toggle {
  display:none;
}

.hero {
  max-width:var(--container);
  margin:auto;
  padding-top:var(--section-space);
  padding-bottom:48px;
}

.hero-grid {
  display:grid;
  grid-template-columns:650px 1fr;
  gap:34px;
}

.hero-copy {
  position:relative;
  z-index:2;
}

.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
  border-radius:30px;
  padding:12px 19px;
  font-size:15px;
  letter-spacing:1.3px;
  font-weight:700;
  text-transform:uppercase;
  margin:0 0 26px;
}

.eyebrow span {
  width:13px;
  height:13px;
  background:#d6fa85;
  border:1px solid #aeb5a0;
  border-radius:50%;
}

h1 {
  font-size:110px;
  line-height:.95;
  letter-spacing:-6.6px;
  font-weight:800;
  margin:0 0 23px;
}

.last-line {
  white-space:nowrap;
  display:inline-block;
  margin-top:9px;
}

mark {
  display:inline-block;
  position:relative;
  isolation:isolate;
  background:transparent;
  color:var(--ink);
  border-radius:0;
  padding:0 5px;
  margin-left:0;
  letter-spacing:inherit;
}
mark::before {
  content:"";
  position:absolute;
  z-index:-1;
  inset:39% -3px -4px;
  background:linear-gradient(100deg,#c3fa39,#d3ff75);
  border-radius:30px;
}

.intro {
  font-size:24px;
  line-height:1.5;
  color:var(--muted);
  margin:0;
  max-width:625px;
  letter-spacing:-.4px;
}

.hero-actions {
  display:flex;
  gap:16px;
  margin-top:34px;
}

.button {
  min-height:67px;
  padding:15px 28px;
  border-radius:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:18px;
  font-weight:600;
  white-space:nowrap;
  transition:transform .2s,box-shadow .2s,background .2s;
}

.button:hover {
  transform:translateY(-3px);
  box-shadow:0 9px 22px #18230d18;
}

.button-primary {
  background:var(--lime);
  border:1px solid var(--lime);
  gap:9px;
}

.button-primary>svg {
  width:29px;
  height:29px;
  margin-right:5px;
}

.button-secondary {
  background:transparent;
  border:1px solid #aaa;
  gap:17px;
}

.hero-visual {
  min-width:0;
}

.dashboard {
  position:relative;
  height:477px;
  margin-top:0;
  margin-right:-57px;
  margin-left:-10px;
}

.ring {
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.ring-left {
  width:350px;
  height:365px;
  left:-56px;
  top:28px;
  background:linear-gradient(130deg,#d9ffa5aa,transparent 68%);
  border:1px solid #e4f9cf66;
}

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

.ring-right {
  width:396px;
  height:417px;
  right:70px;
  top:-25px;
  background:linear-gradient(125deg,transparent,#d2ff98 95%);
}

.ring-right:after {
  content:"";
  position:absolute;
  inset:46px;
  border-radius:50%;
  background:#eef7df;
}

.dot-grid {
  position:absolute;
  right:0;
  top:-17px;
  width:145px;
  height:515px;
  background-image:radial-gradient(#b9c4b44d 3px,transparent 4px);
  background-size:25px 26px;
}

.revenue-card {
  position:absolute;
  z-index:1;
  top:26px;
  left:28%;
  width:55%;
  height:370px;
  background:linear-gradient(135deg,#fff,#fdfdfd);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:39px 42px 30px;
}

.revenue-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  font-size:21px;
  font-weight:500;
}

.growth {
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--lime);
  padding:11px 14px;
  border-radius:30px;
  font-size:16px;
  font-weight:700;
}

.growth svg {
  width:20px;
  height:20px;
}

.revenue-value {
  font-size:56px;
  font-weight:750;
  letter-spacing:-2px;
  margin:2px 0 -1px;
}

.chart {
  width:100%;
  height:157px;
  display:block;
  stroke:none;
}

.months {
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:#7d808a;
  margin-top:7px;
}

.service-card {
  z-index:2;
  position:absolute;
  width:204px;
  padding:18px 23px 20px;
  background:#fff;
  border:0;
  border-radius:29px;
  box-shadow:var(--shadow);
  text-align:left;
  transition:transform .2s;
}

.service-card:hover {
  transform:translateY(-5px);
}

.service-heading {
  display:flex;
  align-items:center;
  gap:11px;
  font-size:21px;
  white-space:nowrap;
}

.service-heading>svg {
  width:28px;
  height:28px;
  stroke-width:2.3;
}

.service-heading strong {
  font-weight:600;
}

.mini-arrow {
  display:grid;
  place-items:center;
  width:35px;
  height:35px;
  border-radius:50%;
  background:#e1fad3;
  margin-left:auto;
}

.mini-arrow svg {
  width:19px;
  height:19px;
  stroke-width:2;
}

.service-description {
  display:block;
  font-size:14px;
  line-height:1.6;
  color:#6c6f7b;
  margin-top:6px;
}

.seo {
  left:1.5%;
  top:103px;
}

.ppc {
  left:4.2%;
  top:277px;
}

.social {
  right:-6px;
  top:244px;
  width:185px;
  padding-left:21px;
  padding-right:15px;
}

.social .service-heading {
  gap:9px;
  font-size:19px;
}

.social .mini-arrow {
  width:34px;
  height:34px;
}

.floating-bars {
  position:absolute;
  z-index:2;
  top:18px;
  right:59px;
  width:74px;
  height:74px;
  border-radius:21px;
  background:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 10px 30px #33431108;
}

.floating-bars svg {
  width:43px;
  height:43px;
  color:#0d2608;
}

.roi-badge {
  position:absolute;
  z-index:3;
  right:142px;
  top:375px;
  display:flex;
  align-items:center;
  gap:12px;
  background:#0a0f10;
  color:white;
  border-radius:40px;
  padding:17px 25px;
  box-shadow:var(--shadow);
  font-size:16px;
}

.roi-badge svg {
  width:30px;
  height:30px;
  color:var(--lime);
}

.metrics {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin:36px -4px 0 13px;
}

.metrics>div {
  text-align:center;
  border-right:1px solid #d9d9d8;
}

.metrics>div:last-child {
  border:0;
}

.metrics dt {
  font-size:44px;
  line-height:1;
  font-weight:800;
  letter-spacing:-2px;
}

.metrics dd {
  font-size:16px;
  font-weight:500;
  margin:21px 0 0;
}

.trusted {
  display:flex;
  align-items:center;
  gap:65px;
  margin-top:78px;
}

.trusted p {
  font-size:12px;
  letter-spacing:1.25px;
  text-transform:uppercase;
  white-space:nowrap;
  color:#717583;
  font-weight:600;
}

.logos {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  flex:1;
}

.logos img {
  max-width:100%;
  object-fit:contain;
  filter:grayscale(1);
  opacity:.6;
}

.logos img:hover {
  opacity:1;
}

.logos .semrush-logo {
  width:180px;
}

dialog {
  max-width:480px;
  width:calc(100% - 36px);
  border:1px solid #e1e1dc;
  border-radius:25px;
  padding:40px;
  background:var(--background);
  box-shadow:var(--shadow);
}

dialog::backdrop {
  background:#07110799;
  backdrop-filter:blur(5px);
}

dialog h2 {
  font-size:28px;
  letter-spacing:-1px;
  margin:10px 0 18px;
}

dialog p {
  font-size:16px;
  line-height:1.7;
  color:var(--muted);
}

.dialog-close {
  position:absolute;
  right:14px;
  top:14px;
  border:0;
  background:#e8ecdf;
  border-radius:50%;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
}

#dialog-links {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

#dialog-links button {
  border:1px solid var(--line);
  border-radius:30px;
  background:#fff;
  padding:10px 17px;
}

@media(min-width:1700px) {
  .hero {
    padding-top:70px;
  }
  .trusted {
    margin-top:90px;
  }
}

@media(max-width:1599px) {
  .header-inner {
    margin:0 4.5%;
  }
  .hero {
    margin:0 5.9%;
  }
  .hero-grid {
    grid-template-columns:45% 1fr;
    gap:3%;
  }
  h1 {
    font-size:clamp(65px,6.58vw,110px);
    letter-spacing:-.06em;
  }
  mark {
    letter-spacing:inherit;
  }
  .intro {
    font-size:clamp(18px,1.44vw,24px);
  }
  nav {
    gap:25px;
    margin:0;
  }
  nav a,nav button,.header-call {
    font-size:17px;
  }
  .brand img {
    width:220px;
  }
  .button {
    font-size:15px;
    padding:15px 19px;
    gap:8px;
  }
  .hero-actions {
    gap:12px;
  }
  .dashboard {
    height:440px;
    margin-right:-35px;
  }
  .revenue-card {
    padding:32px 30px;
    height:345px;
  }
  .revenue-top {
    font-size:17px;
  }
  .growth {
    font-size:13px;
    padding:10px;
  }
  .service-card {
    width:180px;
    padding:16px 18px;
  }
  .service-heading {
    font-size:18px;
    gap:8px;
  }
  .social {
    width:166px;
    right:-5px;
  }
  .service-description {
    font-size:13px;
  }
  .ppc {
    top:264px;
  }
  .roi-badge {
    top:352px;
    right:110px;
  }
  .metrics {
    margin-top:30px;
  }
  .metrics dt {
    font-size:39px;
  }
  .trusted {
    gap:45px;
    margin-top:70px;
  }
  .logos {
    gap:35px;
  }
  .logos img {
    width:95px;
  }
  .logos img:nth-child(3) {
    width:118px;
  }
  .logos .semrush-logo {
    width:150px;
  }
}

@media(max-width:1199px) {
  .header-call>span:last-child {
    display:none;
  }
  .header-inner {
    gap:24px;
  }
  .hero-grid {
    grid-template-columns:46% 1fr;
    gap:2%;
  }
  .eyebrow {
    font-size:11px;
    padding:11px 13px;
    letter-spacing:1px;
  }
  .hero-actions {
    flex-wrap:wrap;
    margin-top:25px;
  }
  .button {
    min-height:54px;
  }
  .hero-visual {
    padding-top:10px;
  }
  .dashboard {
    height:380px;
    margin-left:-8px;
    margin-right:-20px;
  }
  .revenue-card {
    left:23%;
    width:68%;
    height:300px;
    padding:25px 23px;
  }
  .revenue-top {
    font-size:15px;
  }
  .growth {
    font-size:11px;
    padding:8px;
    gap:3px;
  }
  .growth svg {
    width:15px;
  }
  .revenue-value {
    font-size:45px;
    margin-top:9px;
  }
  .chart {
    height:140px;
  }
  .months {
    font-size:11px;
    margin-top:0;
  }
  .service-card {
    width:152px;
    border-radius:22px;
    padding:13px;
  }
  .service-heading {
    font-size:16px;
  }
  .service-heading>svg {
    width:23px;
  }
  .mini-arrow {
    width:27px;
    height:27px;
  }
  .service-description {
    font-size:11px;
  }
  .seo {
    left:-4%;
    top:101px;
  }
  .ppc {
    left:0;
    top:238px;
  }
  .social {
    top:208px;
    width:153px;
    right:-10px;
  }
  .social .service-heading {
    font-size:15px;
    gap:6px;
  }
  .floating-bars {
    right:5px;
    top:5px;
    width:57px;
    height:57px;
  }
  .roi-badge {
    top:318px;
    right:40px;
    font-size:13px;
    padding:12px 18px;
  }
  .ring-left {
    width:270px;
    height:290px;
    left:-30px;
  }
  .ring-right {
    width:300px;
    height:330px;
    right:0;
  }
  .dot-grid {
    height:385px;
  }
  .metrics {
    margin-top:17px;
    margin-left:0;
  }
  .metrics dt {
    font-size:32px;
  }
  .metrics dd {
    font-size:12px;
    margin-top:15px;
  }
  .trusted {
    flex-direction:column;
    gap:22px;
    margin-top:55px;
  }
  .logos {
    width:100%;
    gap:30px;
  }
  .trusted p {
    margin:0;
  }
}

@media(max-width:900px) {
  .site-header {
    height:85px;
  }
  .brand img {
    width:185px;
    height:auto;
  }
  nav {
    gap:19px;
  }
  nav a,nav button {
    font-size:14px;
  }
  .phone-circle {
    width:45px;
    height:45px;
  }
  .header-inner {
    gap:18px;
  }
  .hero {
    padding-top:40px;
  }
  .hero-grid {
    grid-template-columns:1fr;
    gap:35px;
  }
  .hero-copy {
    max-width:660px;
  }
  h1 {
    font-size:clamp(72px,11.8vw,103px);
  }
  .eyebrow {
    font-size:12px;
  }
  .intro {
    font-size:21px;
    max-width:610px;
  }
  .hero-actions {
    flex-wrap:nowrap;
  }
  .button {
    font-size:16px;
    padding:17px 24px;
  }
  .hero-visual {
    width:100%;
    max-width:700px;
    margin:0 auto;
    padding:0;
  }
  .dashboard {
    height:435px;
    margin:0;
  }
  .revenue-card {
    left:27%;
    width:57%;
    height:335px;
    padding:30px;
  }
  .revenue-top {
    font-size:18px;
  }
  .growth {
    font-size:13px;
    padding:9px;
  }
  .revenue-value {
    font-size:52px;
  }
  .chart {
    height:151px;
  }
  .service-card {
    width:180px;
    padding:18px;
  }
  .service-heading {
    font-size:19px;
  }
  .service-description {
    font-size:13px;
  }
  .seo {
    left:0;
    top:100px;
  }
  .ppc {
    left:3%;
    top:265px;
  }
  .social {
    right:-2%;
    top:236px;
    width:166px;
  }
  .social .service-heading {
    font-size:17px;
  }
  .roi-badge {
    top:350px;
    right:65px;
    font-size:15px;
  }
  .floating-bars {
    right:0;
  }
  .ring-right {
    right:12px;
    width:365px;
    height:380px;
  }
  .ring-left {
    left:-13px;
    width:330px;
    height:340px;
  }
  .metrics {
    margin-top:0;
  }
  .metrics dt {
    font-size:40px;
  }
  .metrics dd {
    font-size:14px;
  }
  .trusted {
    margin-top:55px;
  }
  .logos {
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
  }
  .logos img {
    width:100px;
  }
  .logos .semrush-logo {
    width:140px;
  }
}

@media(max-width:640px) {
  .site-header {
    height:78px;
  }
  .header-inner {
    margin:0 6%;
    gap:16px;
  }
  .brand img {
    width:160px;
    height:auto;
  }
  .header-call {
    margin-left:auto;
  }
  .phone-circle {
    width:41px;
    height:41px;
  }
  .phone-circle svg {
    width:23px;
  }
  .menu-toggle {
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    order:3;
    background:transparent;
    border:1px solid #66705f;
    border-radius:8px;
    width:42px;
    height:41px;
    padding:10px;
    color:white;
  }
  .menu-toggle span {
    height:2px;
    width:20px;
    background:currentColor;
  }
  .header-inner nav {
    display:none;
    position:absolute;
    z-index:10;
    top:78px;
    left:0;
    right:0;
    padding:20px 6% 26px;
    background:#0d160d;
    box-shadow:0 18px 30px #0003;
    align-items:stretch;
    gap:4px;
  }
  .header-inner nav.open {
    display:flex;
    flex-direction:column;
  }
  nav a,nav button {
    padding:12px 10px;
    font-size:17px;
    text-align:left;
    min-height:44px;
  }
  nav .active:after {
    bottom:20px;
    left:auto;
    right:10px;
  }
  nav svg {
    margin-left:auto;
  }
  .hero {
    margin:0 6%;
    padding-top:31px;
    padding-bottom:30px;
  }
  .eyebrow {
    font-size:10px;
    padding:10px 13px;
    letter-spacing:1.05px;
    margin-bottom:24px;
  }
  .eyebrow span {
    width:10px;
    height:10px;
  }
  h1 {
    font-size:clamp(51px,12.8vw,81px);
    letter-spacing:-.058em;
    line-height:.98;
    margin-bottom:24px;
  }
  mark {
    padding:0 5px;
    margin-left:0;
  }
  .last-line {
    margin-top:7px;
  }
  .intro {
    font-size:17px;
    line-height:1.6;
    letter-spacing:-.2px;
  }
  .hero-actions {
    margin-top:25px;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }
  .button {
    font-size:15px;
    min-height:56px;
    padding:13px 15px;
  }
  .button-primary>svg {
    width:25px;
    height:25px;
  }
  .hero-grid {
    gap:28px;
  }
  .dashboard {
    height:330px;
    margin:0 -4px;
  }
  .revenue-card {
    left:18%;
    width:76%;
    top:26px;
    height:235px;
    border-radius:23px;
    padding:20px;
  }
  .revenue-top {
    font-size:12px;
  }
  .growth {
    font-size:10px;
    padding:7px;
    gap:4px;
  }
  .growth svg {
    width:12px;
  }
  .revenue-value {
    font-size:37px;
    margin:9px 0 0;
    letter-spacing:-1.5px;
  }
  .chart {
    height:105px;
  }
  .months {
    font-size:10px;
  }
  .service-card {
    width:119px;
    border-radius:18px;
    padding:11px;
    box-shadow:0 15px 28px #17200e20;
  }
  .service-heading {
    font-size:13px;
    gap:6px;
  }
  .service-heading>svg {
    width:18px;
    height:18px;
  }
  .mini-arrow {
    width:23px;
    height:23px;
  }
  .mini-arrow svg {
    width:14px;
    height:14px;
  }
  .service-description {
    font-size:10px;
    line-height:1.55;
    margin-top:5px;
  }
  .seo {
    left:0;
    top:87px;
  }
  .ppc {
    left:2%;
    top:221px;
  }
  .social {
    top:196px;
    right:-1%;
    width:125px;
  }
  .social .service-heading {
    font-size:13px;
    gap:5px;
  }
  .social .mini-arrow {
    width:22px;
    height:22px;
  }
  .floating-bars {
    top:3px;
    right:0;
    width:45px;
    height:45px;
    border-radius:14px;
  }
  .floating-bars svg {
    width:28px;
    height:28px;
  }
  .roi-badge {
    top:276px;
    right:23px;
    padding:9px 14px;
    font-size:11px;
    gap:7px;
  }
  .roi-badge svg {
    width:23px;
    height:23px;
  }
  .ring-left {
    width:200px;
    height:230px;
    left:-5px;
    top:29px;
  }
  .ring-left:after {
    inset:29px;
  }
  .ring-right {
    width:250px;
    height:275px;
    right:-9px;
    top:4px;
  }
  .ring-right:after {
    inset:30px;
  }
  .dot-grid {
    width:90px;
    height:290px;
    background-size:19px 20px;
  }
  .metrics {
    margin:2px -5px 0;
    gap:0;
  }
  .metrics dt {
    font-size:30px;
    letter-spacing:-1.6px;
  }
  .metrics dd {
    font-size:11px;
    margin:11px 0 0;
    line-height:1.5;
  }
  .trusted {
    margin-top:41px;
    gap:25px;
  }
  .trusted p {
    font-size:10px;
  }
  .logos {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:25px 23px;
    justify-items:center;
  }
  .logos img,.logos img:nth-child(3) {
    width:100%;
    max-width:95px;
    height:31px;
  }
  .logos .semrush-logo {
    width:100%;
    max-width:116px;
  }
  dialog {
    padding:32px 25px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    transition:none!important;
    animation:none!important;
  }
}

@media(max-width:640px) {
  .dashboard {
    height:389px;
  }
  .revenue-card {
    left:0;
    width:100%;
    top:20px;
    height:240px;
    padding:22px 25px;
  }
  .revenue-top {
    font-size:14px;
  }
  .revenue-value {
    font-size:42px;
  }
  .chart {
    height:112px;
  }
  .months {
    font-size:11px;
  }
  .service-card,.social {
    top:290px;
    width:31.8%;
    padding:11px 8px;
    border-radius:16px;
  }
  .seo {
    left:0;
  }
  .ppc {
    left:34.1%;
  }
  .social {
    right:0;
  }
  .service-heading,.social .service-heading {
    font-size:12px;
    gap:4px;
  }
  .service-heading>svg {
    width:16px;
    height:16px;
  }
  .mini-arrow,.social .mini-arrow {
    width:19px;
    height:19px;
  }
  .service-description {
    font-size:10px;
  }
  .roi-badge {
    top:239px;
    right:15px;
  }
  .floating-bars {
    top:-4px;
    right:-3px;
    width:40px;
    height:40px;
  }
  .ring-right {
    right:0;
  }
  .metrics {
    margin-top:8px;
  }
}

@media(max-width:360px) {
  h1 {
    font-size:13.7vw;
  }
  .header-inner {
    gap:10px;
  }
  .brand img {
    width:143px;
  }
  .hero-actions .button {
    font-size:14px;
  }
  .service-heading>svg {
    display:none;
  }
  .service-description {
    font-size:9px;
  }
  .metrics dt {
    font-size:27px;
  }
  .metrics dd {
    font-size:10px;
  }
}

@media(max-width:640px) {
  .dashboard {
    height:405px;
  }
  .roi-badge {
    top:258px;
  }
  .service-card,.social {
    top:310px;
  }
}


@media (min-width: 1200px) and (max-width: 1599px) {
  .social {
    top: 219px;
  }
}

/* All current and future sections share the locally hosted Plus Jakarta Sans font. */
*, *::before, *::after {
  font-family: var(--font) !important;
}

/* Services: independent selectors preserve the approved hero styling. */
.services-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 68px 0 60px;
  scroll-margin-top: 24px;
}
.services-heading-row {
  display: grid;
  grid-template-columns: 1fr 426px;
  align-items: start;
  gap: 65px;
  margin-bottom: 38px;
}
.services-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 16px;
  margin-bottom: 24px;
}
.services-eyebrow span { width: 10px; height: 10px; }
.services-section h2 {
  font-size: clamp(38px, 3.85vw, 60px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 800;
  margin: 0;
}
.services-section h2 mark {
  margin:0;
}
.services-summary { padding-top: 32px; }
.services-summary p {
  color: #4d5060;
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 20px;
}
.services-summary a {
  display: inline-flex;
  gap: 17px;
  align-items: center;
  font-size: 17px;
  font-weight: 650;
}
.services-summary a svg { width: 21px; height: 21px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px 20px;
  scroll-margin-top: 25px;
}
.offering {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 353px;
  padding: 25px 26px 23px;
  border: 1px solid #e0e1e1;
  border-radius: 22px;
  background: #fff;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.offering:hover {
  transform: translateY(-4px);
  border-color: #cae59d;
  box-shadow: 0 16px 30px #1c2c0a0b;
}
.offering-top { display: flex; align-items: flex-start; justify-content: space-between; }
.offering-icon {
  width: 69px;
  height: 69px;
  border-radius: 19px;
  background: #f5f5f2;
  display: grid;
  place-items: center;
}
.offering-icon svg { width: 40px; height: 40px; stroke-width: 3.6; color: #05060c; }
.offering-number { font-size: 16px; color: #727580; padding-top: 7px; }
.offering h3 {
  font-size: clamp(21px, 1.72vw, 27px);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -.045em;
  margin: 19px 0 10px;
}
.offering > p {
  font-size: 17px;
  line-height: 1.6;
  color: #505362;
  margin: 0;
}
.offering-tags {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 21px 0 27px;
}
.offering-tags li {
  border: 1px solid #dedfe2;
  border-radius: 30px;
  padding: 9px 13px;
  color: #323646;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
}
.offering-link {
  width: 100%;
  margin-top: auto;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 650;
  text-align: left;
}
.offering-link > span:first-child { display: flex; gap: 17px; align-items: center; }
.offering-link svg { width: 20px; height: 20px; }
.offering-circle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e4ffb1;
  transition: background .2s;
}
.offering-link:hover .offering-circle { background: var(--lime); }

/* About / Why SEO Engineers Agency */
.about-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 94px);
  align-items: center;
}
.about-visual { position: relative; min-height: 620px; }
.about-photo { display:block; width:100%; height:100%; position:absolute; inset:0; object-fit:cover; object-position:48% center; border-radius:24px; }
.about-stat { position:absolute; z-index:4; left:30px; bottom:28px; padding:25px 28px; border-radius:22px; background:var(--lime); box-shadow:0 14px 30px #171b0c2b; }
.about-stat strong { display:block; font-size:44px; line-height:1; letter-spacing:-.06em; }
.about-stat span { display:block; margin-top:8px; font-size:15px; line-height:1.25; font-weight:700; }
.about-copy .eyebrow { margin-bottom:31px; }
.about-copy h2 { margin:0; font-size:clamp(42px,4.3vw,68px); line-height:1.04; letter-spacing:-.06em; font-weight:800; }
.about-copy h2 mark { white-space:nowrap; }
.about-intro { margin:29px 0 30px; font-size:19px; line-height:1.65; color:#444752; }
.about-points { display:grid; grid-template-columns:1fr 1fr; gap:15px 32px; list-style:none; padding:0 0 38px; margin:0; border-bottom:1px solid #d7d8d4; }
.about-points li { display:flex; align-items:center; gap:15px; font-size:16px; font-weight:700; }
.point-icon { flex:0 0 46px; width:46px; height:46px; display:grid; place-items:center; border-radius:50%; background:var(--lime); }
.point-icon svg { width:23px; height:23px; stroke-width:2; }
.about-actions { display:flex; flex-wrap:wrap; gap:18px; margin-top:39px; }
.about-actions .button { min-height:70px; }
.about-actions .button-primary { padding-inline:29px; }
.about-actions .button-secondary { padding-inline:30px; }
@media (max-width:1599px) { .about-section { margin-inline:3.8%; } }
@media (max-width:900px) { .about-section { margin-inline:5.9%; grid-template-columns:1fr; padding:65px 0 78px; gap:44px; } .about-visual { min-height:560px; max-width:650px; } .about-copy h2 { font-size:clamp(44px,7vw,62px); } }
@media (max-width:640px) { .about-section { margin-inline:6%; padding:52px 0 62px; gap:36px; } .about-visual { min-height:440px; } .about-scene { border-radius:20px; } .about-stat { left:16px; bottom:17px; padding:18px 20px; border-radius:17px; } .about-stat strong { font-size:34px; } .about-stat span { font-size:12px; } .about-copy .eyebrow { margin-bottom:22px; } .about-copy h2 { font-size:clamp(34px,10.4vw,48px); line-height:1.08; } .about-copy h2 mark { padding-inline:8px; } .about-intro { margin:22px 0 25px; font-size:16px; line-height:1.65; } .about-points { gap:12px 14px; padding-bottom:27px; } .about-points li { gap:9px; font-size:13px; line-height:1.2; } .point-icon { flex-basis:36px; width:36px; height:36px; } .point-icon svg { width:18px; height:18px; } .about-actions { margin-top:27px; gap:12px; } .about-actions .button { width:100%; min-height:58px; justify-content:center; padding-inline:16px; font-size:14px; } }
@media (max-width: 1599px) {
  .services-section { margin-inline: 3.8%; }
}
@media (max-width: 1199px) {
  .services-heading-row { grid-template-columns: 1.35fr 1fr; gap: 35px; }
  .services-summary { padding-top: 22px; }
  .offering { padding: 23px; }
  .offering > p { font-size: 16px; }
  .offering-tags { gap: 6px; }
  .offering-tags li { padding: 8px 10px; }
}
@media (max-width: 900px) {
  .services-section { margin-inline: 5.9%; padding-top: 50px; }
  .services-heading-row { grid-template-columns: 1fr; gap: 24px; }
  .services-summary { padding-top: 0; max-width: 590px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .services-section h2 { font-size: 44px; }
  .offering h3 { font-size: 23px; }
}
@media (max-width: 640px) {
  .services-section { margin-inline: 6%; padding: 40px 0 38px; }
  .services-eyebrow { margin-bottom: 22px; font-size: 11px; }
  .services-section h2 { font-size: clamp(31px, 8.4vw, 44px); line-height: 1.1; }
  .services-heading-row { gap: 23px; margin-bottom: 28px; }
  .services-summary p { font-size: 16px; line-height: 1.65; margin-bottom: 17px; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .offering { padding: 23px; min-height: 340px; border-radius: 21px; }
  .offering h3 { font-size: 23px; }
  .offering-tags li { font-size: 12px; padding: 8px 11px; }
  .offering-link { min-height: 44px; font-size: 16px; }
}

/* Mobile growth story: channel cards feed into the rising revenue chart. */
.service-impact,
.growth-links {
  display: none;
}

@media (max-width: 640px) {
  .dashboard {
    height: 455px;
    margin: 0 -2px;
  }

  .revenue-card {
    left: 9%;
    width: 82%;
    top: 65px;
    height: 315px;
    padding: 62px 25px 22px;
    border-radius: 28px;
  }

  .revenue-top {
    font-size: 15px;
  }

  .revenue-top .growth {
    display: none;
  }

  .revenue-value {
    margin-top: 8px;
    font-size: 50px;
  }

  .chart {
    height: 142px;
    margin-top: 7px;
  }

  .months {
    font-size: 10px;
  }

  .service-card,
  .social {
    z-index: 4;
    width: 32%;
    min-height: 92px;
    padding: 13px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 35px rgba(25,32,19,.16);
  }

  .seo {
    left: 0;
    top: 16px;
  }

  .ppc {
    left: 0;
    top: 337px;
  }

  .social {
    right: 0;
    top: 174px;
  }

  .service-heading,
  .social .service-heading {
    gap: 6px;
    font-size: 14px;
  }

  .service-heading > svg {
    display: block;
    width: 18px;
    height: 18px;
  }

  .mini-arrow,
  .social .mini-arrow,
  .service-description {
    display: none;
  }

  .service-impact {
    display: block;
    margin-top: 8px;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
  }

  .roi-badge {
    z-index: 5;
    top: 366px;
    right: 8%;
    padding: 11px 17px;
    font-size: 12px;
  }

  .floating-bars {
    z-index: 5;
    top: 45px;
    right: 2%;
    width: 40px;
    height: 40px;
  }

  .growth-links {
    display: block;
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
  }

  .growth-links path {
    fill: none;
    stroke: #b7ee42;
    stroke-width: 2;
    stroke-dasharray: 5 7;
    stroke-linecap: round;
    opacity: .72;
  }

  .metrics {
    margin-top: 10px;
  }
}

@media (max-width: 360px) {
  .service-card,
  .social {
    width: 34%;
    padding-inline: 9px;
  }

  .social {
    right: -1%;
  }

  .service-impact {
    font-size: 23px;
  }
}

/* Results bridges the About and upcoming How We Work backgrounds. */
:root { --impact-lime:#c5ff46; --impact-overlap:64px; }
.about-section:has(+ .impact-section) { padding-bottom:calc(110px + var(--impact-overlap)); }
.impact-section { position:relative; z-index:2; max-width:var(--container); margin:calc(-1 * var(--impact-overlap)) auto; padding:0; isolation:isolate; }
.impact-card { position:relative; overflow:hidden; display:grid; grid-template-columns:35% minmax(0,1fr); gap:4%; align-items:center; padding:46px 4.5% 52px; border-radius:28px; color:#f8faf8; background:radial-gradient(ellipse at 0 0,#345f45 0,transparent 29%),radial-gradient(ellipse at 105% -10%,#749c28 0,transparent 34%),radial-gradient(ellipse at 0 115%,#a6d728 0,transparent 24%),radial-gradient(ellipse at 100% 110%,#608326 0,transparent 25%),#080f12; box-shadow:0 22px 42px -24px #87b43b70; }
.impact-wave { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
.impact-copy,.impact-metrics { position:relative; z-index:1; min-width:0; }
.impact-eyebrow { display:inline-flex; align-items:center; gap:9px; margin:0 0 20px; padding:10px 13px; border:1px solid #ffffff50; border-radius:30px; font-size:clamp(10px,.85vw,14px); letter-spacing:.09em; text-transform:uppercase; font-weight:650; white-space:nowrap; }
.impact-eyebrow span { width:11px; height:11px; border-radius:50%; background:#b7f900; flex-shrink:0; }
.impact-copy h2 { font-size:clamp(38px,4.1vw,68px); line-height:1.02; letter-spacing:-.045em; margin:0; font-weight:800; }
.impact-copy h2 span { color:var(--impact-lime); }
.impact-copy > p:last-child { margin:23px 0 0; color:#bfc4cc; font-size:clamp(16px,1.2vw,21px); line-height:1.45; }
.impact-metrics { margin:0; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); align-items:start; }
.impact-metric { position:relative; text-align:center; min-width:0; padding:0 12px; }
.impact-metric + .impact-metric::before { content:""; position:absolute; left:0; top:18px; bottom:3px; width:1px; background:#c3cfcc90; }
.impact-icon { display:grid; place-items:center; width:clamp(65px,5.6vw,89px); height:clamp(65px,5.6vw,89px); margin:0 auto 23px; background:linear-gradient(150deg,#bddbb21c,#8dcc3717); border:1px solid #b9d5a740; border-radius:23px; box-shadow:inset 0 1px 0 #ffffff15; color:var(--impact-lime); }
.impact-icon svg { width:51%; height:51%; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.impact-metric dt { color:var(--impact-lime); font-size:clamp(31px,3.15vw,53px); font-weight:800; line-height:1.1; letter-spacing:-.045em; white-space:nowrap; font-variant-numeric:tabular-nums; }
.impact-metric dd { margin:14px 0 0; font-size:clamp(15px,1.25vw,21px); line-height:1.35; }
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip-path:inset(50%); white-space:nowrap; border:0; }
.impact-section + .how-we-work-section { position:relative; z-index:0; padding-top:calc(80px + var(--impact-overlap)); }
/* Reserve the lower background until the following section is supplied. */
main:has(> .impact-section:last-child) { padding-bottom:calc(90px + var(--impact-overlap)); }
@media(max-width:1599px) { .impact-section { margin-inline:3.8%; } }
@media(max-width:1050px) { .impact-card { grid-template-columns:1fr; gap:38px; padding:40px; } .impact-copy h2 { font-size:52px; } .impact-copy > p:last-child { max-width:580px; } .impact-eyebrow { font-size:12px; } .impact-metric dt { font-size:42px; } .impact-metric dd { font-size:17px; } }
@media(max-width:640px) { :root { --impact-overlap:40px; } .about-section:has(+ .impact-section) { padding-bottom:calc(62px + var(--impact-overlap)); } .impact-section { margin-inline:6%; } .impact-card { padding:29px 22px 31px; border-radius:23px; gap:30px; } .impact-eyebrow { font-size:9px; letter-spacing:.06em; padding:9px 10px; gap:7px; } .impact-copy h2 { font-size:clamp(34px,9vw,48px); } .impact-copy > p:last-child { font-size:16px; margin-top:18px; } .impact-metrics { grid-template-columns:repeat(2,minmax(0,1fr)); gap:27px 0; } .impact-metric { padding-inline:6px; } .impact-metric:nth-child(3)::before { display:none; } .impact-icon { width:62px; height:62px; border-radius:18px; margin-bottom:15px; } .impact-metric dt { font-size:34px; } .impact-metric dd { font-size:14px; margin-top:9px; } }

/* About redesign: all refinements are scoped to this section. */
.about-section { grid-template-columns:minmax(0, .98fr) minmax(0, 1fr); gap:5.3%; align-items:start; }
.about-visual { min-height:0; aspect-ratio:670 / 878; }
.about-copy { padding-top:4px; }
.about-copy h2 { font-size:clamp(38px,4.45vw,70px); letter-spacing:-.045em; line-height:1.1; }
.about-copy .eyebrow { margin-bottom:28px; }
.about-intro { font-size:clamp(18px,1.48vw,23px); line-height:1.6; margin:28px 0 32px; }
.about-points { gap:10px 20px; padding-bottom:35px; }
.about-points li { font-size:clamp(14px,1.15vw,18px); font-weight:650; gap:13px; }
.about-points .point-icon { background:linear-gradient(120deg,#c0fb28,#d8ff65); }
.about-points .point-icon svg { fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.about-actions { margin-top:clamp(40px,5.5vw,85px); gap:18px; }
.about-actions .button { font-size:clamp(14px,1.12vw,18px); min-height:70px; padding-inline:24px; }
.about-stat { bottom:4.4%; left:4.4%; padding:26px 28px; background:linear-gradient(115deg,#d2ff42,#bcf92f); box-shadow:none; }
.about-stat strong { font-size:46px; }
.about-stat span { font-size:16px; line-height:1.4; font-weight:650; }
@media(max-width:1100px) and (min-width:901px) { .about-points { grid-template-columns:1fr; } .about-actions { margin-top:30px; } .about-visual { height:100%; min-height:690px; } }
@media(max-width:900px) { .about-section { grid-template-columns:1fr; gap:36px; } .about-visual { width:100%; max-width:none; aspect-ratio:5 / 4; } .about-copy h2 { font-size:clamp(38px,6.5vw,58px); } .about-points li { font-size:16px; } .about-intro { font-size:18px; } .about-actions { margin-top:34px; } }
@media(max-width:640px) { .about-visual { aspect-ratio:4 / 5; } .about-photo { border-radius:21px; } .about-stat { padding:18px 20px; border-radius:18px; } .about-stat strong { font-size:37px; } .about-stat span { font-size:13px; } .about-copy h2 { font-size:clamp(32px,8.7vw,48px); } .about-intro { font-size:16px; margin:24px 0; } .about-points { grid-template-columns:1fr; gap:13px; padding-bottom:27px; } .about-points li { font-size:15px; gap:13px; } .about-points .point-icon { width:40px; height:40px; flex-basis:40px; } .about-points .point-icon svg { width:23px; height:23px; } .about-actions { margin-top:28px; } .about-actions .button { min-height:58px; font-size:14px; } }

/* How We Work: the Results card sits above this section's upper edge. */
.how-we-work-section {
  --process-lime: #c5ff36;
  --process-border: #2c2e32;
  margin: 0 16px 16px;
  padding: 64px 6% 56px;
  border-radius: 34px;
  background: #090b0e;
  color: #fafafa;
}
.process-inner { max-width: 1600px; margin-inline: auto; }
.process-heading-row { display: flex; justify-content: space-between; align-items: center; gap: 48px; margin-bottom: 52px; }
.process-eyebrow { border-color: var(--process-border); color: #fafafa; margin-bottom: 24px; }
.process-heading-row h2 { margin: 0; font-size: clamp(38px, 3.9vw, 68px); line-height: 1.1; letter-spacing: -.045em; font-weight: 800; }
/* A complete lime backing keeps the black lettering readable on the dark panel. */
.process-heading-row mark { white-space: nowrap; }
.process-heading-row mark::before { inset: 6% -3px -4px; border-radius: 18px; }
.process-summary { max-width: 420px; width: 30%; margin: 42px 0 0; font-size: clamp(16px, 1.14vw, 21px); line-height: 1.6; color: #e5e5e8; }
.process-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; list-style: none; padding: 0; margin: 0; }
.process-step { position: relative; min-width: 0; padding: 22px; display: flex; flex-direction: column; border: 1px solid var(--process-border); border-radius: 18px; background: #101216; transition: border-color .2s ease, box-shadow .2s ease; }
.process-step:hover { border-color: #667f38; box-shadow: 0 8px 30px #0003; }
.process-step:not(:last-child)::after { content: ''; position: absolute; height: 2px; width: 33px; background: var(--process-lime); top: 43%; left: 100%; }
.process-number { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid #484a4e; border-radius: 50%; color: var(--process-lime); font-size: 23px; font-weight: 800; }
.process-icon { display: grid; place-items: center; width: 65px; height: 65px; margin-top: 13px; border-radius: 14px; background: linear-gradient(135deg, #282a2c, #202226); }
.process-icon svg { width: 35px; height: 35px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-step h3 { margin: 14px 0 12px; font-size: clamp(20px, 1.5vw, 27px); letter-spacing: -.035em; line-height: 1.3; }
.process-step > p { margin: 0 0 24px; font-size: clamp(15px, 1.1vw, 19px); line-height: 1.6; color: #e2e3e6; }
.process-tags { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: auto 0 0; }
.process-tags li { border: 1px solid var(--process-border); border-radius: 25px; padding: 10px 14px; font-size: 12px; font-weight: 600; }
@media (max-width: 1150px) {
  .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step:nth-child(2)::after { display: none; }
  .process-summary { width: 38%; }
  .process-heading-row { gap: 28px; }
  .process-step h3 { font-size: 23px; }
  .process-step > p { font-size: 16px; }
}
@media (max-width: 640px) {
  .how-we-work-section { margin-inline: 10px; padding-inline: 20px; padding-bottom: 32px; border-radius: 25px; }
  .impact-section + .how-we-work-section { padding-top: calc(48px + var(--impact-overlap)); }
  .process-heading-row { display: block; margin-bottom: 30px; }
  .process-heading-row h2 { font-size: clamp(29px, 8vw, 44px); }
  .process-heading-row mark::before { border-radius: 12px; }
  .process-eyebrow { font-size: 11px; margin-bottom: 22px; }
  .process-summary { width: auto; margin-top: 24px; font-size: 15px; }
  .process-steps { grid-template-columns: 1fr; gap: 25px; }
  .process-step { padding: 22px; }
  .process-step:not(:last-child)::after { display: block; top: 100%; left: 47px; width: 2px; height: 26px; }
  .process-number { width: 48px; height: 48px; font-size: 21px; }
  .process-step h3 { font-size: 23px; }
}
@media (prefers-reduced-motion: reduce) { .process-step { transition: none; } }

/* Industries: image cards alongside a compact brand showcase. */
.industries-section { max-width: 1560px; margin: 0 auto; padding: 78px 24px 42px; }
.industries-layout { display: grid; grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr); gap: 24px; }
.industries-eyebrow { margin: 0 0 28px 16px; }
.industries-heading-row { display: grid; grid-template-columns: .95fr 1.1fr; align-items: center; gap: 32px; margin: 0 16px 46px; }
.industries-heading-row h2 { margin: 0; font-size: clamp(42px, 4.7vw, 76px); line-height: .98; letter-spacing: -.055em; font-weight: 800; }
.industries-heading-row > p { margin: 18px 0 0; padding-left: 32px; border-left: 1px solid #737478; font-size: clamp(16px, 1.22vw, 20px); line-height: 1.55; color: var(--muted); }
.industries-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 22px; }
.industry-card { overflow: hidden; border: 1px solid #e5e5e4; border-radius: 14px; background: #ffffff85; transition: box-shadow .2s ease, transform .2s ease; }
.industry-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px #1018200d; }
.industry-image { position: relative; aspect-ratio: 2.15; overflow: hidden; }
.industry-image > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.industry-icon { position: absolute; left: 16px; top: 15px; width: 54px; height: 54px; display: grid; place-items: center; background: var(--lime); border-radius: 22px; color: var(--ink); }
.industry-card:nth-child(even) .industry-icon { background: #0b1014; color: #fff; }
.industry-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.industry-copy { padding: 14px 16px 17px; }
.industry-copy h3 { margin: 0 0 7px; font-size: clamp(17px, 1.34vw, 22px); line-height: 1.25; letter-spacing: -.035em; }
.industry-copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.35; }
.industry-brands { align-self: end; padding: 32px 30px 60px; border: 1px solid #e5e5e4; border-radius: 22px; background: #ffffff60; }
.brands-eyebrow { margin: 0 0 12px; color: #717379; text-transform: uppercase; font-weight: 700; font-size: 14px; }
.industry-brands h3 { margin: 0 0 8px; font-size: clamp(27px, 2.4vw, 40px); line-height: 1.06; letter-spacing: -.045em; }
.brands-intro { margin: 0 0 24px; color: #686a71; font-size: 17px; line-height: 1.45; }
.industry-brand-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid #e9e9e8; border-radius: 14px; overflow: hidden; }
.industry-brand-grid li { min-width: 0; min-height: 90px; display: grid; place-items: center; padding: 15px 12px; border-right: 1px solid #efefed; border-bottom: 1px solid #efefed; }
.industry-brand-grid li:nth-child(3n) { border-right: 0; }
.industry-brand-grid li:nth-last-child(-n+3) { border-bottom: 0; }
.industry-brand-grid img { display: block; width: 100%; height: 54px; object-fit: contain; }
.industries-footer { display: flex; align-items: center; justify-content: center; gap: 30px; margin: 36px 0 0; text-align: center; color: #72757c; text-transform: uppercase; font-size: 14px; font-weight: 650; }
.industries-footer::before, .industries-footer::after { content: ''; width: 90px; height: 1px; background: #c8c9cc; }
@media (max-width: 1150px) {
 .industries-layout { grid-template-columns: 1fr; gap: 30px; }
 .industry-brands { display: grid; grid-template-columns: 1fr 1.6fr; gap: 0 30px; padding: 30px; }
 .industry-brand-grid { grid-column: 2; grid-row: 1 / 4; }
 .industry-brands h3 { font-size: 36px; }
 .industries-heading-row h2 { font-size: 60px; }
 .industries-heading-row > p { font-size: 18px; }
}
@media (max-width: 700px) {
 .industries-section { padding: 55px 22px 34px; }
 .industries-eyebrow { margin-left: 0; }
 .industries-heading-row { grid-template-columns: 1fr; gap: 24px; margin: 0 0 28px; }
 .industries-heading-row h2 { font-size: clamp(42px, 11vw, 62px); }
 .industries-heading-row > p { margin: 0; padding-left: 18px; font-size: 16px; }
 .industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
 .industry-copy { padding: 13px; }
 .industry-icon { width: 42px; height: 42px; border-radius: 16px; left: 12px; top: 12px; }
 .industry-icon svg { width: 25px; height: 25px; }
 .industry-brands { display: block; padding: 25px 20px; }
 .industry-brands h3 { font-size: 32px; }
 .industry-brand-grid li { min-height: 80px; padding: 12px 8px; }
 .brands-intro { font-size: 16px; }
 .industries-footer { font-size: 12px; line-height: 1.6; gap: 12px; }
 .industries-footer::before, .industries-footer::after { width: 24px; flex-shrink: 0; }
}
@media (max-width: 480px) { .industries-grid { grid-template-columns: 1fr; } .industry-copy { padding: 16px; } .industry-copy h3 { font-size: 21px; } .industry-image { aspect-ratio: 2.1; } }
@media (prefers-reduced-motion: reduce) { .industry-card { transition: none; } .industry-card:hover { transform: none; } }

/* Testimonials: reference cards with an accessible, manually controlled carousel. */
.testimonials-section { max-width: 1536px; margin: 0 auto; padding: 64px 4.2% 45px; }
.testimonials-header { display: grid; grid-template-columns: 1.12fr 1fr; gap: 6%; align-items: end; margin-bottom: 15px; }
.testimonials-intro .eyebrow { margin: 0 0 17px; }
.testimonials-intro h2 { margin: 0; font-size: clamp(36px, 3.8vw, 60px); line-height: 1.05; letter-spacing: -.045em; font-weight: 800; }
.testimonials-intro mark { white-space: nowrap; }
.testimonials-intro > p:last-child { margin: 24px 0 18px; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.45; color: #47536a; }
.client-summary { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; padding: 32px 25px; border: 1px solid #e5e5e3; border-radius: 20px; background: #ffffff70; }
.client-count { display: flex; align-items: center; gap: 18px; }
.client-count strong { display: block; font-size: clamp(32px, 2.8vw, 45px); letter-spacing: -.05em; line-height: 1.1; }
.client-count div > span { display: block; font-size: 17px; color: #47536a; margin-top: 5px; }
.client-count-icon { display: grid; place-items: center; width: 62px; height: 62px; flex-shrink: 0; border-radius: 50%; background: radial-gradient(#c6fa3c, #f0fad4 72%); }
.client-count-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.client-summary > p { margin: 0; padding-left: 28px; border-left: 1px solid #d5d8dd; font-size: 17px; line-height: 1.4; color: #141d31; }
.testimonial-controls { display: flex; justify-content: flex-end; gap: 12px; margin-top: 6px; }
.testimonial-controls button { width: 50px; height: 50px; border-radius: 50%; border: 1px solid #d8d9d9; display: grid; place-items: center; background: transparent; color: #101621; transition: background .2s, transform .2s; }
.testimonial-controls .review-next { background: #070d17; color: white; border-color: #070d17; }
.testimonial-controls button:hover { background: var(--lime); color: var(--ink); transform: translateY(-2px); }
.testimonial-controls svg { width: 22px; height: 22px; }
.review-prev svg { transform: rotate(180deg); }
.review-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 44px) / 3); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.review-track::-webkit-scrollbar { display: none; }
.review-card { --review-accent: #c0fb36; min-width: 0; padding: 28px 32px 24px; border: 1px solid #dedfdf; border-bottom: 7px solid var(--review-accent); border-radius: 17px; background: #ffffff70; scroll-snap-align: start; display: flex; flex-direction: column; }
.review-card-2 { --review-accent: #70d4c9; }
.review-card-3 { --review-accent: #a778d7; }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.review-stars { display: flex; gap: 3px; color: #ffb000; }
.review-stars svg { width: 21px; height: 21px; fill: currentColor; }
.review-quote { width: 36px; height: 29px; fill: #d9d9d6; transform: rotate(180deg); }
.review-card blockquote { margin: 0 0 22px; flex: 1; }
.review-card blockquote p { margin: 0; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.42; color: #10182a; letter-spacing: -.015em; }
.review-person { display: flex; align-items: center; gap: 16px; border-top: 1px solid #d5d8dc; padding-top: 13px; }
.review-person img { width: 72px; height: 72px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.review-person h3 { font-size: 18px; line-height: 1.35; margin: 0 0 3px; letter-spacing: -.025em; }
.review-person p, .review-sector { color: #47536a; font-size: 15px; line-height: 1.4; margin: 0; }
.review-sector { display: flex; gap: 17px; margin-top: 13px; }
.review-sector span + span { border-left: 1px solid #d5d8dc; padding-left: 17px; }
.testimonials-note { margin: 15px 0 0; color: #73757b; font-size: 12px; line-height: 1.5; }
@media (max-width: 1150px) {
 .testimonials-header { grid-template-columns: 1fr; gap: 20px; }
 .testimonials-intro { max-width: 760px; }
 .testimonials-intro h2 { font-size: 48px; }
 .testimonials-side { display: flex; align-items: end; gap: 24px; }
 .client-summary { flex: 1; }
 .testimonial-controls { padding-bottom: 4px; }
 .review-track { grid-auto-columns: calc((100% - 22px) / 2); }
 .review-card { padding: 25px; }
}
@media (max-width: 640px) {
 .testimonials-section { padding: 48px 22px 36px; }
 .testimonials-intro h2 { font-size: clamp(30px, 8.1vw, 44px); }
 .testimonials-intro > p:last-child { font-size: 16px; margin: 20px 0 0; }
 .testimonials-side { display: block; }
 .client-summary { padding: 22px 18px; gap: 16px; }
 .client-count { gap: 10px; }
 .client-count-icon { width: 43px; height: 43px; }
 .client-count-icon svg { width: 27px; height: 27px; }
 .client-count strong { font-size: 30px; }
 .client-count div > span { font-size: 13px; }
 .client-summary > p { padding-left: 16px; font-size: 14px; }
 .testimonial-controls { margin-top: 15px; padding: 0; }
 .testimonial-controls button { width: 45px; height: 45px; }
 .review-track { grid-auto-columns: 100%; gap: 16px; }
 .review-card { padding: 24px; }
 .review-card blockquote p { font-size: 18px; }
 .review-person img { width: 60px; height: 60px; }
 .review-person h3 { font-size: 17px; }
 .review-person p { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) { .testimonial-controls button { transition: none; } }
.review-stars svg, .review-quote { stroke: none; }

/* FAQs: native disclosure controls stay usable without JavaScript. */
.faq-section { max-width: 1770px; margin: 0 auto; padding: 72px 6.4% 68px; display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 7.5%; align-items: start; }
.faq-intro .eyebrow { margin: 7px 0 26px; }
.faq-intro h2 { margin: 0; font-size: clamp(36px, 4.1vw, 70px); font-weight: 800; letter-spacing: -.045em; line-height: 1.1; }
.faq-intro mark { white-space: nowrap; }
.faq-description { margin: 25px 0 44px; color: #5a5d68; font-size: clamp(18px, 1.55vw, 26px); line-height: 1.5; }
.faq-description strong { color: var(--ink); font-weight: 650; }
.faq-contact { display: flex; gap: 23px; align-items: center; padding: 24px; border: 1px solid #dfdfe1; border-radius: 19px; background: #ffffff80; transition: border-color .2s, box-shadow .2s; }
.faq-contact:hover { border-color: #96bf28; box-shadow: 0 7px 24px #1c290c0b; }
.faq-contact > span:last-child { min-width: 0; }
.faq-mail-icon { display: grid; place-items: center; width: 72px; height: 72px; flex-shrink: 0; border-radius: 50%; background: var(--lime); }
.faq-mail-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.faq-contact-prompt { display: block; color: #5a5d68; font-size: clamp(15px, 1.12vw, 19px); margin-bottom: 5px; }
.faq-contact strong { display: block; font-size: clamp(15px, 1.3vw, 22px); letter-spacing: -.025em; overflow-wrap: anywhere; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid #dcdde0; border-radius: 15px; background: #ffffff85; overflow: hidden; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 25px; cursor: pointer; list-style: none; font-size: clamp(16px, 1.28vw, 22px); font-weight: 750; line-height: 1.4; letter-spacing: -.025em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #4c6220; }
.faq-item summary:focus-visible { outline: 2px solid #536f16; outline-offset: -5px; border-radius: 13px; }
.faq-toggle { position: relative; width: 20px; height: 20px; flex: 0 0 20px; }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: currentColor; border-radius: 1px; }
.faq-toggle::before { width: 16px; height: 2px; top: 9px; left: 2px; }
.faq-toggle::after { height: 16px; width: 2px; left: 9px; top: 2px; }
.faq-item[open] .faq-toggle::after { display: none; }
.faq-answer { padding: 4px 25px 27px; }
.faq-answer p { margin: 0; font-size: clamp(16px, 1.23vw, 21px); line-height: 1.55; color: #202638; }
@media (max-width: 1000px) {
 .faq-section { grid-template-columns: 1fr; gap: 32px; padding: 58px 6%; }
 .faq-intro h2 { font-size: clamp(36px, 6vw, 56px); }
 .faq-description { max-width: 660px; margin-bottom: 26px; font-size: 20px; }
 .faq-contact { max-width: 620px; }
 .faq-contact strong { font-size: 20px; }
 .faq-item summary { font-size: 18px; }
 .faq-answer p { font-size: 17px; }
}
@media (max-width: 640px) {
 .faq-section { padding: 44px 22px 48px; gap: 28px; }
 .faq-intro h2 { font-size: clamp(29px, 8vw, 43px); }
 .faq-intro .eyebrow { margin-bottom: 22px; }
 .faq-description { font-size: 17px; margin-top: 22px; }
 .faq-contact { padding: 18px 15px; gap: 13px; border-radius: 16px; }
 .faq-mail-icon { width: 48px; height: 48px; }
 .faq-mail-icon svg { width: 26px; height: 26px; }
 .faq-contact-prompt { font-size: 14px; }
 .faq-contact strong { font-size: 15px; }
 .faq-list { gap: 12px; }
 .faq-item summary { padding: 19px 17px; gap: 14px; font-size: 16px; }
 .faq-answer { padding: 0 17px 21px; }
 .faq-answer p { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) { .faq-contact { transition: none; } }

/* Reference CTA: dark conversion panel followed by a centered invitation. */
.growth-cta-section {
  position: relative;
  max-width: 1760px;
  margin: 0 auto;
  padding: 34px 5.1% 54px;
  overflow: hidden;
}
.growth-cta-section::before,
.growth-cta-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 220px;
  height: 220px;
  border-radius: 48% 52% 46% 54%;
  background: #dfff86;
  filter: blur(2px);
  opacity: .52;
}
.growth-cta-section::before { left: -142px; top: 7px; transform: rotate(23deg); }
.growth-cta-section::after { right: -150px; top: 4px; transform: rotate(-20deg); }
.growth-cta-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: 5%;
  align-items: center;
  min-height: 390px;
  padding: 42px 5.8%;
  border-radius: 44px;
  color: #f7f8f8;
  background: radial-gradient(ellipse at 100% 0%, #1b2921 0, transparent 33%), radial-gradient(ellipse at 0 100%, #19251d 0, transparent 28%), #080f12;
  box-shadow: 0 28px 48px -33px #182211, inset 0 -2px 0 #b8f136;
}
.growth-cta-copy { padding-right: 4%; }
.growth-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 10px 16px;
  border: 1px solid #ffffff42;
  border-radius: 30px;
  color: #f5f7f5;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.growth-cta-eyebrow span { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); }
.growth-cta-copy h2 {
  margin: 0;
  font-size: clamp(43px, 4.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 800;
}
.growth-cta-copy h2 span { color: #95ec55; }
.growth-cta-description {
  max-width: 620px;
  margin: 20px 0 0;
  color: #bfc6c5;
  font-size: clamp(16px, 1.34vw, 21px);
  line-height: 1.55;
}
.growth-cta-actions {
  padding-left: 7%;
  border-left: 1px solid #b8c2bf;
}
.growth-cta-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.growth-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 66px;
  padding: 16px 24px;
  border-radius: 25px;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.growth-cta-button:hover { transform: translateY(-3px); }
.growth-cta-button svg { width: 28px; height: 28px; flex-shrink: 0; }
.growth-cta-call { color: #071006; background: linear-gradient(105deg, #dcff53, #bdff21); }
.growth-cta-email-button { border: 1px solid #eef2f0; color: #f7f8f8; background: transparent; }
.growth-cta-email-button:hover { color: #071006; background: #f7f8f8; }
.growth-cta-email-button svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.growth-cta-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 55px 0 0;
}
.growth-cta-benefits li { min-width: 0; padding: 0 24px; }
.growth-cta-benefits li:first-child { padding-left: 0; }
.growth-cta-benefits li + li { border-left: 1px solid #b8c2bf; }
.growth-cta-benefits .growth-cta-dotted { display: grid; grid-template-columns: repeat(6, 5px); grid-auto-rows: 5px; align-content: center; justify-content: center; gap: 8px; min-height: 53px; border-left: 0; opacity: .9; }
.growth-cta-dotted span { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px rgba(199,255,49,.48); }
.growth-cta-benefits strong,
.growth-cta-benefits span { display: block; }
.growth-cta-benefits strong { font-size: clamp(14px, 1.08vw, 18px); line-height: 1.4; }
.growth-cta-benefits span { margin-top: 4px; color: #b7bdbe; font-size: clamp(13px, 1vw, 17px); line-height: 1.4; }
@media (max-width: 1050px) {
  .growth-cta-panel { gap: 4%; padding-inline: 4.5%; border-radius: 34px; }
  .growth-cta-actions { padding-left: 5%; }
  .growth-cta-buttons { grid-template-columns: 1fr; gap: 13px; }
  .growth-cta-benefits { margin-top: 30px; }
  .growth-cta-benefits li { padding-inline: 14px; }
}
@media (max-width: 720px) {
  .growth-cta-section { padding: 28px 18px 43px; }
  .growth-cta-section::before, .growth-cta-section::after { width: 130px; height: 130px; }
  .growth-cta-panel { grid-template-columns: 1fr; gap: 31px; min-height: 0; padding: 32px 23px; border-radius: 27px; }
  .growth-cta-copy { padding: 0; }
  .growth-cta-eyebrow { margin-bottom: 20px; font-size: 10px; }
  .growth-cta-copy h2 { font-size: clamp(38px, 11vw, 54px); }
  .growth-cta-description { font-size: 16px; }
  .growth-cta-actions { padding: 29px 0 0; border-left: 0; border-top: 1px solid #aab3b1; }
  .growth-cta-buttons { grid-template-columns: 1fr; }
  .growth-cta-button { min-height: 58px; border-radius: 22px; font-size: 17px; }
  .growth-cta-benefits { grid-template-columns: 1fr; gap: 0; margin-top: 27px; }
  .growth-cta-benefits li, .growth-cta-benefits li:first-child { padding: 13px 0; }
  .growth-cta-benefits li + li { border-left: 0; border-top: 1px solid #56605d; }
  .growth-cta-benefits .growth-cta-dotted { display: none; }
  .growth-cta-benefits strong { font-size: 15px; }
  .growth-cta-benefits span { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) { .growth-cta-button { transition: none; } }

/* Hero proposal form */
#proposal-form { scroll-margin-top: 112px; }
.hero-enquiry-form {
  width: min(100%, 625px);
  margin-top: 28px;
  padding: 18px;
  border: 1px solid #d9ddd4;
  border-radius: 25px;
  background: rgba(255,255,255,.91);
  box-shadow: 0 24px 55px rgba(18,27,10,.1);
  backdrop-filter: blur(10px);
}
.hero-form-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hero-form-heading strong {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -.02em;
}
.hero-form-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #172008;
  background: #e5ff9b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}
.hero-form-field-wide,
.hero-form-submit { grid-column: 1 / -1; }
.hero-form-field label {
  display: block;
  margin: 0 0 6px 3px;
  color: #343a31;
  font-size: 11px;
  font-weight: 700;
}
.hero-form-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8ddd3;
  border-radius: 13px;
  padding: 11px 14px;
  color: var(--ink);
  background: #f8f9f5;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.hero-form-field input::placeholder { color: #92988f; }
.hero-form-field input:hover { border-color: #b9c2b0; background: #fff; }
.hero-form-field input:focus {
  outline: none;
  border-color: #6f9300;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(199,255,49,.28);
}
.hero-form-submit {
  min-height: 52px;
  margin-top: 2px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  padding: 12px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #0a1005;
  background: linear-gradient(100deg,#dfff54,#bdf51f);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(147,195,17,.18);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.hero-form-submit svg { width: 19px; height: 19px; }
.hero-form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(147,195,17,.27); filter: saturate(1.08); }
.hero-form-submit:focus-visible { outline: 3px solid #111; outline-offset: 3px; }
.hero-form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 10px;
  color: #737a70;
  font-size: 10px;
  font-weight: 600;
}
.hero-form-footer > span:nth-child(2) { width: 3px; height: 3px; border-radius: 50%; background: #8ba824; }
.hero-form-status { min-height: 0; margin: 0; color: #426000; font-size: 12px; font-weight: 700; text-align: center; }
.hero-enquiry-form.is-complete .hero-form-status { min-height: 18px; margin-top: 9px; }
.header-call .phone-circle svg { width: 24px; height: 24px; }
.mobile-form-slot:empty { display: none; }

@media (min-width: 901px) {
  .metrics { transition: transform .2s ease-out; }
}

@media (max-width: 640px) {
  #proposal-form { scroll-margin-top: 84px; }
  .mobile-form-slot { display: block; width: 100%; }
  .mobile-form-slot .hero-enquiry-form { width: 100%; margin: 34px auto 0; padding: 15px; border-radius: 21px; }
  .hero-form-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-form-heading strong { font-size: 15px; }
  .hero-form-grid { grid-template-columns: 1fr; }
  .hero-form-field-wide,
  .hero-form-submit { grid-column: auto; }
  .hero-form-field input { min-height: 50px; font-size: 16px; }
  .hero-form-submit { min-height: 55px; }
  .hero-form-footer { flex-wrap: wrap; }
}

/* Footer */
.site-footer { position: relative; overflow: hidden; margin-top: 0; padding: 150px 5.1% 0; color: #f5f7f4; background: radial-gradient(circle at 90% 5%,rgba(102,160,52,.22),transparent 26%),linear-gradient(135deg,#07100c 0%,#0b1411 56%,#101b13 100%); }
.footer-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); opacity: .55; }
.footer-glow-one { width: 360px; height: 360px; right: -190px; top: 60px; border: 1px solid rgba(199,255,49,.23); box-shadow: 0 0 90px rgba(199,255,49,.08) inset; }
.footer-glow-two { width: 210px; height: 210px; left: -110px; bottom: -70px; background: rgba(130,211,49,.08); }
.footer-inner { position: relative; z-index: 1; max-width: var(--container); margin: auto; }
.footer-main { display: grid; grid-template-columns: 1.45fr .65fr 1fr 1.05fr; gap: clamp(34px,4vw,78px); padding: 34px 0 70px; }
.footer-brand > a:first-child { display: inline-block; }
.footer-brand img { display: block; width: 280px; max-width: 100%; height: auto; }
.footer-brand > p { max-width: 380px; margin: 22px 0 29px; color: #aeb8b3; font-size: 16px; line-height: 1.7; }
.site-footer .footer-column { position: static; inset: auto; display: block; width: auto; height: auto; padding: 0; overflow: visible; background: none; box-shadow: none; }
.footer-email { display: inline-flex; align-items: center; gap: 13px; color: #f5f7f4; font-size: 14px; font-weight: 700; }
.footer-email > span:first-child,.footer-call > span:first-child { display: grid; place-items: center; width: 45px; height: 45px; border-radius: 50%; color: #081008; background: var(--lime); }
.footer-email svg { width: 20px; fill: none; stroke: currentColor; }
.footer-email small,.footer-call small { display: block; margin-bottom: 3px; color: #91a098; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.footer-column h2 { margin: 8px 0 25px; color: #f8faf7; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.footer-column a,.footer-column button { display: block; width: fit-content; min-height: 0; margin: 0 0 15px; padding: 0; border: 0; color: #aeb8b3; background: none; text-align: left; font-size: 14px; line-height: 1.5; transition: color .2s ease, transform .2s ease; }
.footer-column a:hover,.footer-column button:hover { color: var(--lime); transform: translateX(4px); }
.footer-contact { padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 25px; background: rgba(255,255,255,.035); }
.footer-kicker { display: flex; align-items: center; gap: 9px; margin: 0 0 16px; color: #b7c1bb; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 750; }
.footer-kicker span,.footer-availability span { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 13px rgba(199,255,49,.7); }
.footer-contact h2 { margin: 0 0 26px; font-size: clamp(27px,2.2vw,36px); line-height: 1.1; letter-spacing: -.04em; }
.footer-call { display: flex; align-items: center; gap: 13px; font-size: 16px; font-weight: 750; }
.footer-call svg { width: 20px; }
.footer-availability { display: flex; align-items: center; gap: 8px; margin: 24px 0 0; color: #99a69f; font-size: 12px; }
.footer-availability span { width: 6px; height: 6px; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; padding: 25px 0 28px; border-top: 1px solid rgba(255,255,255,.12); color: #849189; font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .11em; }
.footer-bottom p:nth-child(2) span { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }
.footer-bottom a { display: inline-flex; align-items: center; justify-self: end; gap: 9px; color: #dce2de; font-weight: 700; }
.footer-bottom a svg { width: 16px; transform: rotate(-90deg); }
@media (max-width: 1050px) {
  .site-footer { padding-top: 145px; }
  .footer-main { grid-template-columns: 1.3fr .7fr 1fr; }
  .footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px 35px; }
  .footer-contact h2 { margin: 0; }
  .footer-kicker,.footer-availability { grid-column: 1 / -1; }
  .footer-call { grid-column: 2; grid-row: 2; }
}
@media (max-width: 720px) {
  .site-footer { padding: 123px 18px 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; padding: 20px 0 48px; }
  .footer-brand,.footer-contact { grid-column: 1 / -1; }
  .footer-brand img { width: 245px; }
  .footer-brand > p { font-size: 15px; }
  .footer-email { max-width: 100%; font-size: 12px; }
  .footer-email > span:last-child { overflow-wrap: anywhere; }
  .footer-contact { display: block; padding: 24px; }
  .footer-contact h2 { margin-bottom: 24px; }
  .footer-availability { margin-top: 22px; }
  .footer-column h2 { margin-bottom: 20px; }
  .footer-column a,.footer-column button { font-size: 13px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .footer-bottom p:nth-child(2) { justify-content: center; order: -1; }
  .footer-bottom a { justify-self: center; }
}
@media (prefers-reduced-motion: reduce) { .footer-column a,.footer-column button { transition: none; } }

/* Refined paragraph scale: keeps headings and interface labels unchanged. */
.intro { font-size: 21px; }
.services-summary p { font-size: 16px; }
.offering > p { font-size: 15px; }
.about-intro { font-size: clamp(16px, 1.22vw, 20px); }
.impact-copy > p:last-child { font-size: clamp(15px, 1.05vw, 18px); }
.process-summary { font-size: clamp(15px, 1vw, 18px); }
.process-step > p { font-size: clamp(15px, 1vw, 17px); }
.industries-heading-row > p { font-size: clamp(15px, 1.05vw, 18px); }
.industry-copy p { font-size: 15px; }
.brands-intro { font-size: 15px; }
.testimonials-intro > p:last-child { font-size: clamp(16px, 1.18vw, 18px); }
.client-summary > p { font-size: 15px; }
.review-card blockquote p { font-size: clamp(16px, 1.18vw, 19px); }
.review-person p,
.review-sector { font-size: 14px; }
.faq-description { font-size: clamp(16px, 1.3vw, 22px); }
.faq-answer p { font-size: clamp(15px, 1.05vw, 18px); }
.growth-cta-description { font-size: clamp(15px, 1.12vw, 18px); }
.footer-brand > p { font-size: 14px; }
dialog p { font-size: 15px; }

@media (max-width: 640px) {
  .intro,
  .services-summary p,
  .about-intro,
  .impact-copy > p:last-child,
  .process-summary,
  .process-step > p,
  .industries-heading-row > p,
  .testimonials-intro > p:last-child,
  .faq-description,
  .faq-answer p,
  .growth-cta-description { font-size: 15px; }

  .offering > p,
  .industry-copy p,
  .brands-intro,
  .client-summary > p,
  .review-person p,
  .review-sector,
  .footer-brand > p { font-size: 14px; }

  .review-card blockquote p { font-size: 16px; }
}

/* Targeted compact copy requested for key narrative and proof sections. */
.intro { font-size: 18px; }
.about-intro { font-size: clamp(16px, 1.08vw, 18px); }
.impact-copy > p:last-child { font-size: clamp(15px, .95vw, 16px); }
.impact-metric dd { font-size: clamp(14px, 1vw, 16px); }
.industries-heading-row > p { font-size: clamp(15px, .98vw, 16px); }
.testimonials-intro > p:last-child { font-size: clamp(15px, 1.02vw, 16px); }
.client-summary > p { font-size: 14px; }
.review-card blockquote p { font-size: clamp(15px, 1.08vw, 17px); }
.review-person p,
.review-sector { font-size: 13px; }
.faq-answer p { font-size: clamp(14px, 1vw, 16px); }

@media (max-width: 640px) {
  .intro,
  .about-intro { font-size: 15px; }

  .impact-copy > p:last-child,
  .industries-heading-row > p,
  .testimonials-intro > p:last-child,
  .review-card blockquote p,
  .faq-answer p { font-size: 14px; }

  .impact-metric dd,
  .client-summary > p,
  .review-person p,
  .review-sector { font-size: 13px; }
}
