@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #06111f;
  --navy: #06162c;
  --night: #030813;
  --blue: #0867f7;
  --cyan: #17c3dd;
  --teal: #00a9a7;
  --gold: #d7a14a;
  --paper: #f6f9fc;
  --white: #ffffff;
  --muted: #637083;
  --line: #dbe4ef;
  --shadow: 0 28px 80px rgba(3, 8, 19, 0.24);
}

@font-face {
  font-family: "Rockwell BOT";
  src: url("assets/fonts/rockwell.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rockwell BOT";
  src: url("assets/fonts/rockwell-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(3, 8, 19, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
}

.brand-logo,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.brand-copy,
.footer-brand span {
  display: grid;
  min-width: 0;
}

.brand strong,
.footer-brand strong {
  display: block;
  white-space: nowrap;
  color: #00bfff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.05;
  font-weight: 900;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 5px;
  padding-right: 4px;
  color: currentColor;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
  opacity: 0.82;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav .nav-cta {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
}

.nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.page-hero {
  position: relative;
  min-height: 430px;
  padding: 150px 0 74px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 191, 255, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(3, 8, 19, 0.96), rgba(8, 38, 74, 0.92));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #b9d6ee;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: #d9f3ff;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 4.2vw, 52px);
}

.page-hero p {
  max-width: 780px;
  color: #d6e2f2;
  font-size: 18px;
  line-height: 1.65;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 18%, rgba(23, 195, 221, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(3, 8, 19, 0.96) 0%, rgba(6, 22, 44, 0.88) 43%, rgba(6, 22, 44, 0.36) 100%),
    linear-gradient(180deg, rgba(3, 8, 19, 0.2), rgba(3, 8, 19, 0.86));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 56px;
  align-items: end;
  min-height: 820px;
  padding: 160px 0 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #cceaff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: none;
}

.eyebrow.dark {
  color: var(--blue);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 750;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
}

.hero-lede {
  max-width: 780px;
  color: #d6e2f2;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  box-shadow: 0 18px 46px rgba(8, 103, 247, 0.36);
}

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

.button.full {
  width: 100%;
}

.button.dark {
  background: var(--night);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: 0 16px 36px rgba(6, 17, 31, 0.08);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-searchline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-searchline span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #d9e8fb;
  font-size: 13px;
  font-weight: 800;
}

.quote-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-label {
  margin-bottom: 14px;
  color: #cceaff;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.panel-phone,
.panel-mail {
  display: block;
  font-weight: 700;
}

.panel-phone {
  margin-bottom: 8px;
  font-size: 32px;
}

.panel-mail {
  color: #b9eafa;
}

.panel-divider {
  height: 1px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.22);
}

.quote-panel p:last-child {
  margin-bottom: 0;
  color: #d4deeb;
  line-height: 1.6;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(3, 8, 19, 0.14);
  border-top: 4px solid #00bfff;
}

.trust-grid div {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 8px;
  font-size: 17px;
}

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

.section {
  padding: 88px 0;
}

.intro,
.solutions,
.process,
.team,
.blog {
  background: var(--white);
}

.intro-grid,
.solutions-grid,
.blog-grid,
.faq-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 68px;
  align-items: start;
}

.intro-copy p,
.section-heading p,
.solution-copy p,
.blog-grid > div > p,
.cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading.wide {
  max-width: 880px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: start;
}

.content-panel {
  display: grid;
  gap: 30px;
}

.content-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.content-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3vw, 40px);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-grid li {
  padding: 16px 16px 16px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #314056;
  font-weight: 800;
  position: relative;
}

.check-grid li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00bfff;
  box-shadow: 0 0 0 5px rgba(0, 191, 255, 0.12);
}

.side-card {
  position: sticky;
  top: 100px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(6, 17, 31, 0.08);
}

.side-card h3 {
  font-size: 24px;
}

.side-card p,
.side-card li {
  color: var(--muted);
  line-height: 1.65;
}

.side-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding-left: 18px;
}

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

.related-grid a,
.blog-card {
  display: block;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 14px 34px rgba(6, 17, 31, 0.06);
}

.blog-card {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 191, 255, 0.42);
  box-shadow: 0 20px 46px rgba(6, 17, 31, 0.11);
}

.blog-card-media {
  overflow: hidden;
  min-height: 0;
  padding: 0;
}

.blog-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #dbe8f2;
}

.blog-card-media small,
.blog-card-media h3,
.blog-card-media p,
.blog-card-media span {
  margin-left: 22px;
  margin-right: 22px;
}

.blog-card-media small {
  margin-top: 22px;
}

.blog-card-media span {
  display: inline-flex;
  margin-top: 16px;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 900;
}

.related-grid strong,
.blog-card h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.related-grid span,
.blog-card p {
  color: var(--muted);
  line-height: 1.6;
}

.works {
  background: linear-gradient(180deg, #ffffff, #f4f9fd);
}

.work-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.work-card,
.work-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 17, 31, 0.08);
}

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef5fa;
}

.work-card-contain img {
  object-fit: contain;
  object-position: center;
}

.work-card figcaption,
.work-video-card {
  padding: 22px;
}

