/**
 * Brief & simple home layout: top bar, hero with 2 CTAs, short about
 */
/* Top bar - dark blue */
.top-bar {
  background: #0c4a6e;
  color: #fff;
  font-size: 14px;
}
.top-bar-text { margin-right: 6px; }
.top-bar-link {
  color: #fff !important;
  text-decoration: none;
  opacity: 0.95;
}
.top-bar-link:hover { color: #fff !important; opacity: 1; }
.top-bar-sep {
  margin: 0 10px;
  opacity: 0.7;
}
.top-bar-btn {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #fff;
  color: #fff !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: 0.2s;
}
.top-bar-btn:hover {
  background: #fff;
  color: #0c4a6e !important;
}
.top-bar-social a {
  color: #fff !important;
  opacity: 0.9;
  font-size: 16px;
}
.top-bar-social a:hover { opacity: 1; }

/* Main nav white background on home */
body.index-page .header-simple {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
body.index-page .header-simple .sitename { color: #0c4a6e; }
body.index-page .header-simple .navmenu a { color: #334155; }
body.index-page .header-simple .navmenu a:hover,
body.index-page .header-simple .navmenu .active { color: #0ea5e9; }
body.index-page .header-simple .btn-getstarted {
  background: #0c4a6e;
}
body.index-page .header-simple .btn-getstarted:hover {
  background: #075985;
}

/* Simplified hero - dark blue, headline + 2 CTAs */
.hero-simple {
  background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
  color: #fff;
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero-simple .container {
  position: relative;
  z-index: 1;
}
.hero-simple::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.18) 0, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.5) 0, transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.7;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.45);
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}
.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.3);
}
.hero-pill-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 600;
}
.hero-simple .hero-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-simple .hero-subline {
  font-size: 1.15rem;
  color: rgba(226, 232, 240, 0.95);
  margin-bottom: 26px;
  line-height: 1.5;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.hero-meta-item {
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.35));
  border: 1px solid rgba(148, 163, 184, 0.35);
}
.hero-meta-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 4px;
  font-weight: 600;
}
.hero-meta-value {
  display: block;
  font-size: 0.9rem;
  color: #e2e8f0;
}
.hero-simple .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.hero-simple .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s;
  border: none;
}
.hero-simple .cta-btn i {
  font-size: 1.1rem;
}
.hero-simple .cta-btn-primary {
  background: #38bdf8;
  color: #0c4a6e;
}
.hero-simple .cta-btn-primary:hover {
  background: #7dd3fc;
  color: #0c4a6e;
}
.hero-simple .cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.hero-simple .cta-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.hero-support-text {
  margin-top: 14px;
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.9);
}
.hero-support-text a {
  color: #fbbf24;
  font-weight: 500;
  text-decoration: none;
}
.hero-support-text a:hover {
  text-decoration: underline;
}
.hero-card {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: 20px;
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.25), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.65),
    0 0 0 1px rgba(148, 163, 184, 0.35);
  color: #e5e7eb;
}
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.8rem;
  margin-bottom: 16px;
}
.hero-card-badge i {
  color: #22c55e;
}
.hero-simple .hero-visual {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 18px;
  opacity: 0.8;
  color: rgba(226, 232, 240, 0.95);
}
.hero-simple .hero-visual svg {
  width: 100%;
  height: auto;
}
.hero-card-footer p {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.9);
  margin: 0;
}
@media (max-width: 991.98px) {
  .hero-simple {
    padding: 80px 0 90px;
  }
  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 575.98px) {
  .hero-simple {
    padding: 64px 0 70px;
  }
  .hero-meta {
    margin-bottom: 22px;
  }
  .hero-simple .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-simple .cta-btn {
    justify-content: center;
    width: 100%;
  }
}

