@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --blue: #0ba4e0;
  --blue-light: #28b7f4;
  --green: #8bc53f;
  --navy: #0b1f32;
  --graphite: #0e1726;
  --slate: #122035;
  --muted: #7b8794;
  --card: #ffffff;
  --shadow: 0 12px 36px rgba(12, 31, 50, 0.12);
  --radius: 14px;
  --page-pad-x: clamp(16px, 2.4vw, 20px);
  --section-pad-y: clamp(26px, 4.2vw, 48px);
  --section-pad-y-compact: clamp(14px, 2.8vw, 24px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(11, 164, 224, 0.08);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--blue) rgba(11, 164, 224, 0.08);
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 12% 12%, rgba(11, 164, 224, 0.12), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(139, 197, 63, 0.12), transparent 30%),
    #f6f9fc;
  color: #0b1f32;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

/* Page preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: grid;
  place-items: center;
  z-index: 1000;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 6px solid rgba(11, 31, 50, 0.12);
  border-top-color: var(--blue);
  border-right-color: var(--green);
  animation: preloader-spin 0.9s linear infinite;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-spinner {
    animation: none;
  }
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: linear-gradient(135deg, rgba(11, 164, 224, 0.16), rgba(139, 197, 63, 0.18));
  color: #0b1f32;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 20px;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.topbar a {
  color: #0b1f32;
  font-weight: inherit;
}

.topbar-contact {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.topbar-sep {
  opacity: 0.75;
}

@media (max-width: 720px) {
  .topbar {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
  }

  .topbar-inner>span:first-child {
    text-align: center;
    width: 100%;
  }

  .topbar-inner>span:last-child {
    width: 100%;
    text-align: center;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .topbar-inner>span:last-child,
  .topbar-inner>span:last-child a {
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .topbar-inner>.topbar-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  .topbar-inner>.topbar-contact .topbar-sep {
    display: none;
  }

  .topbar-inner>.topbar-contact .topbar-contact-item {
    display: block;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand img {
  width: 170px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  padding: 10px 9px;
  border-radius: 12px;
  color: #0b1f32;
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  font-weight: 800;
}

.nav-links a.active {
  color: #0b1f32;
  /* background: rgba(11, 164, 224, 0.16); */
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 4px;
}

.nav-links a.cta-outline:hover {
  background: #ffffff;
  border-color: rgba(11, 31, 50, 0.16);
}

.cta-primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  /* box-shadow: 0 10px 30px rgba(11, 164, 224, 0.35); */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 16px 36px rgba(139, 197, 63, 0.35); */
}

.cta-outline {
  border: 1px solid rgba(11, 31, 50, 0.16);
  background: #ffffff;
  color: #0b1f32;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cta-outline:hover {
  background: rgba(11, 164, 224, 0.08);
  border-color: rgba(11, 164, 224, 0.35);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-y) var(--page-pad-x);
  /* background: linear-gradient(135deg, #f4f8ff 0%, #edf3fa 45%, #e8f1fb 100%); */
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(11, 164, 224, 0.28), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}

.hero::before {
  top: -80px;
  left: -60px;
}

.hero::after {
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(139, 197, 63, 0.25), transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 56px;
  z-index: 1;
  padding: 0 12px;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  max-height: 560px;
  border-radius: 24px;
  /* overflow: hidden; */
  /* box-shadow: 0 18px 42px rgba(11, 31, 50, 0.18); */
}

/* Updated image grid for a higher-end look */
.hero-image-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  /* background: rgba(255, 255, 255, 0.1); */
}

.hero-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  opacity: 0.9;
}

.hero-image-grid img:hover {
  transform: translateY(-5px) scale(1.03);
  opacity: 1;
  /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25); */
  z-index: 10;
  position: relative;
}

/* Staggered animation for images */
.hero-image-grid img:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-image-grid img:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-image-grid img:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-image-grid img:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.orbit {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 28px;
}

.glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 164, 224, 0.55), transparent 65%);
  filter: blur(20px);
  mix-blend-mode: screen;
}

.glow.g2 {
  bottom: 14%;
  right: 12%;
  background: radial-gradient(circle, rgba(139, 197, 63, 0.55), transparent 65%);
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 16px;
  line-height: 1.1;
  color: #0b1f32;
}

.accent {
  color: var(--green);
}

.hero-text p {
  margin: 0 0 22px;
  color: #3b4b66;
  max-width: 640px;
  font-size: 0.8rem;
}

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

.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.badge {
  background: rgba(11, 164, 224, 0.08);
  border: 1px solid rgba(11, 164, 224, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 600;
  color: #0b1f32;
}

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

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

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: center;
}

.why-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  /* border: 1px solid rgba(12, 31, 50, 0.08); */
  /* box-shadow: 0 22px 56px rgba(11, 31, 50, 0.12); */
}

