:root {
  --bg: #f4f8fb;
  --bg-soft: #eef4fa;
  --ink: #0f2137;
  --ink-muted: #4c627e;
  --brand: #00757f;
  --brand-dark: #005861;
  --accent: #ef8e00;
  --line: #d8e2ec;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 12px 32px rgba(11, 36, 58, 0.12);
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 10% 0%, #dceef4 0%, #f6f9fc 36%, #f4f8fb 100%);
  color: var(--ink);
  font-family: "Sora", "Trebuchet MS", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-head {
  margin-bottom: 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.2;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0 0 16px;
  color: var(--ink-muted);
}

ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--ink-muted);
}

li {
  margin-bottom: 6px;
}

.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #00a7b5);
  box-shadow: 0 10px 24px rgba(0, 117, 127, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.btn-accent {
  color: #102237;
  background: linear-gradient(130deg, #ffc765, var(--accent));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(246, 250, 253, 0.9);
  border-bottom: 1px solid rgba(199, 212, 225, 0.65);
}

.marquee-bar {
  background: linear-gradient(120deg, #083749, #0a4e68);
  border-bottom: 1px solid rgba(155, 202, 223, 0.35);
  color: #e9faff;
  overflow: hidden;
  display: flex;
  width: 100%;
  white-space: nowrap;
}

.marquee-track {
  min-width: 0;
  width: max-content;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  animation: marqueeSlide 18s linear infinite;
  will-change: transform;
}

.marquee-track span {
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.marquee-sep {
  opacity: 0.75;
}

.topline {
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
}

.topline .container {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.topline-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink-muted);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--brand), #00bccb);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 9px 11px;
  border-radius: 999px 999px 999px 120px;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(26deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.btn::after {
  display: none;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-btn.open span {
  opacity: 0;
}

.menu-btn.open::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn.open::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.hero h1 {
  max-width: 18ch;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.hero-card {
  background: linear-gradient(150deg, #0d3e56 0%, #005861 55%, #025059 100%);
  color: #f4fbff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(115, 221, 233, 0.22);
  top: -90px;
  right: -80px;
}

.hero-card .metric {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.metric-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 12px;
}

.metric-item strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 8px 18px rgba(13, 48, 76, 0.06);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), #0bb2bf);
}

.muted-panel {
  background: linear-gradient(180deg, #eff5fb, #e6eff8);
}

.process-section {
  padding-top: 74px;
}

.process-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #f8fbff 0%, #edf4fb 74%);
  border: 1px solid #d3e1ee;
  border-radius: 24px;
  padding: clamp(22px, 3.5vw, 38px);
  box-shadow: 0 18px 38px rgba(13, 40, 61, 0.09);
}

.process-shell::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -128px;
  top: -128px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 126, 138, 0.21), rgba(0, 126, 138, 0));
}

.process-head {
  position: relative;
  z-index: 1;
  max-width: 76ch;
  margin-bottom: 24px;
}

.process-head p {
  margin-bottom: 0;
}

.process {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.process::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 117, 127, 0.36), rgba(0, 117, 127, 0.08));
}

.process li {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 76px;
  background: #fff;
  border: 1px solid #d7e3ef;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(15, 41, 63, 0.06);
  color: var(--ink-muted);
  line-height: 1.58;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.process li:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 24px rgba(15, 41, 63, 0.1);
  border-color: #bcd0e2;
}

.process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(140deg, #edf7f8, #dff2f4);
  border: 1px solid #bcd0dd;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-weight: 800;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.process li strong {
  color: var(--ink);
  margin-right: 4px;
}

.timeline {
  border-left: 2px dashed #b8c9da;
  margin-left: 10px;
  padding-left: 22px;
}

.timeline-item {
  margin-bottom: 18px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.page-hero {
  padding: 64px 0 30px;
}

.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

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

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c7d6e4;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  background: #fff;
}

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

.notice {
  font-size: 0.84rem;
  color: #607590;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  border-radius: 10px;
  padding: 12px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.form-alert-success {
  color: #0b5e3c;
  background: #e9f8f0;
  border: 1px solid #bce7d0;
}

.form-alert-error {
  color: #7e2430;
  background: #fdeef1;
  border: 1px solid #f4c3cc;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.check-row input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--brand);
}

.map-frame {
  border: 0;
  width: 100%;
  height: clamp(320px, 40vw, 460px);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(12, 39, 60, 0.12);
}

.contact-page .contact-map-section {
  padding-bottom: 36px;
}

.contact-page .site-footer {
  margin-top: 0;
}

.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #063b50, #036f7a);
  color: #f5fcff;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  background: #f0f6fb;
}

.footer-main {
  padding: 36px 0 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

.footer-list {
  display: grid;
  gap: 8px;
  color: var(--ink-muted);
}

.footer-list a,
.footer-list span {
  overflow-wrap: anywhere;
}

.footer-contact {
  gap: 10px;
}

.footer-contact-item {
  display: grid;
  gap: 2px;
}

.footer-contact-item strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid #d8e3ee;
  padding: 16px 0 26px;
  color: #5e7088;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #18a951;
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(24, 169, 81, 0.35);
  z-index: 20;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-anim {
  animation: riseIn 0.8s ease both;
}

@keyframes marqueeSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .cards-3,
  .cards-2,
  .footer-main,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow);
  }

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

  .menu-btn {
    display: inline-block;
  }

  .hero {
    padding-top: 48px;
  }

  .process li:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }

  .topline .container {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-wa {
    right: 12px;
    bottom: 12px;
  }

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

  .footer-contact-item strong {
    font-size: 0.9rem;
  }

  .map-frame {
    height: 300px;
  }

  .process-shell {
    border-radius: 18px;
    padding: 18px 14px;
  }

  .process::before {
    left: 18px;
    top: 14px;
    bottom: 14px;
  }

  .process li {
    border-radius: 14px;
    padding: 14px 14px 14px 62px;
  }

  .process li::before {
    left: 9px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .topline {
    display: none;
  }

  .marquee-track {
    gap: 8px;
    padding: 6px 0;
    animation-duration: 14s;
  }

  .marquee-track span {
    font-size: 0.76rem;
  }

  .site-header {
    backdrop-filter: blur(6px);
  }

  .nav-wrap {
    padding: 10px 0;
  }

  .logo {
    font-size: 0.95rem;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }
}