/* Services - three cards, site colours */
.services-simple {
  background: #f1f5f9;
  padding: 72px 0 80px;
}
.services-simple__heading {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0c4a6e;
  text-align: center;
  margin-bottom: 10px;
}
.services-simple__sub {
  text-align: center;
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.services-simple__card {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(12, 74, 110, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.services-simple__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 74, 110, 0.12);
  border-color: rgba(12, 74, 110, 0.15);
}
.services-simple__card .services-simple__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 74, 110, 0.1);
  color: #0c4a6e;
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.services-simple__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
.services-simple__card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}
.services-simple__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.services-simple__tags li {
  padding: 4px 9px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1d4ed8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.services-simple__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0ea5e9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.services-simple__card:hover .services-simple__link {
  color: #0c4a6e;
  gap: 10px;
}

/* About - white, one heading + two paragraphs */
.about-simple {
  background: #fff;
  padding: 80px 0 100px;
}
.about-simple .about-heading {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #0c4a6e;
  margin-bottom: 28px;
  text-align: center;
}
.about-simple .about-text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #475569;
  line-height: 1.7;
  text-align: left;
}
.about-simple .about-text p { margin-bottom: 1.25rem; }
.about-simple .about-text p:last-child { margin-bottom: 0; }
.about-stats-card {
  padding: 24px 22px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}
.about-stats-item + .about-stats-item {
  padding-top: 14px;
}
.about-stats-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0c4a6e;
  margin-bottom: 4px;
}
.about-stats-value {
  font-size: 0.95rem;
  color: #475569;
}
.about-stats-divider {
  height: 1px;
  width: 100%;
  margin: 14px 0;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.6), transparent);
}

