﻿:root {
  --ink: #1d1d1b;
  --muted: #6f7678;
  --line: #d6eceb;
  --paper: #ffffff;
  --soft: #f4fbfb;
  --brand: #1a3e70;
  --brand-2: #03979d;
  --brand-3: #e30613;
  --dark: #1d1d1b;
  --shadow: 0 20px 60px rgba(26, 62, 112, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: #d6eceb;
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 12px;
}

.topbar__inner span:first-child {
  margin-right: auto;
  color: #ffffff;
  font-weight: 700;
}

.topbar__inner a {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.brand__logos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.brand__logo {
  display: block;
  object-fit: contain;
}

.brand__logo--bgsoft {
  height: 48px;
  width: auto;
}

.brand__logo--tally {
  height: 48px;
  width: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: #263a45;
  font-size: 14px;
  font-weight: 700;
}

.nav__links a:hover {
  color: var(--brand);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.button--primary {
  color: #fff;
  background: var(--brand-3);
  box-shadow: 0 14px 26px rgba(227, 6, 19, 0.2);
}

.button--primary:hover {
  background: #b0000c;
}

.button--secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(circle at 16% 12%, rgba(3, 151, 157, 0.12), transparent 30%),
    linear-gradient(180deg, #f4fbfb 0%, #fff 78%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 48px;
}

.hero__content,
.hero__visual,
.split-grid > *,
.solutions-grid > *,
.contact-grid > *,
.process-grid > *,
.proof-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.hero__lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.trust-strip div {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 20px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
}

.hero__visual {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: 100%;
  height: auto;
}

@media (min-width: 921px) {
  .hero {
    padding: 24px 0 20px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.58fr);
    gap: 24px;
    align-items: start;
  }

  .hero__content {
    max-width: 600px;
  }

  h1 {
    max-width: 560px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.04;
  }

  .hero__lead {
    max-width: 520px;
    margin-top: 12px;
    font-size: 15px;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .trust-strip {
    margin-top: 16px;
  }

  .trust-strip div {
    min-height: 76px;
    padding: 12px 14px;
  }

  .trust-strip strong {
    font-size: 16px;
  }

  .hero__visual {
    max-width: 520px;
    min-height: 360px;
    justify-self: end;
    padding: 12px;
  }
}

.section {
  padding: 28px 0 82px;
  scroll-margin-top: 124px;
}

.section--compact {
  padding: 24px 0;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-row span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #33464d;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split-grid p,
.process-grid p,
.contact-grid p {
  color: var(--muted);
}

.section-heading .eyebrow,
.split-grid .eyebrow,
.process-grid .eyebrow,
.contact-grid .eyebrow {
  color: var(--brand-3);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.card:hover {
  border-color: rgba(3, 151, 157, 0.38);
  box-shadow: 0 18px 34px rgba(26, 62, 112, 0.1);
}

.card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--brand);
  background: #d6eceb;
  font-weight: 800;
}

.card p,
.product-list p,
.steps p,
.proof-points p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.section--split {
  background: var(--soft);
  padding-top: 44px;
}

.split-grid,
.contact-grid,
.process-grid,
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.split-grid .button {
  margin-top: 18px;
}

.product-list {
  display: grid;
  gap: 14px;
}

.product-list article {
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 33, 61, 0.06);
}

.solutions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 22px;
}

.solution-panel,
.industry-panel,
.contact-card,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-2);
  content: "\2713";
  font-weight: 800;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-tags span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 13px;
  background: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.section--process {
  background: linear-gradient(180deg, #fff 0%, #f4fbfb 100%);
}

.process-grid {
  align-items: center;
}

.process-grid img {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.steps article {
  min-height: 205px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.steps span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
}

.section--dark {
  color: #fff;
  background: var(--dark);
}

.section--dark .eyebrow {
  color: #bddced;
}

.section--dark h2,
.section--dark strong {
  color: #fff;
}

.proof-points {
  display: grid;
  gap: 18px;
}

.proof-points p {
  color: #d6eceb;
}

.contact-card,
.contact-options {
  margin-top: 28px;
}

.contact-options {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 8px;
  background: var(--soft);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.contact-link svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: currentColor;
}

.whatsapp-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.whatsapp-card img {
  width: 132px;
  height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.whatsapp-card strong,
.whatsapp-card span {
  display: block;
}

.whatsapp-card span {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  box-shadow: var(--shadow);
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: #263a45;
  font-size: 13px;
  font-weight: 800;
}

.form-full {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-status.is-success {
  color: #0b7f5e;
}

.form-status.is-error {
  color: #b0000c;
}

.form-status.is-info {
  color: var(--brand);
}

.enquiry-form button:disabled {
  opacity: 0.72;
  cursor: progress;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(3, 151, 157, 0.16);
}

.footer {
  padding: 54px 0 28px;
  color: #d6eceb;
  background: #081321;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.4fr) minmax(180px, 0.4fr);
  gap: 44px;
}

.brand--footer {
  color: #fff;
  margin-bottom: 16px;
}

.brand--footer .brand__logo--bgsoft {
  width: 40px;
  height: 40px;
}

.brand--footer small {
  color: #bddced;
}

.footer h3 {
  color: #fff;
}

.footer a {
  display: block;
  margin-top: 8px;
  color: #d6eceb;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #bddced;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 152px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  padding: 0;
  color: #fff;
  background: #128c7e;
  box-shadow: 0 18px 34px rgba(18, 140, 126, 0.28);
  font-size: 14px;
  font-weight: 800;
}

.whatsapp-float:hover {
  background: #0e7468;
}

.whatsapp-float__icon {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  background: transparent;
}

.whatsapp-float__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.whatsapp-float__text {
  display: none;
}

.whatsapp-float.is-cooling {
  pointer-events: none;
  opacity: 0.72;
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 160px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav.is-open .nav__links,
  .nav.is-open .nav__cta {
    display: flex;
    width: 100%;
  }

  .nav.is-open .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 4px 0 16px;
  }

  .hero__grid,
  .split-grid,
  .solutions-grid,
  .contact-grid,
  .process-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(34px, 7vw, 46px);
  }

  .service-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 176px;
  }

  .container {
    width: calc(100% - 28px);
    max-width: 1140px;
  }

  .hero__grid,
  .hero__content,
  .hero__lead {
    max-width: 100%;
  }

  .hero__grid {
    width: calc(100% - 28px);
  }

  .hero__content,
  .hero__lead {
    width: min(100%, 340px);
  }

  h1 {
    max-width: 340px;
    font-size: clamp(27px, 6.8vw, 29px);
    line-height: 1.15;
    word-break: break-word;
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 16px;
    padding: 6px 0;
  }

  .topbar__inner span:first-child {
    width: 100%;
  }

  .nav {
    min-height: 58px;
    gap: 14px;
  }

  .brand__logo--bgsoft {
    height: 42px;
  }

  .brand__logo--tally {
    height: 42px;
  }

  .trust-strip,
  .service-grid,
  .steps,
  .logo-row,
  .enquiry-form,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .hero__visual {
    padding: 10px;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .whatsapp-card {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 146px;
  }
}
