/*
  Mondial-IT Drupal Scan page
  This CSS uses only plain CSS. No framework is needed.
*/
:root {
  --color-ink: #0e2740;
  --color-ink-2: #12314f;
  --color-muted: #516a81;
  --color-line: #dce8f2;
  --color-bg: #f5fbff;
  --color-white: #ffffff;
  --color-blue: #00b5e2;
  --color-blue-dark: #087ba6;
  --color-orange: #f28c28;
  --color-green: #2e9d5a;
  --color-soft-blue: #e8f8fe;
  --shadow-soft: 0 24px 70px rgba(14, 39, 64, 0.13);
  --shadow-card: 0 18px 44px rgba(14, 39, 64, 0.12);
  --radius-large: 34px;
  --radius-card: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

main {
  /* This pushes the footer to the bottom on short pages. */
  flex: 1 0 auto;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: 999px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 232, 242, 0.85);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(14, 39, 64, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand main {
  /* This pushes the footer to the bottom on short pages. */
  flex: 1 0 auto;
}

img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(14, 39, 64, 0.15);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--color-muted);
  font-size: 0.78rem;
}

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

.site-nav a {
  padding: 10px 13px;
  color: var(--color-muted);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-ink);
  background: var(--color-soft-blue);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--color-white);
  background: var(--color-ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--color-ink);
  cursor: pointer;
}

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

.hero {
  overflow: hidden;
  padding: 82px 0 46px;
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 181, 226, 0.14), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(242, 140, 40, 0.16), transparent 24%),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.hero-grid,
.split-grid,
.proof-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  padding: 24px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

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

.hero-lead,
.section-lead,
.section-heading p,
.statement-card p,
.contact-card p {
  color: var(--color-muted);
  font-size: 1.13rem;
}

.hero-lead {
  max-width: 680px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.hero-actions,
.form-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-ink);
  box-shadow: 0 16px 34px rgba(14, 39, 64, 0.22);
}

.button-secondary {
  color: var(--color-ink);
  background: var(--color-white);
  border-color: var(--color-line);
  box-shadow: 0 12px 28px rgba(14, 39, 64, 0.08);
}

.button-ghost {
  color: var(--color-muted);
  background: transparent;
  border-color: var(--color-line);
}

.full-width {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 12px;
  color: var(--color-ink);
  background: var(--color-soft-blue);
  border: 1px solid #cfeff9;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.hero-media img,
.image-card {
  border-radius: var(--radius-large);
}

.hero-media main {
  /* This pushes the footer to the bottom on short pages. */
  flex: 1 0 auto;
}

img {
  width: 120%;
  max-width: none;
  margin-left: -4%;
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 94px 0;
}

.section-tight {
  padding: 58px 0;
}

.muted {
  background: #f5fbff;
}

.statement-card {
  padding: clamp(28px, 6vw, 62px);
  color: var(--color-white);
  background:
    radial-gradient(circle at top right, rgba(0, 181, 226, 0.36), transparent 34%),
    linear-gradient(135deg, var(--color-ink) 0%, #07111e 100%);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.statement-card h2 {
  max-width: 940px;
}

.statement-card p {
  max-width: 900px;
  color: #c8d8e6;
}

.statement-label {
  margin-bottom: 12px;
  color: #8ce7ff !important;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.route-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 28px rgba(14, 39, 64, 0.06);
}

.route-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: 18px;
  font-weight: 900;
}

.route-item p,
.feature-grid p,
.blog-card p,
.proof-cards span,
.check-list,
.small-note {
  color: var(--color-muted);
}

.image-card {
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.dark-card {
  background: #07111e;
}

.reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.scan-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 26px;
  align-items: start;
}

.scan-form,
.scan-result,
.contact-card,
.blog-card,
.feature-grid article,
.proof-cards article {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 38px rgba(14, 39, 64, 0.08);
}

.scan-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
  color: var(--color-ink);
  font-weight: 900;
}

.scan-form label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  color: var(--color-muted);
  border-radius: 14px;
  cursor: pointer;
}

.scan-form label:hover {
  background: #eef8fd;
}

.scan-form input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-blue-dark);
}

