:root {
  --bg: #ffffff;
  --ink: #162033;
  --muted: #5f6b7a;
  --line: #dbe3ec;
  --soft: #f4f7fb;
  --primary: #0570de;
  --primary-dark: #084b9a;
  --accent: #12a37f;
  --footer: #101a2b;
  --shadow: 0 16px 40px rgba(22, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
}

.brand__logo {
  width: 158px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.brand__logo--footer {
  width: 190px;
  height: 64px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 600;
  color: #263244;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  color: #fff;
  background:
    radial-gradient(circle at 76% 18%, rgba(18, 163, 127, 0.34), transparent 30%),
    linear-gradient(135deg, #07162b, #0f345c 58%, #0d624f);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
  min-height: 720px;
  padding: 92px 0 64px;
}

.hero__copy {
  min-width: 0;
}

.hero__image {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.why h2,
.stories h2 {
  max-width: 760px;
  margin: 0;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
}

.hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero__actions,
.split {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__actions {
  margin-top: 32px;
}

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

.button--primary {
  color: #fff;
  background: var(--primary);
}

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

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  margin: 12px 0 0;
}

.stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.stats dt {
  font-size: 28px;
  font-weight: 800;
}

.stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

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

.section__intro {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.section__intro h2,
.why h2,
.stories h2,
.contact h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.section__intro p:not(.eyebrow),
.why p,
.stories__hero p,
.contact p,
.split p {
  color: var(--muted);
  font-size: 18px;
}

.service-grid,
.testimonial-grid,
.story-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto;
}

.service-card,
.testimonial-card,
.story-card,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 32, 51, 0.06);
}

.service-card,
.testimonial-card {
  padding: 28px;
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--primary);
  background: #e9f3ff;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
}

.service-card h3,
.testimonial-card h3,
.story-card h3 {
  margin: 18px 0 8px;
  line-height: 1.25;
}

.service-card p,
.testimonial-card p,
.story-card p {
  color: var(--muted);
}

.service-card a,
.story-card a {
  color: var(--primary);
  font-weight: 800;
}

.why {
  padding: 92px 0;
  color: #fff;
  background: linear-gradient(135deg, #07162b, #0e385f 58%, #0b5f4d);
}

.why p {
  color: rgba(255, 255, 255, 0.78);
}

.why__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 44px;
}

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

.pill-list li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-weight: 800;
}

.testimonial-grid {
  grid-template-columns: minmax(280px, 640px);
  justify-content: center;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 14px;
}

.stories__hero {
  padding: 88px 0;
  color: #fff;
  background: linear-gradient(135deg, #0c2341, #0f6a5b);
}

.stories__hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 42px;
}

.story-card {
  overflow: hidden;
}

.story-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft);
}

.story-card div {
  padding: 22px;
}

.story-card.is-hidden {
  display: none;
}

