:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --bg-strong: #eef4f2;
  --surface: #ffffff;
  --surface-soft: #f9fbfd;
  --ink: #17202a;
  --muted: #5d6875;
  --line: #dbe3ea;
  --brand: #0f766e;
  --brand-dark: #0b534f;
  --accent: #d98b13;
  --accent-soft: #fff5e5;
  --blue: #2f5f98;
  --success: #0f7a45;
  --error: #b42318;
  --shadow: 0 18px 45px rgba(23, 32, 42, 0.11);
  --shadow-soft: 0 10px 25px rgba(23, 32, 42, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  font-size: 4rem;
  max-width: 850px;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

.body-large {
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 227, 234, 0.75);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  border-radius: var(--radius);
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 12px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--bg-strong);
  color: var(--brand-dark);
}

.site-nav .nav-quote {
  background: var(--accent-soft);
  color: #7a4a08;
}

.header-actions,
.hero-actions,
.contact-options {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  padding: 12px 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.24);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--ink);
  color: #ffffff;
}

.btn-ghost {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.btn-whatsapp {
  background: #138a4a;
  color: #ffffff;
}

.btn-wide {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: calc(50% + 240px) center;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 24, 0.9) 0%, rgba(8, 18, 24, 0.76) 45%, rgba(8, 18, 24, 0.14) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 88px 0 72px;
}

.hero h1,
.hero p {
  color: #ffffff;
}

.hero h1 {
  margin-bottom: 18px;
}

.hero-text {
  max-width: 680px;
  font-size: 1.18rem;
}

.hero-eyebrow {
  color: #f6c766;
}

.hero-actions {
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  max-width: 780px;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 800;
  padding: 8px 12px;
}

.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.trust-grid > div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 26px 24px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid .icon {
  color: var(--brand);
  font-size: 1.6rem;
}

.trust-grid strong {
  font-size: 1.02rem;
}

.trust-grid span {
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-intro {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-intro-center {
  text-align: center;
  margin-inline: auto;
}

.section-intro p:last-child {
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

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

.portfolio-grid,
.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card,
.feature-item,
.category-item,
.price-example,
.trust-reason-card,
.note-panel,
.inquiry-form,
.contact-side,
.quote-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--bg-strong);
  color: var(--brand-dark);
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3,
.pricing-card h3,
.portfolio-card h3 {
  margin-bottom: 12px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #344054;
}

.check-list .icon {
  margin-top: 4px;
  color: var(--success);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-item {
  padding: 26px;
}

.feature-item p,
.category-item p,
.portfolio-card p {
  margin-bottom: 0;
}

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

.pricing-card {
  gap: 18px;
}

.pricing-card.is-featured {
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.14);
}

.pricing-card-top strong {
  display: block;
  color: var(--brand-dark);
  font-size: 2rem;
  line-height: 1.1;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-note {
  max-width: 820px;
  margin: 24px auto 0;
  border-left: 4px solid var(--accent);
  background: #ffffff;
  color: #3f4854;
  padding: 16px 18px;
}

.price-example-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.price-example {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.price-example span {
  color: var(--muted);
  font-weight: 700;
}

.price-example strong {
  color: var(--brand-dark);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

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

.category-item {
  padding: 24px;
}

.category-item h3 {
  margin-bottom: 10px;
}

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

.about-founders-intro {
  max-width: 920px;
  margin-inline: auto;
}

.founder-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: var(--shadow);
}

.founder-photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-strong);
}

.founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 220ms ease;
}

.founder-card:hover img {
  transform: scale(1.025);
}

.founder-content {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.founder-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  border-radius: var(--radius);
  background: var(--bg-strong);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 7px 10px;
}

.founder-card h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

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

.founders-section-profile .founder-grid {
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 42px;
}

.section-founder-profiles {
  background: #f7fafb;
}

.founders-section-profile .about-founders-intro {
  max-width: none;
}

.founder-profile-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.founder-profile-heading h2 {
  margin-bottom: 12px;
  font-size: 2.42rem;
  text-transform: uppercase;
}

.founder-profile-heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
}

.founder-profile-row {
  border-radius: var(--radius);
  background: #edf7f4;
  padding: 30px 34px 30px 162px;
}

.founder-profile-row:nth-child(even) {
  background: #eef5f8;
}

.founder-card-profile {
  position: relative;
  min-height: 314px;
  overflow: visible;
  padding: 36px 42px 34px 152px;
}