.work-card span,
.video-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.work-card.warning span {
  background: #fff0e6;
  color: #a9430d;
}

.work-card.success span,
.video-badge {
  background: #e7f8ff;
  color: #006b9a;
}

.work-card strong,
.work-video-card h3 {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.work-video-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(0, 191, 255, 0.08), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.work-video-card p {
  color: var(--muted);
  line-height: 1.7;
}

.comparison-table {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.comparison-table strong {
  color: var(--ink);
}

.comparison-table span {
  color: var(--muted);
  line-height: 1.6;
}

.mini-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.mini-work-grid figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 17, 31, 0.06);
}

.mini-work-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mini-work-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.services {
  background:
    linear-gradient(180deg, var(--paper), #ffffff 42%, var(--paper));
}

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

.service-card {
  min-height: 348px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(6, 17, 31, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #bed3eb;
  box-shadow: 0 24px 56px rgba(6, 17, 31, 0.12);
}

.service-card.featured {
  grid-column: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(23, 195, 221, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy), #0d2e59);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #eaf4ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.featured .service-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #bdefff;
}

.service-card p {
  color: var(--muted);
  line-height: 1.68;
}

.service-card.featured p,
.service-card.featured li {
  color: #d6e2f2;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: #34445b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.learn-link {
  display: inline-flex;
  margin-top: 20px;
  color: #0077c8;
  font-weight: 900;
}

.featured .learn-link {
  color: #bdefff;
}

.catalog {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 191, 255, 0.26), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(215, 161, 74, 0.2), transparent 24%),
    linear-gradient(135deg, #031126, #082045 54%, #06111f);
}

.catalog .eyebrow,
.catalog h2,
.catalog .section-heading p {
  color: inherit;
}

.catalog .section-heading p {
  color: #c8d8eb;
}

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

.catalog-grid article {
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.catalog-grid span {
  display: block;
  min-height: 42px;
  margin-bottom: 18px;
  color: #77e6ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
}

.catalog-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-grid li {
  position: relative;
  padding-left: 16px;
  color: #e5eef8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.catalog-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.solutions {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bundle-stack {
  display: grid;
  gap: 14px;
}

.bundle-stack article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
  background: #f0f7ff;
  border: 1px solid #d8e9ff;
}

.bundle-stack span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.bundle-stack p {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.bundle-price {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 8px;
  background: #ffffff;
  color: #006b9a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.bundle-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.industries {
  background: var(--navy);
  color: var(--white);
}

.help-topics {
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 191, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff, #edf7ff);
}

.clients-preview {
  background: var(--white);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.client-logo-grid img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(6, 17, 31, 0.05);
  filter: saturate(0.96);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.testimonial-grid article {
  padding: 26px;
  border: 1px solid #d6e8f6;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fcff, #ffffff);
  box-shadow: 0 14px 34px rgba(6, 17, 31, 0.06);
}

.testimonial-grid p {
  color: #314056;
  line-height: 1.7;
}

.testimonial-grid strong {
  display: block;
  color: var(--blue);
}

.testimonial-grid small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.help-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid #d3e7f7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(6, 17, 31, 0.08);
}

.help-grid span,
.post-grid small {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(0, 191, 255, 0.12);
  color: #0268a3;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.help-grid p,
.post-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.help-library {
  display: grid;
  gap: 14px;
}

.help-topic {
  border: 1px solid #d3e7f7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(6, 17, 31, 0.07);
  overflow: hidden;
}

.help-topic summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
}

.help-topic summary::-webkit-details-marker {
  display: none;
}

.help-topic summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 191, 255, 0.12);
  color: #0268a3;
  font-size: 20px;
  font-weight: 900;
}

.help-topic[open] summary {
  border-bottom: 1px solid #d3e7f7;
  background: #f8fbff;
}

.help-topic[open] summary::after {
  content: "-";
  background: var(--navy);
  color: var(--white);
}

.topic-number {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.help-topic summary strong {
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.25;
}

.topic-content {
  padding: 28px clamp(24px, 5vw, 72px) 34px;
}

.topic-content p {
  max-width: 1040px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.topic-checklist {
  max-width: 1040px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #d3e7f7;
  border-radius: 8px;
  background: #f8fbff;
}

.topic-checklist h4 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 16px;
}

.topic-checklist ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-checklist li {
  position: relative;
  padding-left: 22px;
  color: #314056;
  font-weight: 700;
  line-height: 1.55;
}

.topic-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.blog {
  border-top: 1px solid var(--line);
}

.post-grid {
  display: grid;
  gap: 16px;
}

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

.blog-card small {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(0, 191, 255, 0.12);
  color: #0268a3;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
}

.article-body {
  max-width: 840px;
}

.article-feature {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  display: block;
  margin-bottom: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(6, 17, 31, 0.09);
}

.article-body h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.14;
}

.article-body p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
  margin-bottom: 18px;
}

.article-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 20px 0 26px;
  list-style: none;
}

.article-checklist li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 15px 16px;
  color: #27364a;
  font-weight: 800;
  line-height: 1.45;
}

