:root {
  --ink: #07192f;
  --muted: #58708e;
  --paper: #f4f8ff;
  --white: #ffffff;
  --line: #d7e4f5;
  --blue: #1769ff;
  --blue-dark: #0a3d91;
  --blue-deep: #061b45;
  --sky: #36b7ff;
  --cyan: #00d4ff;
  --accent: #7c3aed;
  --shadow: 0 20px 55px rgba(7, 25, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef6ff 0, #f8fbff 520px, #f4f8ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 64px);
  background: rgba(244, 248, 255, 0.9);
  border-bottom: 1px solid rgba(215, 228, 245, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 84px;
  height: 54px;
  object-fit: contain;
  padding: 4px;
  background: #031126;
  border: 1px solid rgba(23, 105, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 25, 47, 0.12);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 105, 255, 0.28);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  color: #23405f;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: #e5f0ff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-deep);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(1.12) hue-rotate(178deg);
}

.hero-overlay {
  background:
    radial-gradient(circle at 86% 18%, rgba(54, 183, 255, 0.42), transparent 28%),
    radial-gradient(circle at 72% 78%, rgba(124, 58, 237, 0.25), transparent 30%),
    linear-gradient(90deg, rgba(6, 27, 69, 0.98) 0%, rgba(8, 45, 111, 0.84) 47%, rgba(23, 105, 255, 0.24) 100%),
    linear-gradient(0deg, rgba(6, 27, 69, 0.38), rgba(6, 27, 69, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 86px);
  padding: 92px 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0050d8);
  box-shadow: 0 16px 34px rgba(23, 105, 255, 0.3);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), #003a9f);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-grid,
.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 27, 69, 0.98), rgba(10, 61, 145, 0.95)),
    radial-gradient(circle at 15% 15%, rgba(54, 183, 255, 0.42), transparent 30%);
}

.intro-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card.large {
  min-height: 300px;
}

.card p,
.feature-list span,
.solution-row p,
.page-hero p,
.legal-page p,
.check-list,
.steps span {
  color: var(--muted);
}

.card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-weight: 800;
}

.icon {
  display: inline-grid;
  min-width: 54px;
  height: 36px;
  place-items: center;
  margin-bottom: 20px;
  padding: 0 10px;
  color: var(--blue-dark);
  background: #e4f0ff;
  border: 1px solid #b9d4ff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}

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

.feature-list div {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-list strong {
  font-size: 1.05rem;
}

.design-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(54, 183, 255, 0.32), transparent 28%),
    linear-gradient(135deg, #061b45, #0a3d91 58%, #1769ff);
}

.design-showcase p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.design-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.design-tags span {
  padding: 9px 12px;
  color: #dff4ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.graphic-board {
  position: relative;
  min-height: 390px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(228, 240, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 12, 38, 0.28);
}

.graphic-board::before,
.graphic-board::after {
  content: "";
  position: absolute;
  inset: auto 28px 44px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(23, 105, 255, 0.52), transparent);
}

.graphic-board::after {
  inset: 78px 36px auto;
}

.graphic-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  padding: 10px 12px 18px;
}

.graphic-topbar span {
  width: 10px;
  height: 10px;
  background: #bdd7ff;
  border-radius: 50%;
}

.graphic-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.graphic-panel,
.graphic-flow {
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #c8dbf7;
  border-radius: 8px;
}

.graphic-panel.wide {
  grid-row: span 2;
  min-height: 226px;
  display: grid;
  align-content: space-between;
}

.graphic-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.graphic-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
}

.graphic-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 110px;
}

.graphic-bars span {
  display: block;
  min-height: 46px;
  background: linear-gradient(180deg, var(--sky), var(--blue));
  border-radius: 8px 8px 4px 4px;
}

.graphic-bars span:nth-child(2) {
  min-height: 78px;
}

.graphic-bars span:nth-child(3) {
  min-height: 102px;
}

.graphic-bars span:nth-child(4) {
  min-height: 68px;
}