.founder-card-profile .founder-photo-wrap {
  position: absolute;
  top: 50%;
  left: -120px;
  width: 250px;
  height: 292px;
  min-height: 0;
  transform: translateY(-50%);
  aspect-ratio: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.12);
}

.founder-card-profile .founder-content {
  gap: 12px;
  padding: 0;
}

.founder-card-profile h3 {
  font-size: 1.7rem;
}

.founder-role {
  display: block;
  width: fit-content;
  color: var(--brand);
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-card-profile .founder-bio {
  max-width: 700px;
  margin: 18px 0 0;
  color: #344054;
  font-size: 1.01rem;
  line-height: 1.64;
}

.founder-bio-extended {
  max-width: 700px;
  margin: 18px 0 0;
  color: #344054;
  font-size: 1.01rem;
  line-height: 1.64;
}

.founder-bio-extended p {
  margin: 0 0 16px 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.founder-bio-extended p:last-child {
  margin-bottom: 0;
}

.founder-statistics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 24px 0;
  padding: 24px;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 8px;
  border-left: 4px solid var(--brand);
}

.founder-stat-item {
  text-align: center;
}

.founder-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 6px;
}

.founder-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #344054;
  line-height: 1.4;
}

.founder-expertise {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-content: end;
  margin-top: 18px;
}

.founder-expertise span {
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: 6px;
  background: #f5faf8;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 8px;
}

.trust-reasons-block {
  margin-top: 56px;
}

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

.trust-reason-card {
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-reason-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.26);
  box-shadow: var(--shadow);
}

.trust-reason-card h3 {
  margin-bottom: 10px;
}

.trust-reason-card p {
  margin-bottom: 0;
}

.testimonial-card {
  gap: 22px;
}

.testimonial-card blockquote {
  margin: 0;
  color: #344054;
}

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

.testimonial-card figcaption span {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-row span {
  border-radius: var(--radius);
  background: var(--bg-strong);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 9px;
}

.page-hero {
  background: var(--ink);
  color: #ffffff;
}

.compact-hero .container {
  padding: 82px 0 70px;
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.page-hero .eyebrow {
  color: #f6c766;
}

.page-hero .contact-options {
  margin-top: 28px;
}

.about-showcase-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 36%, rgba(15, 118, 110, 0.09), transparent 36%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 37%, #f5faf8 100%);
}

.about-showcase-shell {
  width: min(calc(100% - 64px), 1380px);
  margin-inline: auto;
}

.about-showcase-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 0.93fr) minmax(530px, 1.07fr);
  height: 620px;
}

.about-showcase-content {
  position: relative;
  z-index: 2;
  padding: 32px 28px 26px 0;
}

.about-showcase-content h1 {
  max-width: 590px;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 2.3rem;
  line-height: 1.13;
}

.about-showcase-content h1 span {
  color: var(--brand);
}

.about-showcase-text {
  max-width: 490px;
  margin-bottom: 22px;
  color: #465463;
  font-size: 0.94rem;
  line-height: 1.72;
}

.about-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 520px;
  gap: 17px 18px;
}

.about-benefit {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 13px;
  align-items: start;
  transition: transform 180ms ease;
}

.about-benefit:hover {
  transform: translateY(-2px);
}

.about-benefit-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--bg-strong);
  color: var(--brand);
  font-size: 1.34rem;
}

.about-benefit h2 {
  margin: 1px 0 3px;
  font-size: 0.9rem;
}

.about-benefit p {
  margin-bottom: 0;
  color: #3f4d59;
  font-size: 0.73rem;
  line-height: 1.42;
}

.about-promise {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: center;
  max-width: 520px;
  margin-top: 26px;
  border-radius: var(--radius);
  background: #eff8f6;
  padding: 15px 18px;
}

.about-promise-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #ffffff;
  font-size: 1.3rem;
}

.about-promise strong {
  display: block;
  margin-bottom: 2px;
  color: var(--brand-dark);
  font-size: 0.77rem;
}

.about-promise p {
  margin: 0;
  color: #455462;
  font-size: 0.72rem;
  line-height: 1.48;
}

.about-showcase-media {
  position: relative;
  height: 620px;
  margin: 0;
  overflow: hidden;
}

.about-showcase-media::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 18%;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.about-showcase-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-solutions-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid #edf2f3;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px 0 25px;
}

