:root {
  --bg: #f4f7f8;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --line: rgba(10, 48, 58, 0.12);
  --ink: #102127;
  --muted: #4d5f66;
  --brand: #0e6d71;
  --brand-2: #0a4a5d;
  --accent: #f49b1a;
  --shadow: 0 24px 60px rgba(10, 44, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(14, 109, 113, 0.18), transparent 36%),
    radial-gradient(circle at 84% 12%, rgba(244, 155, 26, 0.2), transparent 30%),
    radial-gradient(circle at 78% 86%, rgba(10, 74, 93, 0.16), transparent 34%),
    linear-gradient(135deg, #f1f8f9 0%, #f7f5ef 100%);
  z-index: -1;
}

.topbar {
  width: min(1160px, calc(100% - 2rem));
  margin: 1rem auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.7rem 0.9rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0.8rem;
  z-index: 90;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 180px;
  max-width: 40vw;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.menu a.btn {
  color: #fff;
}

.menu .lang-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  min-width: 42px;
  text-align: center;
}

.menu .lang-chip.active {
  background: var(--brand-2);
  color: #fff;
  border-color: transparent;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-wrap {
  width: min(1160px, calc(100% - 2rem));
  margin: 1.2rem auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-card,
.timeline-wrap,
.trust,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.2rem;
}

.hero-panel {
  padding: 2rem;
  background: linear-gradient(150deg, #0e6d71 0%, #0a4a5d 82%);
  color: #f3fbfb;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand);
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 0.8rem;
}

h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.lead {
  font-size: 1.07rem;
  max-width: 66ch;
}

.hero-cta {
  margin: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.uptime-chip {
  margin: -0.35rem 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 127, 171, 0.26);
  background: linear-gradient(135deg, rgba(11, 127, 171, 0.12), rgba(42, 157, 143, 0.12));
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.uptime-chip i {
  color: var(--brand-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.73rem 1.1rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 74, 93, 0.24);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-sm {
  padding: 0.58rem 0.96rem;
  font-size: 0.9rem;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 500;
}

.hero-badges i {
  color: var(--accent);
}

.hero-panel h2,
.hero-panel p,
.hero-panel span {
  color: #f3fbfb;
}

.hero-panel strong {
  color: #fff;
  font-size: 1.04rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.metric-grid article {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel-visual {
  width: 100%;
  margin-top: auto;
  border-radius: 14px;
  object-fit: cover;
}

.section-card,
.timeline-wrap,
.trust {
  padding: 2rem;
}

.section-intro {
  margin-bottom: 1.25rem;
}

.feature-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-with-visual {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.1rem;
  align-items: stretch;
  background: var(--panel);
}

.trust-main {
  display: flex;
  flex-direction: column;
}

.trust-main h2 {
  max-width: 20ch;
  margin-bottom: 0.9rem;
}

.trust-with-visual .trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-with-visual .trust-grid article:nth-child(3) {
  grid-column: 1 / -1;
}

.trust-with-visual .trust-grid article {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(175, 184, 193, 0.45);
}

.trust-side {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
}

.trust-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(212, 217, 223, 0.5) 0%, rgba(212, 217, 223, 0) 24%);
  pointer-events: none;
  z-index: 1;
}

.trust-visual {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 60% center;
  border-radius: 20px;
}

.feature-grid article,
.pillars article,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: var(--panel-strong);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  color: var(--brand-2);
  font-weight: 600;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.feature-grid i {
  color: var(--brand);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.split-visual {
  width: 100%;
  margin-top: 1rem;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.timeline li {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: var(--panel-strong);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
}

.timeline span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--accent), #f4ba62);
  color: #1f2f34;
  font-weight: 700;
}

.contact-box {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-box--spotlight {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 92% 8%, rgba(244, 155, 26, 0.2), transparent 44%);
  border: 2px solid rgba(244, 155, 26, 0.5);
  scroll-margin-top: 6.5rem;
}

.contact-urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 155, 26, 0.5);
  background: rgba(244, 155, 26, 0.16);
  color: #6d4308;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-urgent-badge i {
  color: #c36c00;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}

.contact-list i {
  color: var(--brand);
}

.contact-mail-link {
  color: var(--brand-2);
  text-decoration: none;
  font-weight: 600;
}

.contact-mail-link:hover {
  text-decoration: underline;
}

.contact-direct-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-strong);
  padding: 1rem;
  display: grid;
  gap: 0.35rem;
}

.contact-form .btn {
  margin-top: 0.7rem;
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.68rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(14, 109, 113, 0.25);
  border-color: rgba(14, 109, 113, 0.5);
}

.hidden-trap {
  position: absolute;
  left: -9999px;
}

.form-feedback {
  min-height: 1.1rem;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--brand-2);
}

.floating-contact-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  border-radius: 999px;
  padding: 0.82rem 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, #f49b1a 0%, #da7f00 100%);
  color: #172327;
  box-shadow: 0 14px 28px rgba(218, 127, 0, 0.38);
  animation: ctaPulse 1.9s ease-in-out infinite;
}

.floating-contact-cta:hover {
  transform: translateY(-2px);
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 14px 28px rgba(218, 127, 0, 0.38), 0 0 0 0 rgba(244, 155, 26, 0.52);
  }
  70% {
    box-shadow: 0 14px 28px rgba(218, 127, 0, 0.38), 0 0 0 16px rgba(244, 155, 26, 0);
  }
  100% {
    box-shadow: 0 14px 28px rgba(218, 127, 0, 0.38), 0 0 0 0 rgba(244, 155, 26, 0);
  }
}

.footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 1.2rem auto 1.6rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer img {
  width: 160px;
  display: block;
  margin-bottom: 0.5rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.page-hero {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
}

.page-hero-shell .page-hero {
  min-width: 0;
  margin: 0;
  width: 100%;
}

.page-hero-media {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.page-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  font-size: 0.84rem;
  color: var(--ink);
  background: #fff;
}

.kpi-strip {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.kpi-strip article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  background: #fff;
}

.kpi-strip strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.detail-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
}

.detail-list i {
  color: var(--brand);
  margin-top: 0.2rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.9rem;
}

.faq-item h3 {
  margin-bottom: 0.35rem;
}

.cta-band {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #eff9fb;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.cta-band h2,
.cta-band p {
  color: #eff9fb;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .detail-grid,
  .contact-box,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .trust-grid,
  .kpi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .trust-with-visual {
    grid-template-columns: 1fr;
  }

  .trust-with-visual .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-visual {
    object-position: center;
    max-height: 320px;
  }

  .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    min-height: 220px;
  }
}

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

  .menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    margin: 0 0.2rem;
    padding: 0.8rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .menu.show {
    display: flex;
  }

  .menu .btn {
    width: 100%;
  }

  .feature-grid,
  .pillars,
  .trust-grid,
  .kpi-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .section-card,
  .timeline-wrap,
  .trust,
  .contact-box {
    border-radius: 18px;
    padding: 1.2rem;
  }

  .topbar {
    border-radius: 14px;
    top: 0.4rem;
  }

  .floating-contact-cta {
    left: 0.7rem;
    right: 0.7rem;
    justify-content: center;
    bottom: 0.7rem;
  }
}