:root {
  --bg: #090c10;
  --panel: #11161d;
  --panel2: #161d26;
  --line: #242d38;
  --text: #f7f9fc;
  --muted: #9da9b8;
  --red: #e31b23;
  --red2: #ff3a42;
  --green: #36d399;
  --amber: #f8c15a;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 12, 16, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  height: 102px;
  width: auto;
}

.privacy-policy {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px;
}

.privacy-policy h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.25;
  color: #111827;
}

.privacy-policy > h2:first-child {
  margin-top: 0;
}

.privacy-policy h3 {
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.4;
  color: #1f2937;
}

.privacy-policy p {
  margin: 0 0 16px;
  line-height: 1.75;
  color: #4b5563;
}

.privacy-policy ul,
.privacy-policy ol {
  margin: 10px 0 20px;
  padding-left: 24px;
  color: #4b5563;
}

.privacy-policy li {
  margin: 7px 0;
  line-height: 1.65;
}

.privacy-policy a {
  color: #e30613;
  text-decoration: none;
  font-weight: 600;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

.privacy-policy hr {
  margin: 38px 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.privacy-contents {
  columns: 2;
  column-gap: 48px;
}

.privacy-contents li {
  break-inside: avoid;
  margin-bottom: 9px;
}

.privacy-contact {
  margin: 22px 0;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #e30613;
  border-radius: 8px;
  background: #f9fafb;
}

.privacy-contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 28px 20px;
  }

  .privacy-policy h2 {
    font-size: 21px;
  }

  .privacy-contents {
    columns: 1;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 650;
  color: #d8dee7;
}
.nav-links a:hover {
  color: white;
}
.nav-cta {
  background: var(--red);
  padding: 11px 18px;
  border-radius: 10px;
  color: white !important;
  box-shadow: 0 10px 30px rgba(227, 27, 35, 0.22);
}
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: white;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 20px;
}
.hero {
  padding: 86px 0 72px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      circle at 72% 20%,
      rgba(227, 27, 35, 0.18),
      transparent 32%
    ),
    radial-gradient(circle at 15% 10%, rgba(75, 97, 128, 0.14), transparent 28%);
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -20% -120px -20%;
  height: 240px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
  transform: rotate(-2deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #dce4ef;
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(227, 27, 35, 0.13);
}
h1 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 22px 0 22px;
  max-width: 850px;
}
.gradient {
  background: linear-gradient(90deg, #fff 0%, #fff 58%, #ff9fa3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 20px;
  color: #b9c3cf;
  max-width: 700px;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 34px rgba(227, 27, 35, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--red2);
}
.btn-secondary {
  border-color: var(--line);
  background: #11161d;
  color: white;
}
.btn-secondary:hover {
  background: #171e27;
}
.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #aeb9c7;
  font-size: 13px;
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.tick {
  color: var(--green);
  font-weight: 900;
}
.hero-visual {
  position: relative;
}
.browser {
  background: linear-gradient(180deg, #171d25, #10151c);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  padding: 11px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.46);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}
.browser-top {
  height: 34px;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 8px;
}
.browser-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d4652;
}
.browser-image {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.browser-image img {
  width: 100%;
  height: auto;
}
.float-card {
  position: absolute;
  background: rgba(17, 22, 29, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 13px;
}
.float-card strong {
  display: block;
  font-size: 20px;
  margin-top: 3px;
}
.fc1 {
  left: -34px;
  bottom: 36px;
}
.fc2 {
  right: -20px;
  top: 38px;
}
.logo-strip {
  padding: 24px 0 58px;
}
.logo-label {
  text-align: center;
  color: #7f8a98;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 23px;
}
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}
.logos img {
  max-height: 44px;
  width: auto;
  margin: auto;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.68;
}
.section {
  padding: 88px 0;
}
.section.light {
  background: #f5f7fa;
  color: #0d1117;
}
.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}
.kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 10px 0 16px;
}
.sub {
  color: var(--muted);
  font-size: 18px;
}
.light .sub {
  color: #5d6672;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: linear-gradient(180deg, var(--panel2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 27px;
  min-height: 240px;
  transition: 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: #374352;
}
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(227, 27, 35, 0.12);
  border: 1px solid rgba(227, 27, 35, 0.24);
  display: grid;
  place-items: center;
  color: #ff656b;
  font-weight: 900;
  margin-bottom: 22px;
}
.card h3 {
  font-size: 21px;
  margin: 0 0 10px;
}
.card p {
  margin: 0 0 18px;
  color: #9da9b8;
  font-size: 15px;
}
.card .link {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-shot {
  background: linear-gradient(145deg, #151b23, #0c1015);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.product-shot img {
  border-radius: 16px;
}
.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}
.feature {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.feature-bullet {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  background: rgba(54, 211, 153, 0.12);
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}
.feature strong {
  display: block;
}
.feature small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}
.light .feature small {
  color: #6c7480;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}
.stat {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #0f141b;
}
.stat strong {
  font-size: 32px;
  display: block;
  letter-spacing: -0.03em;
}
.stat span {
  font-size: 13px;
  color: var(--muted);
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.seo-box {
  border-radius: 20px;
  border: 1px solid #dde2e8;
  background: white;
  padding: 25px;
}
.seo-box h3 {
  margin-top: 0;
  font-size: 20px;
}
.seo-box ul {
  padding-left: 18px;
  color: #56606d;
}
.cta {
  padding: 75px 0;
}
.cta-box {
  background: linear-gradient(135deg, #171d25 0%, #141820 55%, #351116 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: var(--shadow);
}
.cta-box h2 {
  font-size: 38px;
  margin: 0 0 12px;
}
.cta-box p {
  margin: 0;
  color: #aab5c2;
  max-width: 640px;
}
.footer {
  padding: 54px 0 34px;
  border-top: 1px solid var(--line);
  background: #080b0f;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 34px;
}
.footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d6dde7;
}
.footer a {
  display: block;
  color: #8995a5;
  font-size: 14px;
  margin: 9px 0;
}
.footer a:hover {
  color: white;
}
.footer .brand-copy {
  color: #8995a5;
  font-size: 14px;
  max-width: 300px;
  margin-top: 16px;
}
.copyright {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: #687483;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.page-hero {
  padding: 72px 0 48px;
  background: radial-gradient(
    circle at 80% 0%,
    rgba(227, 27, 35, 0.16),
    transparent 28%
  );
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
}
.breadcrumbs {
  font-size: 13px;
  color: #8290a0;
  margin-bottom: 15px;
}
.breadcrumbs a {
  color: #bec8d4;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.mini {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #10151c;
}
.mini b {
  display: block;
  margin-bottom: 4px;
}
.mini span {
  font-size: 13px;
  color: var(--muted);
}
.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #10151c;
  padding: 17px 20px;
}
.faq summary {
  font-weight: 800;
  cursor: pointer;
}
.faq p {
  color: #a8b3c0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
}
.form-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 22px;
  padding: 28px;
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}
.field label {
  font-size: 13px;
  font-weight: 800;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: #0b0f14;
  color: white;
  border: 1px solid #2b3541;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.notice {
  font-size: 12px;
  color: #7f8b9b;
}
.badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(227, 27, 35, 0.12);
  border: 1px solid rgba(227, 27, 35, 0.22);
  color: #ff8387;
  font-size: 11px;
  font-weight: 800;
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
}
.comparison th,
.comparison td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.comparison th {
  color: #dfe5ed;
}
.comparison td {
  color: #9eabba;
}
.comparison td:first-child {
  color: #fff;
  font-weight: 700;
}
.mobile-links {
  display: none;
}
@media (max-width: 920px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .mobile-links.open {
    display: grid;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #0b0f14;
    border-bottom: 1px solid var(--line);
    padding: 20px;
    gap: 13px;
  }
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 58px;
  }
  .hero-visual {
    margin-top: 18px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fc1 {
    left: 8px;
  }
  .fc2 {
    right: 8px;
  }
  .cta-box {
    display: block;
  }
  .cta-box .btn {
    margin-top: 24px;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(var(--max), calc(100% - 26px));
  }
  .cards,
  .mini-grid,
  .seo-grid,
  .stats {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 65px 0;
  }
  .hero {
    padding: 46px 0 50px;
  }
  h1 {
    font-size: 43px;
  }
  .lead {
    font-size: 17px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 30px;
  }
  .browser-image {
    min-height: 220px;
  }
  .float-card {
    display: none;
  }
}