.view-more {
  display: block;
  margin: 30px auto 82px;
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.split {
  justify-content: space-between;
}

.split > div {
  max-width: 720px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-list li + li {
  margin-top: 10px;
}

.contact-list a {
  color: var(--primary);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.chatbox input {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  color: #c8d2df;
  background: var(--footer);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 56px 0 34px;
}

.brand--footer {
  color: #fff;
}

.footer p {
  max-width: 340px;
  margin: 14px 0 0;
}

.footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.footer a:not(.brand) {
  display: block;
  margin: 8px 0;
}

.footer__bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p {
  margin: 0;
}

.chatbox {
  position: fixed;
  right: 22px;
  bottom: 0;
  z-index: 80;
  width: min(320px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

.chatbox--tray {
  transform: translateY(calc(100% - 48px));
}

.chatbox__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 8px 8px 0 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chatbox__indicator {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.chatbox__body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.chatbox__body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.chatbox button:not(.chatbox__title) {
  min-height: 40px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 116px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 12px 0;
  }

  .hero__content,
  .service-grid,
  .testimonial-grid,
  .story-grid,
  .why__inner,
  .contact__inner,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: 0;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .topbar__inner {
    flex-direction: column;
    gap: 4px;
  }

  .nav-menu {
    top: 140px;
  }

  .hero__content {
    padding: 64px 0 42px;
  }

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

  .section,
  .why {
    padding: 68px 0;
  }

  .story-grid {
    padding-top: 26px;
  }
}

/* Premium visual layer */
:root {
  --surface: rgba(255, 255, 255, 0.88);
  --shadow: 0 20px 60px rgba(22, 32, 51, 0.14);
  --shadow-strong: 0 30px 90px rgba(4, 18, 38, 0.22);
}

body {
  background:
    radial-gradient(circle at top left, rgba(5, 112, 222, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 42%, #ffffff 100%);
}

.container {
  width: min(1180px, calc(100% - 40px));
}

.topbar {
  background: #07162b;
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 0 rgba(219, 227, 236, 0.72);
  backdrop-filter: blur(18px);
}

.brand__mark {
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(5, 112, 222, 0.22);
}

.nav-menu {
  font-size: 15px;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(18, 163, 127, 0.44), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(5, 112, 222, 0.42), transparent 30%),
    linear-gradient(135deg, #061122, #0b284f 54%, #073f45);
  overflow: hidden;
}

.hero__content {
  position: relative;
  min-height: 760px;
  padding: 112px 0 72px;
}

.hero__content::before {
  position: absolute;
  right: -120px;
  top: 72px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero__content::after {
  position: absolute;
  right: 18%;
  bottom: 92px;
  width: 170px;
  height: 170px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  filter: blur(1px);
}

.hero__copy,
.hero__image,
.stats {
  position: relative;
  z-index: 1;
}

.hero__image {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.eyebrow {
  font-size: 12px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 6.6vw, 82px);
  letter-spacing: -0.04em;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button--primary {
  background: linear-gradient(135deg, var(--primary), #0c8deb);
  box-shadow: 0 14px 34px rgba(5, 112, 222, 0.3);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.stats {
  gap: 14px;
  margin: 18px 0 0;
}

.stats div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

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

.brand-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.brand-strip span {
  padding: 9px 14px;
  color: #38506a;
  background: #f4f8fc;
  border: 1px solid #e1ebf4;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.section__intro--left {
  margin: 0;
  text-align: left;
}

.section-visual,
.split__visual,
.contact-visual {
  width: 100%;
  border: 1px solid rgba(219, 227, 236, 0.86);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(22, 32, 51, 0.08);
}

.split__visual {
  max-width: 280px;
  margin-left: auto;
}

.contact-visual {
  max-width: 360px;
  margin: 28px 0 0;
}

.section {
  padding: 104px 0;
}

.section--soft {
  background: linear-gradient(180deg, #f6f9fd 0%, #eef5fb 100%);
}

.section__intro {
  margin-bottom: 50px;
}

.section__intro h2,
.why h2,
.stories h2,
.contact h2 {
  letter-spacing: -0.035em;
}

.service-grid,
.testimonial-grid,
.story-grid {
  gap: 24px;
}

.service-card,
.testimonial-card,
.story-card,
.contact-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 227, 236, 0.86);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(22, 32, 51, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.story-card:hover,
.testimonial-card:hover,
.contact-form:hover {
  border-color: rgba(5, 112, 222, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card,
.testimonial-card {
  padding: 32px;
}

.service-card__icon {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(5, 112, 222, 0.18);
}

.why {
  padding: 112px 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(18, 163, 127, 0.3), transparent 30%),
    linear-gradient(135deg, #07162b, #0e385f 58%, #0b5f4d);
}

.pill-list li {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.quote-mark {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--primary);
  background: #e9f3ff;
  border-radius: 16px;
  font-size: 58px;
  font-weight: 800;
  line-height: 70px;
  text-align: center;
}

.stories__hero {
  padding: 96px 0;
  background:
    radial-gradient(circle at 74% 16%, rgba(5, 112, 222, 0.32), transparent 28%),
    linear-gradient(135deg, #0c2341, #0f6a5b);
}

.story-grid {
  padding-top: 48px;
}

.story-card div {
  padding: 26px;
}

.view-more {
  border-radius: 999px;
}

.contact__inner {
  gap: 52px;
}

.contact-form {
  padding: 34px;
}

.contact-form input,
.contact-form textarea,
.chatbox input {
  padding: 14px 15px;
  border-radius: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.chatbox input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(5, 112, 222, 0.1);
  outline: none;
}

.footer {
  background:
    radial-gradient(circle at 84% 8%, rgba(18, 163, 127, 0.24), transparent 28%),
    var(--footer);
}

.chatbox {
  border-radius: 18px 18px 0 0;
}

.chatbox__title {
  background: linear-gradient(135deg, var(--primary), #0a8ae5);
  border-radius: 18px 18px 0 0;
}

.chatbox button:not(.chatbox__title) {
  border-radius: 14px;
}

/* Header/logo integration */
.topbar {
  background: #07111f;
  border-top: 3px solid #d7b886;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98), rgba(10, 31, 58, 0.96) 48%, rgba(7, 17, 31, 0.98)),
    radial-gradient(circle at 18% 50%, rgba(5, 112, 222, 0.28), transparent 34%);
  border-bottom: 1px solid rgba(115, 158, 207, 0.28);
  box-shadow: 0 18px 42px rgba(4, 14, 28, 0.22);
  backdrop-filter: blur(18px);
}

.navbar__inner {
  min-height: 92px;
}

.brand {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(154, 192, 236, 0.2);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 36px rgba(0, 0, 0, 0.2);
}

.brand__logo {
  border-radius: 10px;
}

.nav-menu {
  color: #e8f1ff;
}

.nav-menu a {
  color: #e8f1ff;
}

.nav-menu a:hover {
  color: #66b7ff;
}

.nav-menu a::after {
  background: linear-gradient(90deg, #d7b886, #0570de, #12a37f);
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  background: #fff;
}

@media (max-width: 900px) {
  .nav-menu {
    top: 144px;
    background: #07111f;
    border-bottom: 1px solid rgba(154, 192, 236, 0.2);
  }
}

@media (max-width: 600px) {
  .brand__logo {
    width: 132px;
    height: 48px;
  }

  .navbar__inner {
    min-height: 78px;
  }

  .nav-menu {
    top: 130px;
  }
}

/* Final header polish: blend logo into one unified dark navigation surface */
.topbar {
  background: linear-gradient(90deg, #07111f, #0a1d35 50%, #07111f);
  border-top: 3px solid #c9ad78;
}

.site-header {
  background:
    linear-gradient(90deg, #07111f 0%, #091a30 38%, #0b2749 68%, #07111f 100%);
  border-bottom: 1px solid rgba(201, 173, 120, 0.32);
}

.navbar__inner {
  min-height: 86px;
}

.brand {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand__logo {
  width: 150px;
  height: 64px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.42));
}

.nav-menu {
  gap: 28px;
}

.nav-menu a {
  color: #f4f8ff;
  font-weight: 700;
}

.nav-menu a:hover {
  color: #d7b886;
}

@media (max-width: 600px) {
  .brand__logo {
    width: 126px;
    height: 54px;
  }

  .navbar__inner {
    min-height: 76px;
  }
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .section__intro--left {
    text-align: center;
  }

  .split__visual {
    max-width: 360px;
    margin: 8px 0;
  }

  .hero__content {
    min-height: 0;
    padding: 76px 0 54px;
  }

  .hero__content::before,
  .hero__content::after {
    display: none;
  }

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

  .brand-strip__inner {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero__content {
    padding: 58px 0 40px;
  }

  .section,
  .why {
    padding: 72px 0;
  }
}