/* Contact CTA - beautiful card section */
.contact-cta-simple {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.contact-cta-simple__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(12, 74, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(12, 74, 110, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #f1f5f9 0%, #f8fafc 50%, #ffffff 100%);
  pointer-events: none;
}

/* Contact CTA - cover variant (more attractive) */
.contact-cta-cover {
  padding: 88px 0 108px;
}
.contact-cta-cover__bg {
  background: 
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(12, 74, 110, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 0% 50%, rgba(12, 74, 110, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 28%, #f8fafc 60%, #ffffff 100%);
}
.contact-cta-cover__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(12, 74, 110, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
}
.contact-cta-cover__card {
  padding: 48px 56px 48px 56px;
  background: linear-gradient(165deg, #ffffff 0%, #fafcff 45%, #f8fafc 100%);
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(12, 74, 110, 0.08),
    0 4px 6px rgba(12, 74, 110, 0.04),
    0 12px 40px rgba(12, 74, 110, 0.08),
    0 32px 80px rgba(12, 74, 110, 0.06);
  border: 1px solid rgba(12, 74, 110, 0.12);
  position: relative;
}
.contact-cta-cover__card:hover {
  box-shadow:
    0 0 0 1px rgba(12, 74, 110, 0.12),
    0 8px 16px rgba(12, 74, 110, 0.06),
    0 24px 56px rgba(12, 74, 110, 0.1),
    0 48px 100px rgba(12, 74, 110, 0.08);
}
.contact-cta-cover__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, #0ea5e9 0%, #0c4a6e 50%, #0369a1 100%);
  opacity: 0.95;
}
.contact-cta-cover__card::before {
  display: none;
}
.contact-cta-cover__icon-wrap::after {
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, rgba(12, 74, 110, 0.08) 50%, transparent 70%);
}
.contact-cta-cover__icon {
  width: 72px;
  height: 72px;
  font-size: 1.75rem;
  border-radius: 22px;
  box-shadow:
    0 6px 20px rgba(12, 74, 110, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.contact-cta-cover__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #0369a1;
  margin-bottom: 10px;
}
.contact-cta-cover__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.contact-cta-cover__sub {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}
.contact-cta-cover__btn {
  padding: 18px 32px;
  font-size: 1.05rem;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(12, 74, 110, 0.25);
}
.contact-cta-cover__btn:hover {
  box-shadow: 0 10px 28px rgba(12, 74, 110, 0.4);
}
.contact-cta-cover__link {
  padding: 16px 26px;
  border-radius: 16px;
  font-size: 1rem;
}
.contact-cta-simple .container {
  position: relative;
  z-index: 1;
}
.contact-cta-simple__card {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
  padding: 40px 48px 40px 48px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(12, 74, 110, 0.06),
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 8px 32px rgba(12, 74, 110, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(12, 74, 110, 0.1);
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
}
.contact-cta-simple__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #0c4a6e 20%, #0c4a6e 80%, transparent 100%);
  border-radius: 24px 24px 0 0;
  opacity: 0.6;
}
.contact-cta-simple__card:hover {
  box-shadow:
    0 0 0 1px rgba(12, 74, 110, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.03),
    0 16px 48px rgba(12, 74, 110, 0.12),
    0 32px 80px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
  border-color: rgba(12, 74, 110, 0.14);
}
.contact-cta-simple__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.contact-cta-simple__left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}
.contact-cta-simple__icon-wrap {
  margin-bottom: 0;
  position: relative;
  flex-shrink: 0;
}
.contact-cta-simple__icon-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  background: radial-gradient(circle, rgba(12, 74, 110, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.contact-cta-simple__icon {
  width: 64px;
  height: 64px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
  color: #fff;
  font-size: 1.6rem;
  border-radius: 20px;
  box-shadow:
    0 4px 14px rgba(12, 74, 110, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}
.contact-cta-simple__copy {
  min-width: 0;
}
.contact-cta-simple__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0c4a6e;
  margin-bottom: 8px;
  opacity: 0.95;
}
.contact-cta-simple__heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.45;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.contact-cta-simple__divider {
  height: 1px;
  width: 80px;
  margin: 0 auto 32px;
  background: linear-gradient(90deg, transparent, rgba(12, 74, 110, 0.25), transparent);
  border-radius: 1px;
}
.contact-cta-simple__divider--vertical {
  width: 1px;
  height: 56px;
  margin: 0;
  flex-shrink: 0;
  background: linear-gradient(180deg, transparent, rgba(12, 74, 110, 0.25), transparent);
}
.contact-cta-simple__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
}
.contact-cta-simple__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(165deg, #0c4a6e 0%, #075985 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow:
    0 2px 8px rgba(12, 74, 110, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.contact-cta-simple__btn i {
  font-size: 1.1rem;
}
.contact-cta-simple__btn:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(12, 74, 110, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(165deg, #075985 0%, #0c4a6e 100%);
}
.contact-cta-simple__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  color: #0ea5e9 !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  transition: all 0.3s ease;
}
.contact-cta-simple__link i {
  font-size: 1.05rem;
  opacity: 0.9;
}
.contact-cta-simple__link:hover {
  color: #0284c7 !important;
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}
@media (max-width: 991.98px) {
  .contact-cta-simple__row {
    flex-direction: column;
    text-align: center;
  }
  .contact-cta-simple__left {
    flex-direction: column;
    text-align: center;
  }
  .contact-cta-simple__divider--vertical {
    width: 80px;
    height: 1px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, transparent, rgba(12, 74, 110, 0.25), transparent);
  }
  .contact-cta-simple__actions {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .contact-cta-simple {
    padding: 56px 0 72px;
  }
  .contact-cta-cover {
    padding: 64px 0 80px;
  }
  .contact-cta-simple__card {
    padding: 40px 24px 44px;
    border-radius: 20px;
  }
  .contact-cta-cover__card {
    padding: 44px 24px 48px;
    border-radius: 24px;
  }
  .contact-cta-cover__accent {
    border-radius: 24px 24px 0 0;
  }
  .contact-cta-simple__card::before {
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-cta-simple__heading {
    font-size: 1.22rem;
  }
  .contact-cta-cover__heading {
    font-size: 1.28rem;
  }
  .contact-cta-cover__sub {
    font-size: 0.9rem;
  }
  .contact-cta-simple__actions {
    flex-direction: column;
    width: 100%;
  }
  .contact-cta-simple__btn,
  .contact-cta-simple__link {
    width: 100%;
    justify-content: center;
  }
}
