
:root {
  --primary: #03848c;
  --navy: #042a40;
  --bg: #ffffff;
  --alt: #f3f2f0;
  --text: #0b1220;
  --muted: rgba(11,18,32,.68);
  --border: rgba(15,23,42,.12);
  --shadow: 0 12px 30px rgba(2, 6, 23, .08);
  --shadow2: 0 10px 25px rgba(2, 6, 23, .10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow); }
.brand__name { font-weight: 700; letter-spacing: -0.02em; }
.brand__meta { font-size: 12px; color: var(--muted); }
.nav { display: none; gap: 16px; align-items: center; }
.nav a { font-size: 14px; color: rgba(11,18,32,.74); padding: 8px 10px; border-radius: 12px; }
.nav a:hover { background: rgba(2,132,140,.08); text-decoration: none; color: rgba(11,18,32,.95); }
.navbtn {
  border: 1px solid var(--border); background: #fff;
  padding: 10px 12px; border-radius: 14px; font-weight: 600;
  box-shadow: 0 6px 14px rgba(2, 6, 23, .06);
}
.mobileNav {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.85);
}
.mobileNav__inner {
  padding: 14px 0;
  display: grid;
  gap: 10px;
}
.mobileNav a { padding: 10px 12px; border-radius: 14px; font-weight: 600; color: rgba(11,18,32,.8); }
.mobileNav a:hover { background: rgba(2,132,140,.08); text-decoration: none; }
@media (min-width: 980px) {
  .nav { display: flex; }
  .navbtn { display: none; }
  .mobileNav { display: none !important; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 700;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 20px rgba(2, 6, 23, .06);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow2); text-decoration: none; }
.btn--small { padding: 10px 12px; border-radius: 16px; font-size: 13px; }
.btn--primary {
  background: linear-gradient(135deg, rgba(2,132,140,1) 0%, rgba(4,42,64,1) 120%);
  color: #fff; border-color: rgba(255,255,255,.18);
}
.btn--primary:hover { border-color: rgba(255,255,255,.25); }
.btn--ghost { background: rgba(255,255,255,.85); }

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: stretch;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.05);
  transform: scale(1.03);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(2,132,140,.42), transparent 42%),
              radial-gradient(circle at 70% 35%, rgba(4,42,64,.35), transparent 46%),
              linear-gradient(to bottom, rgba(2,6,23,.60), rgba(2,6,23,.20), rgba(255,255,255,1));
}
.hero__content { position: relative; padding: 96px 0 72px; }
.hero h1 {
  color: #fff; letter-spacing: -0.03em;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 14px 0;
}
.hero p { color: rgba(255,255,255,.86); font-size: 16px; line-height: 1.55; max-width: 56ch; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.chip {
  display: inline-flex; gap: 8px; align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.90);
  font-weight: 600;
  font-size: 12px;
  backdrop-filter: blur(10px);
}
.chip--lite {
  background: rgba(2,132,140,.10);
  border: 1px solid rgba(2,132,140,.18);
  color: rgba(11,18,32,.78);
}

.trust {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 900px;
}
.trust__card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 18px 38px rgba(2, 6, 23, .12);
}
.trust__title { font-weight: 800; letter-spacing: -0.01em; }
.trust__sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
@media (min-width: 820px) {
  .trust { grid-template-columns: repeat(4, 1fr); }
}

.section { padding: 72px 0; }
.section--alt { background: linear-gradient(180deg, rgba(243,242,240,.65), rgba(255,255,255,1)); }
.section__head { text-align: center; margin-bottom: 26px; }
.kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2,132,140,.22);
  background: rgba(2,132,140,.08);
  color: rgba(11,18,32,.82);
  font-weight: 700;
  font-size: 12px;
}
h2 {
  margin: 10px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
}
.muted { color: var(--muted); }
.small { font-size: 12px; }