.why-media {
  position: relative;
  min-height: 420px;
  background: #0b1f32;
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 31, 50, 0.35), rgba(11, 31, 50, 0));
}

.why-content {
  padding: clamp(18px, 3vw, 30px);
  display: grid;
  gap: 14px;
}

.why-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #0b1f32;
}

.why-kicker i {
  color: var(--green);
}

.why-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding-bottom: 15px;
}

.why-left .why-kicker {
  justify-content: flex-start;
}

.why-left h2,
.why-left p {
  text-align: left;
  margin: 0px !important;
}

.why-left h2 {
  margin: 0;
}

.why-left p {
  margin: 0;
}

.why-left p:not(.why-kicker) {
  color: #465a76;
  font-size: 0.98rem;
  max-width: 62ch;
}

.why-card h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.why-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(12, 31, 50, 0.08);
  background: linear-gradient(150deg, rgba(11, 164, 224, 0.1), rgba(255, 255, 255, 0.9));
}

.why-feature i {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(11, 164, 224, 0.18), rgba(139, 197, 63, 0.18));
  border: 1px solid rgba(12, 31, 50, 0.08);
  color: #0b1f32;
}

.why-feature p {
  margin: 0;
  color: #3b4b66;
  font-weight: 600;
}

@media (max-width: 960px) {
  .why-card {
    grid-template-columns: 1fr;
  }

  .why-media {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .why-features {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid rgba(12, 31, 50, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #0b1f32;
}

.card p {
  color: #3b4b66;
  margin: 0;
}

.section {
  padding: var(--section-pad-y) var(--page-pad-x);
}

.section-kicker {
  max-width: 1200px;
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.22px;
  color: #3b4b66;
  background: rgba(11, 164, 224, 0.1);
  border: 1px solid rgba(11, 164, 224, 0.18);
  padding: 6px 12px;
  border-radius: 999px;
}

.section h2 {
  max-width: 1200px;
  margin: 0 auto clamp(12px, 2.2vw, 18px);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.section p.lead {
  max-width: 1200px;
  margin: 0 auto clamp(12px, 2.4vw, 20px);
  color: #465a76;
  font-size: 0.98rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 164, 224, 0.14);
  color: #0b1f32;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
}

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

.industry-card {
  background: var(--card);
  border: 1px solid rgba(12, 31, 50, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 160px;
  box-shadow: 0 12px 26px rgba(11, 31, 50, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(11, 164, 224, 0.18), rgba(139, 197, 63, 0.16));
  border: 1px solid rgba(12, 31, 50, 0.08);
  margin-bottom: 0;
}

.industry-icon i {
  font-size: 18px;
  color: #0b1f32;
}

.industry-card h4 {
  margin: 0;
  color: #0b1f32;
}

.industry-card p {
  margin: 0;
  color: #465a76;
}

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

@media (max-width: 520px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.list-compact {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #415066;
}

.list-compact li {
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
}

.list-compact .mini-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b1f32;
  font-weight: 700;
  font-size: 0.7rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  margin-top: 6px;
  flex-shrink: 0;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.stat {
  background: #eef3fb;
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(12, 31, 50, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: #0b1f32;
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.process-step {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 31, 50, 0.08);
  background: linear-gradient(150deg, rgba(11, 164, 224, 0.14), rgba(255, 255, 255, 0.7));
}

.process-step strong {
  display: block;
  margin-bottom: 6px;
}

.form-card {
  background: #ffffff;
  border: 1px solid rgba(12, 31, 50, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  color: #e8f1ff;
}

input,
select,
textarea {
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(12, 31, 50, 0.14);
  background: #f9fbfe;
  color: #0b1f32;
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(11, 164, 224, 0.35);
  border-color: transparent;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.status {
  display: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
}

.status.show {
  display: block;
}

.status.success {
  background: rgba(139, 197, 63, 0.16);
  color: #d8f6c2;
  border: 1px solid rgba(139, 197, 63, 0.4);
}

.status.error {
  background: rgba(255, 99, 99, 0.12);
  color: #ffd9d9;
  border: 1px solid rgba(255, 99, 99, 0.4);
}

.footer {
  margin-top: auto;
  background: #eef2f7;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: var(--section-pad-y) var(--page-pad-x);
}

.footer-inner {
  max-width: 1200px;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  color: #0b1f32;
}

.footer small {
  color: #4f5d73;
}

.social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social a {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8f1ff;
}

.footer-logo img {
  width: 170px;
  height: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  margin: 0;
  color: #33435a;
  padding: 0 24px;
  max-width: 820px;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-social i {
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 10px 24px rgba(11, 164, 224, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11, 164, 224, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
  margin-top: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: -24px;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.side-social {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0px;
  z-index: 110;
}

.side-social-item {
  width: 46px;
  height: 46px;
  /* border-radius: 10px; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(12, 31, 50, 0.12);
  box-shadow: 0 14px 30px rgba(11, 31, 50, 0.12);
  color: #0b1f32;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.side-social-item i {
  font-size: 18px;
  line-height: 1;
}

.side-social-item:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(11, 164, 224, 0.18), rgba(139, 197, 63, 0.18));
  border-color: rgba(11, 164, 224, 0.35);
  /* box-shadow: 0 18px 36px rgba(11, 164, 224, 0.18); */
}

@media (max-width: 720px) {
  .side-social {
    right: 12px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
  }

  .side-social-item {
    width: 42px;
    height: 42px;
  }

  .side-social-item i {
    font-size: 17px;
  }
}

.scroll-top {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  /* box-shadow: 0 12px 28px rgba(11, 164, 224, 0.35); */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 120;
}

.scroll-top.show {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scroll-top:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 16px 32px rgba(11, 164, 224, 0.42); */
}

.highlight {
  color: #0ba4e0;
  font-weight: 600;
}

.cta-banner {
  margin: var(--section-pad-y) 0 0;
  max-width: none;
  width: 100%;
  min-height: clamp(220px, 24vw, 340px);
  padding: var(--section-pad-y) var(--page-pad-x);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, rgba(11, 31, 50, 0.78), rgba(11, 164, 224, 0.38), rgba(139, 197, 63, 0.26)),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid rgba(12, 31, 50, 0.12);
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: 0 18px 48px rgba(11, 31, 50, 0.18);
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 15%, rgba(11, 164, 224, 0.22), transparent 55%),
    radial-gradient(circle at 92% 30%, rgba(139, 197, 63, 0.18), transparent 56%),
    linear-gradient(135deg, rgba(11, 31, 50, 0.62), rgba(11, 31, 50, 0.42));
  z-index: 0;
}

.cta-banner>* {
  position: relative;
  z-index: 1;
}

.cta-banner h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  line-height: 1.15;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.cta-lead {
  margin: 0;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.cta-address {
  margin: 0;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.cta-address strong {
  color: #ffffff;
}

.cta-address a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-banner .hero-actions {
  justify-content: center;
  margin: 6px 0 0;
}

.cta-banner .cta-outline {
  background: rgba(255, 255, 255, 0.92);
}

.cta-banner .cta-outline:hover {
  background: rgba(255, 255, 255, 1);
}

@media (max-width: 860px) {
  .cta-banner {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-banner {
    background-attachment: scroll;
  }
}

.role-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.role {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 31, 50, 0.08);
  background: #ffffff;
}

.role strong {
  display: block;
  margin-bottom: 6px;
  color: #0b1f32;
}

.trust-bar {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  align-items: center;
}

.logo-pill {
  background: rgba(11, 164, 224, 0.08);
  border: 1px solid rgba(11, 164, 224, 0.16);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
  color: #0b1f32;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.marquee {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(12, 31, 50, 0.08);
  background: linear-gradient(135deg, rgba(11, 164, 224, 0.06), rgba(139, 197, 63, 0.05));
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.marquee-reverse .marquee-track {
  animation-direction: reverse;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}

.marquee-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(12, 31, 50, 0.08);
  color: #0b1f32;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(11, 31, 50, 0.06);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  background: var(--card);
  border-radius: var(--radius);
  padding: 6px;
  border: 1px solid rgba(12, 31, 50, 0.08);
  box-shadow: 0 12px 28px rgba(11, 31, 50, 0.08);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(11, 164, 224, 0.16), rgba(139, 197, 63, 0.16));
  border: 1px solid rgba(12, 31, 50, 0.08);
  display: grid;
  place-items: center;
  color: #8bc53f;
  font-weight: 800;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: url(#icon-gradient);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.deliver-slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.deliver-track {
  display: flex;
  width: 100%;
  transition: transform 0.8s ease;
  will-change: transform;
}

.deliver-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 14px;
}

.deliver-slider .feature-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.deliver-slider .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.deliver-slider .feature-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.deliver-slider .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #3498db;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  margin: -25px auto 15px;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.deliver-slider .feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #2c3e50;
  padding: 0 15px;
}

.deliver-slider .feature-desc {
  font-size: 0.9rem;
  color: #555;
  padding: 0 14px 12px;
  flex-grow: 1;
}

.slider-controls,
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding: 0;
  border: 1px solid rgba(12, 31, 50, 0.18);
  background: rgba(11, 164, 224, 0.14);
  cursor: pointer;
  appearance: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.slider-dot.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 10px 18px rgba(11, 164, 224, 0.22);
  transform: scale(1.18);
}

.slider-dot:hover {
  border-color: rgba(11, 164, 224, 0.4);
  background: rgba(11, 164, 224, 0.2);
}

.slider-dot:focus-visible {
  outline: 3px solid rgba(11, 164, 224, 0.35);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .feature-thumb {
    height: 160px;
  }
}

@media (max-width: 720px) {
  .deliver-slide {
    display: contents;
  }

  .deliver-slider {
    padding: 0 12px;
  }

  .deliver-slider .feature-card {
    flex: 0 0 100%;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .deliver-slider {
    padding: 0 10px;
  }
}

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 164, 224, 0.14);
  color: #0b1f32;
  font-weight: 700;
}

.section.compact {
  padding: var(--section-pad-y) var(--page-pad-x);
}

.mobile-menu {
  display: none;
  background: rgba(11, 164, 224, 0.12);
  border: 1px solid rgba(11, 31, 50, 0.14);
  padding: 10px 12px;
  border-radius: 12px;
  color: #0b1f32;
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu:hover {
  background: rgba(11, 164, 224, 0.18);
  border-color: rgba(11, 164, 224, 0.35);
}

.mobile-menu:focus-visible {
  outline: 3px solid rgba(11, 164, 224, 0.35);
  outline-offset: 3px;
}

.nav-links.mobile-open {
  position: absolute;
  top: 64px;
  left: 20px;
  right: 20px;
  flex-direction: column;
  background: rgba(6, 10, 19, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
}

.nav-links.mobile-open a {
  color: #ffffff;
  font-weight: 600;
}

.nav-links.mobile-open a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links.mobile-open a.active::after {
  display: none;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links.mobile-open a.cta-outline {
    display: none;
  }
}

.coming {
  background: radial-gradient(circle at 12% 16%, rgba(11, 164, 224, 0.18), transparent 45%),
    radial-gradient(circle at 86% 22%, rgba(139, 197, 63, 0.18), transparent 46%),
    linear-gradient(135deg, #f3f8ff 0%, #eef5fb 55%, #f7fbff 100%);
}

.coming-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.coming-hero {
  width: 100%;
  padding: clamp(48px, 7vw, 96px) var(--page-pad-x);
}

.coming-shell {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  border: 1px solid rgba(12, 31, 50, 0.08);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 28px 70px rgba(11, 31, 50, 0.16);
  backdrop-filter: blur(12px);
}

.coming-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(12, 31, 50, 0.08);
  margin-bottom: clamp(24px, 4vw, 32px);
}

.coming-brand img {
  width: 170px;
}

.coming-tag {
  font-weight: 600;
  color: #0b1f32;
  background: linear-gradient(135deg, rgba(11, 164, 224, 0.12), rgba(139, 197, 63, 0.14));
  padding: 8px 14px;
  border-radius: 999px;
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
}

.coming-copy h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 12px 0 14px;
  color: #0b1f32;
  line-height: 1.1;
}

.coming-copy p {
  margin: 0 0 20px;
  color: #3b4b66;
  font-size: 1.02rem;
}

.coming-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 164, 224, 0.2), rgba(139, 197, 63, 0.2));
  color: #0b1f32;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.coming-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.coming-form {
  display: grid;
  gap: 8px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(12, 31, 50, 0.08);
  box-shadow: 0 12px 26px rgba(11, 31, 50, 0.06);
}

.coming-form label {
  color: #0b1f32;
}

.coming-input {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.coming-input input {
  flex: 1 1 220px;
  border-radius: 12px;
  border: 1px solid rgba(12, 31, 50, 0.18);
}

.coming-input button {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(11, 164, 224, 0.3);
}

.coming-form small {
  color: #5b6b82;
}

.coming-panel {
  display: grid;
  gap: 16px;
}

.coming-card {
  background: linear-gradient(160deg, rgba(11, 164, 224, 0.12), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(12, 31, 50, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 32px rgba(11, 31, 50, 0.08);
}

.coming-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.coming-list {
  padding-left: 18px;
  margin: 0;
  color: #3b4b66;
  display: grid;
  gap: 8px;
}

.coming-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.metric {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(12, 31, 50, 0.08);
}

.metric span {
  display: block;
  font-weight: 700;
  color: #0b1f32;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.coming-footer {
  margin-top: clamp(28px, 4vw, 36px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(12, 31, 50, 0.08);
  padding-top: 18px;
}

.coming-social {
  display: flex;
  gap: 12px;
}

.coming-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(11, 164, 224, 0.18), rgba(139, 197, 63, 0.18));
  border: 1px solid rgba(12, 31, 50, 0.08);
  color: #0b1f32;
}

@media (max-width: 680px) {
  .coming-shell {
    padding: 22px;
  }

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

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