:root {
  --navy: #07132f;
  --navy-2: #0b173a;
  --ink: #121627;
  --muted: #667085;
  --line: #e7eaf0;
  --panel: #ffffff;
  --soft: #f5f7fb;
  --mint: #08e0a0;
  --mint-dark: #02a77c;
  --purple: #8f67ff;
  --shadow: 0 18px 50px rgba(10, 22, 54, 0.12);
  --shadow-soft: 0 8px 24px rgba(10, 22, 54, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 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(--soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--navy);
  background: rgba(8, 224, 160, 0.4);
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--navy);
  background: #fff;
  border-radius: 10px;
  transition: top 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 18px 0;
  color: #fff;
  background: rgba(7, 19, 47, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 24px;
  height: 13px;
  display: inline-block;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), #44f6c0 45%, var(--purple));
  position: relative;
  box-shadow: 0 0 24px rgba(8, 224, 160, 0.5);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  background: inherit;
}

.brand-mark::before {
  width: 15px;
  height: 15px;
  left: 3px;
  bottom: 4px;
}

.brand-mark::after {
  width: 9px;
  height: 9px;
  right: -3px;
  bottom: 0;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.nav-links a,
.nav-cta {
  transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  padding: 10px 15px;
  color: var(--navy);
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--mint);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 102px;
  color: #fff;
  background:
    radial-gradient(circle at 6% 18%, rgba(8, 224, 160, 0.32), transparent 27%),
    radial-gradient(circle at 88% 8%, rgba(143, 103, 255, 0.34), transparent 31%),
    linear-gradient(135deg, #06172c 0%, #07132f 50%, #11153a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 98px;
  background: linear-gradient(to bottom, rgba(245, 247, 251, 0), var(--soft));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.28;
}

.hero-glow-one {
  left: -80px;
  top: 76px;
  background: var(--mint);
}

.hero-glow-two {
  right: 8vw;
  top: 64px;
  background: var(--purple);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 76px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  max-width: 720px;
}

.lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: -0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--mint), #48f3bf 55%, var(--purple));
  box-shadow: 0 16px 36px rgba(8, 224, 160, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(8, 224, 160, 0.36);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.growth-card {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.92));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.growth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(8, 224, 160, 0.18), transparent 38%, rgba(143, 103, 255, 0.18));
  pointer-events: none;
}

.window-dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  margin-bottom: 46px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.growth-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #fff;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.os-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-top: 10px;
  border-radius: 12px;
  background: rgba(7, 19, 47, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.35);
}

.os-row span {
  display: inline-flex;
  justify-content: center;
  padding: 5px 8px;
  color: var(--mint-dark);
  background: rgba(8, 224, 160, 0.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.os-row p {
  margin: 0;
  color: #263044;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.pill-strip {
  position: relative;
  z-index: 2;
  padding: 34px 0 18px;
  background: var(--soft);
}

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

.pills span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 14px;
  text-align: center;
  color: #192035;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(231, 234, 240, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 780;
}

.section {
  padding: 72px 0;
}

.section-heading h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.center {
  max-width: 840px;
  margin: 0 auto 40px;
  text-align: center;
}

.center p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

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

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

.card {
  background: var(--panel);
  border: 1px solid rgba(231, 234, 240, 0.95);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 156px;
  padding: 24px;
}

.service-card h3,
.step-card h3 {
  margin-bottom: 10px;
  color: var(--mint-dark);
  font-size: 20px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.service-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.process {
  background: #eef2f8;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

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

.step-card {
  min-height: 178px;
  padding: 24px;
}

.step-number {
  display: block;
  margin-bottom: 18px;
  color: #8b93a5;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.documentation {
  padding-top: 70px;
  padding-bottom: 70px;
  background: var(--soft);
}

.doc-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: 58px;
  align-items: center;
  padding: 46px;
  color: #fff;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(8, 224, 160, 0.28), transparent 30%),
    radial-gradient(circle at 100% 0, rgba(143, 103, 255, 0.28), transparent 35%),
    linear-gradient(135deg, #08172e, #0a1233 55%, #111238);
  box-shadow: var(--shadow);
}

.doc-panel h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.doc-panel p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.62;
}

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

.check-list li {
  position: relative;
  min-height: 46px;
  padding: 14px 18px 14px 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 740;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--mint);
  background: rgba(8, 224, 160, 0.12);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.contact {
  padding-top: 74px;
  padding-bottom: 92px;
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: 76px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 530px;
}

.contact-email {
  display: inline-flex;
  margin-top: 26px;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.contact-email:hover {
  color: var(--mint-dark);
}

.enquiry-form {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(231, 234, 240, 0.95);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  color: #1f2637;
  font-size: 13px;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #e3e7ef;
  border-radius: 8px;
  background: #f7f8fb;
  color: var(--ink);
  outline: none;
  transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input,
select {
  height: 42px;
  padding: 0 12px;
}

textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px;
}

input:focus,
textarea:focus,
select:focus {
  background: #fff;
  border-color: rgba(8, 224, 160, 0.88);
  box-shadow: 0 0 0 4px rgba(8, 224, 160, 0.12);
}

.form-button {
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
}

.form-note {
  margin: 14px 0 0;
  color: #8b93a5;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
}

.site-footer {
  padding: 54px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(220px, 0.6fr);
  gap: 72px;
  padding-bottom: 42px;
}

.footer-brand {
  margin-bottom: 16px;
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.site-footer p,
.site-footer a {
  font-size: 13px;
  line-height: 1.62;
}

.site-footer p {
  margin-bottom: 0;
}

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

.footer-links {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .process-grid,
  .doc-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .growth-card,
  .contact-grid .enquiry-form {
    max-width: 560px;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    padding: 14px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 9px 13px;
  }

  .hero {
    padding: 124px 0 76px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .lead {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .button-ghost {
    overflow-wrap: anywhere;
    font-size: 14px;
  }

  .growth-card {
    padding: 26px 20px 22px;
  }

  .pills,
  .four-cards,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .doc-panel h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .doc-panel {
    padding: 28px 20px;
    gap: 32px;
  }

  .contact-grid {
    gap: 38px;
  }

  .enquiry-form {
    padding: 20px;
  }

  .footer-grid {
    gap: 32px;
  }
}