.article-aside {
  position: sticky;
  top: 112px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
  box-shadow: 0 16px 38px rgba(6, 17, 31, 0.07);
}

.article-aside h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
}

.article-aside p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.post-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 14px 34px rgba(6, 17, 31, 0.06);
}

.post-grid h3 {
  font-size: 20px;
}

.post-grid a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--blue);
  font-weight: 900;
}

.team {
  border-top: 1px solid var(--line);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.team-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.96)),
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.16), transparent 42%);
  box-shadow: 0 16px 38px rgba(6, 17, 31, 0.06);
}

.team-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--night);
  color: var(--blue);
  font-weight: 900;
}

.team-grid h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
}

.team-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.industries .eyebrow.dark {
  color: #9eeaff;
}

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

.industry-grid div {
  min-height: 150px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.industry-grid strong,
.industry-grid span {
  display: block;
}

.industry-grid strong {
  margin-bottom: 10px;
  font-size: 19px;
}

.industry-grid span {
  color: #c9d7e8;
  line-height: 1.6;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline div {
  padding: 30px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--white);
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq {
  background: var(--paper);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 17, 31, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.cta {
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(23, 195, 221, 0.28), transparent 34%),
    linear-gradient(135deg, var(--night), #0a2a52 58%, #073c65);
}

.cta h2 {
  max-width: 720px;
}

.cta p {
  color: #dce9f7;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-lines a {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.email-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 24px;
}

.email-directory a {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.email-directory strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.email-directory span {
  color: #bfe6ff;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

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

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 54px;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-methods a,
.contact-methods div {
  display: block;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 17, 31, 0.05);
}

.contact-methods strong,
.contact-methods span {
  display: block;
}

.contact-methods strong {
  margin-bottom: 6px;
}

.contact-methods span {
  color: var(--muted);
  line-height: 1.55;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  background: #20c25e;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(32, 194, 94, 0.34);
}

.footer {
  padding: 30px 0;
  background: #030813;
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-info {
  display: grid;
  gap: 6px;
  max-width: 620px;
  color: #9eafc6;
  line-height: 1.5;
  text-align: right;
}

.copyright {
  margin: 24px auto 0;
  padding-top: 18px;
  width: min(100% - 40px, 1180px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #72839a;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.developer-credit {
  margin: 8px auto 0;
  width: min(100% - 40px, 1180px);
  color: #607089;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.developer-credit a {
  color: #9eafc6;
  text-decoration: none;
}

.developer-credit a:hover {
  color: #00bfff;
}

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

  .brand {
    min-width: 282px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 17px;
  }

  .nav {
    gap: 11px;
    font-size: 11px;
  }

  .nav .nav-cta {
    padding: 0 12px;
  }
}

@media (max-width: 1180px) {
  .nav {
    gap: 14px;
  }

  .brand {
    min-width: 292px;
  }

  .brand strong {
    font-size: 17px;
  }
}

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

  .nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(3, 8, 19, 0.16);
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .site-header:not([data-header]) {
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    box-shadow: 0 14px 40px rgba(3, 8, 19, 0.1);
  }

  .site-header:not([data-header]) .nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .intro-grid,
  .solutions-grid,
  .blog-grid,
  .faq-grid,
  .cta-grid,
  .detail-grid,
  .article-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
    padding: 138px 0 70px;
  }

  .quote-panel {
    max-width: 540px;
  }

  .trust-grid,
  .service-grid,
  .catalog-grid,
  .industry-grid,
  .help-grid,
  .client-logo-grid,
  .timeline,
  .related-grid,
  .work-media-grid,
  .blog-list,
  .check-grid,
  .mini-work-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .side-card {
    position: static;
  }

  .article-aside {
    position: static;
  }

  .service-card.featured {
    grid-column: span 2;
  }

  .timeline div:nth-child(2) {
    border-right: 0;
  }
}

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

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

  .brand,
  .footer-brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo,
  .footer-brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong,
  .footer-brand strong {
    font-size: 14px;
  }

  .brand small,
  .footer-brand small {
    font-size: 9px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .trust-grid,
  .service-grid,
  .catalog-grid,
  .industry-grid,
  .help-grid,
  .client-logo-grid,
  .related-grid,
  .work-media-grid,
  .blog-list,
  .check-grid,
  .mini-work-grid,
  .team-grid,
  .email-directory,
  .testimonial-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .comparison-table > div {
    grid-template-columns: 1fr;
  }

  .article-checklist {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .help-topic {
    border-radius: 8px;
  }

  .help-topic summary {
    grid-template-columns: 44px 1fr 28px;
    gap: 12px;
    padding: 18px;
  }

  .help-topic summary strong {
    grid-column: 2 / 3;
    font-size: 18px;
  }

  .topic-number {
    width: 44px;
    height: 44px;
  }

  .topic-content {
    padding: 22px;
  }

  .topic-content p {
    font-size: 15px;
  }

  .trust-grid div,
  .timeline div,
  .timeline div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div,
  .timeline div {
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child,
  .timeline div:last-child {
    border-bottom: 0;
  }

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

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-info {
    text-align: left;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
  }
}