.about-solutions-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin: 0 0 13px;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 900;
}

.about-solutions-heading::before,
.about-solutions-heading::after {
  width: min(280px, 24%);
  height: 1px;
  content: "";
  background: var(--line);
}

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

.about-solution {
  display: flex;
  min-height: 52px;
  gap: 10px;
  align-items: center;
  border: 1px solid #e7edf1;
  border-radius: var(--radius);
  background: #ffffff;
  color: #30404c;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 13px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-solution:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.25);
  box-shadow: var(--shadow-soft);
}

.about-solution .icon {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.note-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 870px;
  padding: 26px;
}

.note-panel .icon {
  width: 46px;
  height: 46px;
  color: var(--brand);
}

.note-panel p {
  margin-bottom: 0;
}

.contact-layout,
.enquiry-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.inquiry-form {
  padding: 30px;
}

.form-heading {
  margin-bottom: 22px;
}

.form-heading h2 {
  margin-bottom: 10px;
}

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

.form-full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

label small {
  min-height: 18px;
  color: var(--error);
  font-size: 0.82rem;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: var(--error);
}

.btn-submit {
  margin-top: 8px;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.contact-side,
.quote-aside {
  padding: 26px;
}

.contact-side h2,
.quote-aside h2 {
  font-size: 1.45rem;
}

.contact-side .contact-options {
  display: grid;
  align-items: stretch;
  margin: 18px 0 22px;
}

.phone-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}

.phone-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 14px;
}

.phone-list-item > div:first-child > span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-list-item > div:first-child > strong {
  color: var(--ink);
  font-size: 1rem;
}

.phone-mini-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.phone-mini-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  padding: 8px 10px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.phone-mini-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.35);
  background: var(--bg-strong);
}

.phone-list-footer {
  margin: 0;
}

.phone-list-footer .phone-list-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.phone-list-footer .phone-list-item > div:first-child > span,
.phone-list-footer .phone-list-item > div:first-child > strong {
  color: rgba(255, 255, 255, 0.82);
}

.phone-list-footer .phone-mini-actions a {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contact-facts,
.office-details {
  display: grid;
  gap: 14px;
}

.contact-facts p,
.office-details p {
  display: flex;
  gap: 10px;
  margin: 0;
  color: var(--ink);
}

.contact-facts .icon,
.office-details .icon {
  margin-top: 4px;
  color: var(--brand);
}

.office-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.section-office {
  background: #ffffff;
}

.map-panel {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eaf3f1;
  text-align: center;
  box-shadow: var(--shadow);
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.13) 1px, transparent 1px);
  background-size: 36px 36px;
}

.map-pin {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.25);
}

.map-panel strong,
.map-panel span {
  position: relative;
  z-index: 1;
  width: min(82%, 420px);
}

.map-panel span {
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 22px 0;
}

.process-list div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
}

.process-list p {
  margin: 4px 0 0;
}