.cards {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(2, 6, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card__img {
  height: 220px;
  background: #ddd;
  background-size: cover;
  background-position: center;
}
.card__body { padding: 16px 16px 18px; }
.card__title { font-weight: 800; letter-spacing: -0.01em; }
.card__meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 8px; }
.pill {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 20px rgba(2,6,23,.05);
}
.card__actions { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 2px 10px;
  justify-content: flex-start;
}
.tab {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.86);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
.tab.is-active {
  background: rgba(2,132,140,.12);
  border-color: rgba(2,132,140,.28);
}
.tabpanes {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
}
.pane {
  display: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
}
.pane.is-active { display: block; }
.pane h3 { margin: 0 0 8px; letter-spacing: -0.02em; }
.pane ul { margin: 10px 0 0; padding-left: 18px; color: rgba(11,18,32,.78); }
.pane li { margin: 6px 0; }

.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(2,6,23,.06);
}
.step__top { display: flex; justify-content: space-between; align-items: center; }
.step__top span:first-child { font-size: 12px; color: var(--muted); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.step__title { margin-top: 12px; font-weight: 900; letter-spacing: -0.02em; }

.center { display: flex; justify-content: center; margin-top: 18px; }

.grid2 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .grid2 { grid-template-columns: 1fr 1fr; }
}
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 30px rgba(2,6,23,.06);
}
.panel h3 { margin-top: 0; letter-spacing: -0.02em; }
.list { display: grid; gap: 10px; margin-top: 10px; }
.li {
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
  border-radius: 16px;
  padding: 12px 12px;
  font-weight: 650;
  color: rgba(11,18,32,.76);
}
.note {
  margin-top: 14px;
  border-radius: 16px;
  padding: 12px 12px;
  border: 1px solid rgba(2,132,140,.20);
  background: rgba(2,132,140,.08);
  color: rgba(11,18,32,.78);
  font-size: 13px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1060px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
}
.thumb {
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  overflow: hidden;
  background: #eee;
  cursor: pointer;
  position: relative;
  box-shadow: 0 12px 24px rgba(2,6,23,.06);
}
.thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(2,132,140,.12), transparent 38%),
              linear-gradient(to top, rgba(2,6,23,.28), transparent 65%);
  opacity: 0;
  transition: opacity .18s ease;
}
.thumb:hover::after { opacity: 1; }
.thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform .18s ease;
}
.thumb:hover img { transform: scale(1.02); }

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  padding: 14px 16px;
  box-shadow: 0 12px 24px rgba(2,6,23,.05);
}
.faq details + details { margin-top: 10px; }
.faq summary {
  font-weight: 900;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.faq summary::marker { color: rgba(2,132,140,.85); }

.form label { display: grid; gap: 8px; font-weight: 700; font-size: 12px; color: rgba(11,18,32,.78); }
.form input, .form textarea {
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  padding: 11px 12px;
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,.95);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form textarea:focus {
  border-color: rgba(2,132,140,.55);
  box-shadow: 0 0 0 4px rgba(2,132,140,.15);
}
.form__row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}
.form__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.form__status { margin-top: 10px; font-weight: 700; font-size: 13px; }

.contactLine { margin-top: 10px; color: rgba(11,18,32,.78); }
.contactLine a { color: rgba(11,18,32,.85); }

.footer {
  border-top: 1px solid var(--border);
  padding: 26px 0 16px;
}
.footer__inner {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: start;
}
.footer__brand { font-weight: 900; }
.footer__links, .footer__contact { display: grid; gap: 10px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
@media (min-width: 980px) {
  .footer__inner { grid-template-columns: 1.2fr .8fr .8fr; }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2,6,23,.78);
  padding: 20px;
  z-index: 80;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.25);
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.95);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.lightbox__nav--left { left: 18px; }
.lightbox__nav--right { right: 18px; }
/* ===== FOOTER LAYOUT FIX (StaySphere) ===== */
/* This forces the footer content to align in a clean row/columns again. */

footer,
.site-footer,
.footer {
  width: 100%;
}

footer .footer-inner,
footer .footer-content,
footer .footer-wrap,
footer .container,
.site-footer .footer-inner,
.site-footer .footer-content,
.footer .footer-inner,
.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

/* Footer nav links group */
footer nav,
footer .footer-nav,
footer .footer-links,
.site-footer nav,
.site-footer .footer-nav,
.site-footer .footer-links,
.footer nav,
.footer .footer-nav,
.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Email + phone group */
footer .footer-contact,
footer .contact,
footer .footer-right,
.site-footer .footer-contact,
.site-footer .contact,
.site-footer .footer-right,
.footer .footer-contact,
.footer .contact,
.footer .footer-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

/* Make sure links don’t look broken */
footer a,
.site-footer a,
.footer a {
  text-decoration: none;
  white-space: nowrap;
}

/* Mobile: stack nicely */
@media (max-width: 700px) {
  footer .footer-inner,
  footer .footer-content,
  footer .footer-wrap,
  footer .container,
  .site-footer .footer-inner,
  .site-footer .footer-content,
  .footer .footer-inner,
  .footer .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  footer .footer-contact,
  footer .contact,
  footer .footer-right,
  .site-footer .footer-contact,
  .site-footer .contact,
  .footer .footer-contact,
  .footer .contact {
    align-items: flex-start;
  }
}
/* ===== END FOOTER FIX ===== */