.graphic-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: #07192f;
}

.graphic-flow span {
  display: grid;
  min-height: 52px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.76), rgba(54, 183, 255, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 900;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stat {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 30px;
  background: var(--white);
}

.stat strong {
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 650;
}

.cta {
  justify-content: space-between;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue-deep), #0b4db8 72%, #168cff);
}

.cta h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
}

.page-hero {
  padding: clamp(84px, 10vw, 140px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 94px);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 22%, rgba(0, 212, 255, 0.38), transparent 30%),
    radial-gradient(circle at 14% 85%, rgba(124, 58, 237, 0.24), transparent 34%),
    linear-gradient(135deg, #061b45 0%, #0a3d91 58%, #1769ff 100%);
}

.page-hero h1 {
  font-size: clamp(2.45rem, 6vw, 5.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.solution-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.solution-row:first-child {
  padding-top: 0;
}

.solution-row h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

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

.check-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--sky);
  border-radius: 50%;
}

.process {
  background: #eaf3ff;
}

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

.steps div {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps strong {
  color: var(--blue);
  font-size: 1.7rem;
}

.partner {
  min-height: 220px;
}

.avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.2rem;
}

.contact-panel,
.enquiry-form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 30px;
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-line span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-line strong {
  color: var(--blue-dark);
  font-size: 1.1rem;
  overflow-wrap: anywhere;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

label {
  display: grid;
  gap: 7px;
  color: #23405f;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid #c5d8f3;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 20px;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-page h2 {
  margin-top: 36px;
  font-size: 1.45rem;
}

.legal-page a {
  color: var(--blue-dark);
  font-weight: 800;
}

.updated {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.7fr) minmax(200px, 0.6fr);
  gap: 28px;
  padding: 40px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #04152f;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.site-footer p {
  max-width: 540px;
  margin-bottom: 0;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover {
  color: var(--sky);
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  color: var(--white);
  background: #16a34a;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(22, 163, 74, 0.34);
  font-weight: 900;
}

.whatsapp-button:hover {
  background: #12843d;
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #16a34a;
  background: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 950;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
  }

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

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

  .site-nav a {
    padding: 13px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 80% 20%, rgba(54, 183, 255, 0.3), transparent 30%),
      linear-gradient(90deg, rgba(6, 27, 69, 0.96), rgba(8, 45, 111, 0.78));
  }

  .section-grid,
  .split,
  .contact-layout,
  .solution-row,
  .design-showcase {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.two,
  .stats-band,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 72px;
    height: 46px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 70px 0;
  }

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

  .card,
  .contact-panel,
  .enquiry-form {
    padding: 22px;
  }

  .stat {
    min-height: 138px;
  }

  .graphic-grid,
  .graphic-flow {
    grid-template-columns: 1fr;
  }

  .graphic-panel.wide {
    grid-row: auto;
  }

  .whatsapp-button {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-right: 13px;
  }
}

@media (max-width: 620px) {
  .design-showcase {
    padding-top: 56px;
    padding-bottom: 70px;
  }

  .design-tags {
    gap: 8px;
    margin-top: 20px;
  }

  .design-tags span {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .graphic-board {
    min-height: auto;
    padding: 14px;
  }

  .graphic-grid {
    gap: 10px;
  }

  .graphic-panel,
  .graphic-flow {
    padding: 15px;
  }

  .graphic-panel.wide {
    min-height: 188px;
  }

  .graphic-panel strong {
    font-size: 2.3rem;
  }

  .graphic-bars {
    min-height: 76px;
    gap: 8px;
  }

  .graphic-bars span {
    min-height: 34px;
  }

  .graphic-bars span:nth-child(2) {
    min-height: 52px;
  }

  .graphic-bars span:nth-child(3) {
    min-height: 70px;
  }

  .graphic-bars span:nth-child(4) {
    min-height: 48px;
  }

  .graphic-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 12px;
  }

  .graphic-flow span {
    min-height: 42px;
    font-size: 0.78rem;
  }
}