/* VAPTA LIGHT THEME */
:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel2: #f7f8fa;
  --line: #e4e8ee;
  --text: #111318;
  --muted: #66717f;
  --red: #e31b23;
  --red2: #c9151c;
  --green: #179b68;
  --amber: #d99a22;
  --shadow: 0 24px 70px rgba(18, 28, 45, 0.1);
}
body {
  background: #fff;
  color: var(--text);
}
.nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}
.nav-links {
  color: #384250;
}
.nav-links a:hover {
  color: #111318;
}
.menu-btn {
  color: #111318;
  background: #fff;
}
.nav-cta {
  color: #fff !important;
}
.hero {
  background:
    radial-gradient(circle at 72% 20%, rgba(227, 27, 35, 0.1), transparent 32%),
    radial-gradient(
      circle at 15% 10%,
      rgba(235, 238, 243, 0.9),
      transparent 34%
    ),
    #fff;
}
.hero:after {
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.025));
}
.eyebrow {
  border-color: #e2e7ee;
  color: #4a5563;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.gradient {
  background: linear-gradient(90deg, #12151b 0%, #12151b 60%, #e31b23 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  color: #5f6a78;
}
.trust-row {
  color: #6a7482;
}
.btn-secondary {
  border-color: #dce2e9;
  background: #fff;
  color: #171a20;
}
.btn-secondary:hover {
  background: #f5f7f9;
}
.browser {
  background: linear-gradient(180deg, #fff, #f5f7fa);
  border-color: #dce2e9;
  box-shadow: 0 35px 90px rgba(26, 37, 54, 0.14);
}
.browser-top i {
  background: #cbd3dd;
}
.float-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: #e1e6ec;
  box-shadow: 0 18px 45px rgba(18, 28, 45, 0.12);
  color: #17202a;
}
.logo-label {
  color: #8993a1;
}
.logos img {
  filter: grayscale(1);
  opacity: 0.62;
}
.section {
  background: #fff;
}
.section.light {
  background: #f6f7f9;
  color: #111318;
}
.sub {
  color: #687381;
}
.light .sub {
  color: #687381;
}
.card {
  background: linear-gradient(180deg, #fff, #f8f9fb);
  border-color: #e3e8ee;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}
.card:hover {
  border-color: #d0d7df;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}
.card p {
  color: #65717f;
}
.card .link {
  color: #d71920;
}
.card .icon {
  color: #d71920;
  background: rgba(227, 27, 35, 0.08);
  border-color: rgba(227, 27, 35, 0.16);
}
.product-shot {
  background: linear-gradient(145deg, #fff, #f5f7f9);
  border-color: #dfe5eb;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.1);
}
.feature small,
.light .feature small {
  color: #6c7682;
}
.stat {
  border-color: #e1e6ec;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.stat span {
  color: #6d7784;
}
.seo-box {
  border-color: #e1e6ec;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.cta-box {
  background: linear-gradient(135deg, #fff 0%, #fff 52%, #fff1f2 100%);
  border-color: #e0e5eb;
  box-shadow: 0 24px 70px rgba(18, 28, 45, 0.1);
}
.cta-box p {
  color: #677280;
}
.footer {
  background: #f7f8fa;
  border-top: 1px solid #e2e6ec;
}
.footer h4 {
  color: #2a313b;
}
.footer a,
.footer .brand-copy {
  color: #687381;
}
.footer a:hover {
  color: #d71920;
}
.copyright {
  border-top-color: #dde2e8;
  color: #7a8592;
}
.page-hero {
  background:
    radial-gradient(circle at 80% 0%, rgba(227, 27, 35, 0.1), transparent 30%),
    #fff;
}
.breadcrumbs {
  color: #7a8592;
}
.breadcrumbs a {
  color: #47515e;
}
.mini {
  border-color: #e1e6ec;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.mini span {
  color: #6d7784;
}
.faq details {
  border-color: #e1e6ec;
  background: #fff;
}
.faq p {
  color: #65717f;
}
.form-card {
  border-color: #e1e6ec;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}
.field input,
.field textarea,
.field select {
  background: #fff;
  color: #15191f;
  border-color: #dbe1e8;
}
.notice {
  color: #77818e;
}
.badge {
  color: #c9151c;
  background: rgba(227, 27, 35, 0.07);
  border-color: rgba(227, 27, 35, 0.15);
}
.comparison th,
.comparison td {
  border-bottom-color: #e1e6ec;
}
.comparison th {
  color: #242b33;
}
.comparison td {
  color: #66717f;
}
.comparison td:first-child {
  color: #171a20;
}
@media (max-width: 920px) {
  .mobile-links.open {
    background: #fff;
    border-bottom-color: #e1e6ec;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  }
}

/* Expanded content components */
.content-copy {
  max-width: 860px;
}
.content-copy p {
  color: #5f6976;
  font-size: 17px;
}
.content-copy strong {
  color: #1b2027;
}
.rich-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.rich-card {
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
}
.rich-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}
.rich-card p {
  margin: 0;
  color: #65717f;
  font-size: 15px;
}
.rich-card ul {
  margin: 15px 0 0;
  padding-left: 20px;
  color: #5f6976;
}
.rich-card li {
  margin: 7px 0;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 24px 0;
}
.check-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f3;
}
.check-item b {
  color: #171a20;
}
.check-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(227, 27, 35, 0.08);
  color: #d71920;
  font-size: 12px;
  font-weight: 900;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.image-panel {
  background: #f7f8fa;
  border: 1px solid #e3e8ee;
  border-radius: 22px;
  padding: 14px;
  overflow: hidden;
}
.image-panel img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}
.image-panel figcaption {
  padding: 12px 4px 2px;
  color: #66717f;
  font-size: 13px;
}
.keyword-band {
  background: #171a20;
  color: #fff;
  padding: 18px 0;
}
.keyword-band .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.keyword-pill {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  color: #e8ebef;
  background: rgba(255, 255, 255, 0.04);
}
.callout {
  border-left: 4px solid #e31b23;
  background: #fff4f4;
  border-radius: 0 16px 16px 0;
  padding: 22px 24px;
  margin: 26px 0;
}
.callout h3 {
  margin: 0 0 8px;
}
.callout p {
  margin: 0;
  color: #5f6976;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process-step {
  border: 1px solid #e3e8ee;
  border-radius: 18px;
  padding: 22px;
  background: #fff;
}
.process-step .num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e31b23;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 15px;
}
.process-step h3 {
  font-size: 17px;
  margin: 0 0 7px;
}
.process-step p {
  font-size: 14px;
  color: #66717f;
  margin: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  border: 1px solid #e2e7ed;
  border-radius: 22px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}
.price-card.featured {
  border: 2px solid #e31b23;
  position: relative;
}
.price-card h3 {
  margin: 0 0 5px;
}
.price {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 14px 0;
}
.price small {
  font-size: 13px;
  color: #6b7480;
  font-weight: 600;
}
.price-card ul {
  padding-left: 20px;
  color: #5f6976;
}
.price-card li {
  margin: 8px 0;
}
.text-cols {
  columns: 2;
  column-gap: 44px;
}
.text-cols p {
  break-inside: avoid;
  color: #5f6976;
}
@media (max-width: 920px) {
  .rich-grid,
  .image-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .text-cols {
    columns: 1;
  }
}
@media (max-width: 620px) {
  .check-grid,
  .process {
    grid-template-columns: 1fr;
  }
  .image-panel img {
    height: auto;
  }
}

/* Final brand, accreditation, customer and partner additions */
.accreditation-strip {
  background: #fff;
  border-bottom: 1px solid #edf0f3;
  padding: 11px 0;
}
.accreditation-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.accreditation-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #87919d;
}
.accreditation-strip img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: none;
}
.accreditation-strip img.acc-protech {
  height: 38px;
}
.accreditation-strip img.acc-fors {
  height: 35px;
}
.accreditation-strip img.acc-dvsa {
  height: 34px;
}
.customer-cloud {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}
.customer-cloud .customer-logo {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.customer-cloud img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.76;
  transition: 0.2s ease;
}
.customer-cloud .customer-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}
.partner-section {
  background: #f7f8fa;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 30px;
}
.partner-card {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e7ed;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.partner-card img {
  max-height: 54px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}
.digitisation-key {
  background: linear-gradient(180deg, #fff, #fafbfc);
}
.digitisation-key .section-head {
  max-width: 900px;
}
.digitisation-key h2 {
  font-size: clamp(38px, 4.5vw, 58px);
}
.digitisation-key .realtime-line {
  font-size: 22px;
  color: #5c6877;
  margin-top: 8px;
}
.digitisation-key .realtime-line strong {
  color: #e31b23;
}
.accreditation-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.accreditation-feature .acc-card {
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
}
.accreditation-feature img {
  max-height: 78px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
}
.footer-accreditations {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-accreditations img {
  height: 30px;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 5px;
  padding: 3px;
}
.footer-accreditations img:last-child {
  height: 32px;
}
.page-image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.page-image-gallery .gallery-item {
  background: #fff;
  border: 1px solid #e2e7ed;
  border-radius: 20px;
  padding: 14px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
}
.page-image-gallery img {
  max-height: 360px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}
@media (max-width: 1050px) {
  .customer-cloud {
    grid-template-columns: repeat(4, 1fr);
  }
  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 760px) {
  .accreditation-label {
    width: 100%;
    text-align: center;
  }
  .accreditation-inner {
    gap: 15px;
  }
  .accreditation-strip img {
    height: 28px;
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .accreditation-feature,
  .page-image-gallery {
    grid-template-columns: 1fr;
  }
  .customer-cloud {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Modules navigation */
.module-nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.module-nav-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #384250;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 26px 2px;
}
.module-nav-trigger span {
  font-size: 15px;
  color: #8792a0;
}
.module-nav-panel {
  position: absolute;
  top: 66px;
  left: -20px;
  width: 720px;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(18, 28, 45, 0.14);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
  z-index: 100;
}
.module-nav-dropdown:hover .module-nav-panel,
.module-nav-dropdown:focus-within .module-nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.module-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 14px;
}
.module-nav-grid a {
  display: block !important;
  margin: 0 !important;
  padding: 13px 14px;
  border-radius: 11px;
  color: #344054 !important;
}
.module-nav-grid a:hover {
  background: #f7f8fa;
  color: #d71920 !important;
}
.module-nav-grid b {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.module-nav-grid small {
  display: block;
  font-size: 11px;
  line-height: 1.35;
  color: #7b8694;
  font-weight: 500;
}
.mobile-menu-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d71920;
  margin-top: 8px;
}
.module-seo-subtitle {
  font-size: 15px;
  font-weight: 800;
  color: #d71920;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: -8px 0 18px;
}
@media (max-width: 920px) {
  .module-nav-dropdown {
    display: none;
  }
}

/* Accreditation strip placement at bottom of every page */
.accreditation-bottom {
  margin-top: 0;
  border-top: 1px solid #e4e8ee;
  border-bottom: 1px solid #e4e8ee;
  background: #fff;
}
.accreditation-bottom .accreditation-inner {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* Industry trust banner */
.industry-trust-banner {
  padding: 18px 0 70px;
  background: #fff;
}
.industry-trust-banner .wrap {
  border: 1px solid #e4e8ee;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 0%, #fbfcfd 58%, #fff3f4 100%);
  padding: 34px 38px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}
.industry-trust-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
}
.industry-trust-kicker {
  display: inline-block;
  color: #d71920;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.industry-trust-heading h2 {
  font-size: clamp(27px, 3vw, 39px);
  margin: 0 0 8px;
  color: #1b2534;
  letter-spacing: -0.03em;
}
.industry-trust-heading p {
  font-size: 17px;
  color: #647080;
  margin: 0;
  font-weight: 600;
}
.industry-trust-groups {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
}
.industry-trust-group {
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 18px;
  padding: 20px;
}
.industry-trust-label {
  text-align: center;
  color: #687482;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.industry-logo-row {
  display: grid;
  gap: 12px;
  align-items: center;
}
.aviation-logos {
  grid-template-columns: repeat(5, 1fr);
}
.fleet-logos {
  grid-template-columns: repeat(4, 1fr);
}
.industry-logo {
  height: 88px;
  border: 1px solid #edf0f3;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.industry-logo img {
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.industry-logo img[src$="goes.webp"] {
  max-height: 42px;
}
@media (max-width: 980px) {
  .industry-trust-groups {
    grid-template-columns: 1fr;
  }
  .aviation-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .fleet-logos {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 640px) {
  .industry-trust-banner {
    padding-bottom: 48px;
  }
  .industry-trust-banner .wrap {
    padding: 26px 18px;
  }
  .aviation-logos,
  .fleet-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-logo {
    height: 78px;
  }
  .industry-trust-heading p {
    font-size: 15px;
  }
}

/* Modules dropdown navigation */
.modules-menu {
  position: relative;
  display: flex;
  align-items: center;
}
.modules-trigger {
  border: 0;
  background: transparent;
  color: #384250;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modules-trigger:hover,
.modules-menu:focus-within .modules-trigger {
  color: #111318;
}
.modules-arrow {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.18s ease;
}
.modules-menu:hover .modules-arrow,
.modules-menu:focus-within .modules-arrow {
  transform: rotate(180deg);
}
.modules-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e2e7ee;
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.18s ease;
  z-index: 100;
}
.modules-dropdown:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 14px;
}
.modules-menu:hover .modules-dropdown,
.modules-menu:focus-within .modules-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.modules-dropdown a {
  display: block !important;
  margin: 0 !important;
  padding: 11px 12px;
  border-radius: 10px;
  color: #364152 !important;
  font-size: 14px;
  font-weight: 650;
}
.modules-dropdown a:hover {
  background: #f5f7f9;
  color: #d71920 !important;
}
.mobile-modules-label {
  padding-top: 8px;
  margin-top: 5px;
  border-top: 1px solid #e7ebf0;
  color: #d71920;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mobile-module-link {
  padding-left: 8px;
}
@media (max-width: 920px) {
  .modules-menu {
    display: none;
  }
}