.cta-band {
  background: var(--brand-dark);
  color: #ffffff;
  padding: 64px 0;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band p,
.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.contact-options-compact {
  align-items: center;
}

.site-footer {
  background: #111820;
  color: #ffffff;
  padding-top: 60px;
}

.site-footer p,
.site-footer a,
.site-footer small,
.site-footer span {
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.9fr 1.1fr;
  gap: 36px;
}

.brand-footer .brand-mark {
  background: #ffffff;
  color: var(--brand-dark);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a,
.footer-links a {
  display: inline-flex;
  width: fit-content;
}

.site-footer h3 {
  color: #ffffff;
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.footer-contact .phone-mini-actions a {
  display: inline-flex;
  align-items: center;
}

.footer-contact .icon {
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .about-showcase-shell {
    width: min(calc(100% - 40px), 760px);
  }

  .about-showcase-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-showcase-content {
    padding: 54px 0 40px;
  }

  .about-showcase-media {
    height: auto;
    min-height: 580px;
    border-radius: var(--radius);
  }

  .about-showcase-media::before {
    display: none;
  }

  .about-solutions-bar {
    margin-top: 20px;
    padding-top: 20px;
  }

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

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

  .price-example-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .header-actions {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

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

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

  .site-nav a {
    padding: 12px 14px;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero-overlay {
    background: rgba(8, 18, 24, 0.92);
  }

  .hero-inner {
    padding: 76px 0 58px;
  }

  .about-showcase-content {
    padding: 48px 0 34px;
  }

  .about-showcase-content h1 {
    font-size: 2.35rem;
  }

  .about-showcase-media {
    height: auto;
    min-height: 520px;
  }

  .founder-profile-heading h2 {
    font-size: 2rem;
  }

  .founders-section-profile .founder-grid {
    gap: 28px;
    margin-top: 34px;
  }

  .founder-profile-row {
    padding: 18px;
  }

  .founder-card-profile {
    min-height: auto;
    padding: 14px;
  }

  .founder-card-profile .founder-photo-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 270px;
    transform: none;
  }

  .founder-card-profile .founder-content {
    padding: 22px 12px 12px;
  }

  .founder-card-profile .founder-bio {
    margin-top: 8px;
  }

  .founder-statistics {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
    margin: 20px 0 18px 0;
  }

  .founder-stat-value {
    font-size: 1.5rem;
  }

  .founder-stat-label {
    font-size: 0.8rem;
  }

  .trust-grid,
  .feature-grid,
  .founder-grid,
  .trust-reason-grid,
  .split-section,
  .office-grid,
  .contact-layout,
  .enquiry-layout,
  .footer-grid,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:last-child {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-grid,
  .pricing-grid,
  .portfolio-grid,
  .testimonial-grid,
  .category-grid,
  .price-example-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .compact-hero .container {
    padding: 64px 0 56px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(362px, calc(100% - 28px));
    max-width: 362px;
    margin-left: 14px;
    margin-right: auto;
  }

  .hero {
    background-image: none;
    background-color: #111820;
  }

  .hero-overlay {
    display: none;
  }

  .hero-inner {
    flex: 0 1 min(362px, calc(100% - 28px));
    width: min(362px, calc(100% - 28px));
    max-width: 362px;
  }

  h1 {
    font-size: 1.85rem;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.65rem;
  }

  .about-showcase-shell {
    width: min(362px, calc(100% - 28px));
    max-width: 362px;
    margin-left: 14px;
    margin-right: auto;
  }

  .about-showcase-content {
    padding: 40px 0 28px;
  }

  .about-showcase-content h1 {
    font-size: 1.86rem;
  }

  .about-desktop-break {
    display: none;
  }

  .about-showcase-text {
    font-size: 0.9rem;
    margin-bottom: 22px;
  }

  .about-benefit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-benefit p,
  .about-promise p {
    font-size: 0.78rem;
  }

  .about-promise {
    margin-top: 26px;
    padding: 14px;
  }

  .about-showcase-media {
    height: auto;
    min-height: 418px;
  }

  .about-showcase-media img {
    object-position: center top;
  }

  .about-solutions-bar {
    margin-top: 12px;
    padding: 18px 0 24px;
  }

  .about-solutions-heading {
    margin-bottom: 12px;
  }

  .about-solutions-heading::before,
  .about-solutions-heading::after {
    width: 42px;
  }

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

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-actions,
  .contact-options,
  .contact-options-compact {
    width: 100%;
    display: grid;
  }

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

  .hero-proof span {
    text-align: center;
  }

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

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

  .founder-photo-wrap {
    aspect-ratio: 1 / 1;
  }

  .founder-card-profile {
    padding: 10px;
  }

  .founder-card-profile .founder-photo-wrap {
    width: 100%;
    height: 232px;
    aspect-ratio: auto;
  }

  .founder-card-profile .founder-content {
    gap: 11px;
    padding: 18px 12px 12px;
  }

  .founder-profile-heading h2 {
    font-size: 1.72rem;
  }

  .founders-section-profile .founder-grid {
    margin-top: 28px;
  }

  .founder-profile-row {
    padding: 10px;
  }

  .founder-card-profile .founder-bio {
    font-size: 0.89rem;
  }

  .founder-statistics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
    margin: 16px 0 14px 0;
  }

  .founder-stat-value {
    font-size: 1.3rem;
  }

  .founder-stat-label {
    font-size: 0.75rem;
  }

  .phone-list-item {
    grid-template-columns: 1fr;
  }

  .phone-mini-actions {
    justify-content: stretch;
  }

  .phone-mini-actions a {
    justify-content: center;
  }

  .inquiry-form,
  .contact-side,
  .quote-aside,
  .card {
    padding: 22px;
  }

  .map-panel {
    min-height: 300px;
  }
}