.scan-result {
  position: sticky;
  top: 104px;
  padding: clamp(24px, 4vw, 34px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.scan-result.is-open {
  border-color: rgba(0, 181, 226, 0.45);
  box-shadow: 0 20px 56px rgba(14, 39, 64, 0.14);
  transform: translateY(-2px);
}

.result-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  color: var(--color-blue-dark);
  background: var(--color-soft-blue);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scan-result h3 {
  font-size: 1.85rem;
}

.scan-result dl {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.scan-result dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}

.scan-result dt {
  color: var(--color-muted);
}

.scan-result dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 900;
  text-align: right;
}

.small-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.contact-form {
  display: grid;
  gap: 0;
}

.contact-form-embed {
  min-width: 0;
}

.contact-form-embed .hs-form-frame {
  min-height: 220px;
}

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

.feature-grid article {
  padding: 22px;
}

.feature-grid.compact h3 {
  font-size: 1.1rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.17em;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: 999px;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-section {
  color: var(--color-white);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 181, 226, 0.28), transparent 28%),
    linear-gradient(135deg, #07111e 0%, #12314f 100%);
}

.proof-section .eyebrow {
  color: #8ce7ff;
}

.proof-section .section-lead {
  color: #c8d8e6;
}

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

.proof-cards article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.proof-cards strong,
.proof-cards span {
  display: block;
}

.proof-cards strong {
  margin-bottom: 8px;
  color: var(--color-white);
  font-size: 1.15rem;
}

.proof-cards span {
  color: #c8d8e6;
}

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

.blog-card {
  min-height: 250px;
  padding: 26px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  outline: none;
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: var(--color-blue-dark);
  background: var(--color-soft-blue);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  padding-top: 30px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 6vw, 56px);
  background:
    radial-gradient(circle at right, rgba(0, 181, 226, 0.13), transparent 36%),
    var(--color-white);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  /* Auto margin keeps the footer at the bottom when the page content is short. */
  margin-top: auto;
  padding: 36px 0;
  color: #c8d8e6;
  background: #07111e;
}

.footer-grid {
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
}

.footer-brand strong {
  color: var(--color-white);
}

.footer-brand small,
.site-footer p {
  color: #93aabd;
}

.site-footer p {
  margin: 0;
}
.footer-legal {
  display: grid;
  gap: 10px;
}

.footer-legal a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  font-weight: 800;
}


/* Blog page */
.article-hero {
  padding: 82px 0 44px;
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.article-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.article-wrap h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.article-content {
  padding: 50px 0 90px;
}

.article-content h2 {
  margin-top: 46px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.article-content p,
.article-content li {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.article-content .article-cta {
  margin-top: 46px;
  padding: 32px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
}

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

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

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

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

  .hero-grid,
  .split-grid,
  .reverse,
  .proof-grid,
  .scan-shell,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media main {
  /* This pushes the footer to the bottom on short pages. */
  flex: 1 0 auto;
}

img {
    width: 100%;
    margin-left: 0;
  }

  .scan-result {
    position: static;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

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

  .hero,
  .section {
    padding: 62px 0;
  }

  .section-tight {
    padding: 38px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .feature-grid,
  .proof-cards {
    grid-template-columns: 1fr;
  }

  .route-item {
    grid-template-columns: 1fr;
  }

  .scan-result dl div {
    display: block;
  }

  .scan-result dd {
    margin-top: 4px;
    text-align: left;
  }
}

/* Keeps blog navigation visible on pages without the mobile menu button. */
@media (max-width: 980px) {
  .blog-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
}


/* Language switch and active menu state */
.site-nav a.is-active {
  color: var(--color-ink);
  background: var(--color-soft-blue);
}

.site-nav .language-switch {
  min-width: 44px;
  color: var(--color-ink);
  background: #fff4e6;
  border: 1px solid #ffd8a8;
  text-align: center;
}

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

/* FAQ page */
.faq-hero .image-card {
  align-self: center;
}

.faq-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.faq-tools label {
  display: grid;
  gap: 8px;
  color: var(--color-ink);
  font-weight: 900;
}

.faq-tools input[type="search"] {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(14, 39, 64, 0.06);
}

.faq-tool-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.faq-tools .small-note {
  grid-column: 1 / -1;
  margin: 0;
}

.faq-wrap {
  max-width: 980px;
}

.faq-section {
  margin-bottom: 42px;
}

.faq-section h2 {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-line);
}

.faq-item {
  margin-bottom: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(14, 39, 64, 0.05);
  overflow: hidden;
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  color: var(--color-ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  flex: 0 0 auto;
  min-width: 46px;
  padding: 4px 8px;
  color: var(--color-blue-dark);
  background: var(--color-soft-blue);
  border-radius: 999px;
  font-size: 0.78rem;
  text-align: center;
}

.faq-answer {
  padding: 0 20px 20px 78px;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--color-muted);
}

@media (max-width: 1180px) {
  .blog-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .faq-tools {
    grid-template-columns: 1fr;
  }

  .faq-tool-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .blog-grid-four {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    display: block;
  }

  .faq-item summary span {
    display: inline-flex;
    margin: 0 0 10px;
  }

  .faq-answer {
    padding-left: 20px;
  }
}
