:root {
  --navy: #0a1628;
  --navy-soft: #13233b;
  --teal: #25b7ae;
  --teal-deep: #17867f;
  --gold: #c9a56a;
  --ink: #18263a;
  --muted: #5f6c7c;
  --border: #dbe4ec;
  --surface: #ffffff;
  --surface-muted: #f6f9fc;
  --surface-dark: #0f1f34;
  --shadow: 0 18px 48px rgba(10, 22, 40, 0.1);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(37, 183, 174, 0.08), transparent 24rem),
    linear-gradient(180deg, #f8fbfd 0, #ffffff 18rem);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__wordmark {
  width: clamp(180px, 17vw, 230px);
  height: auto;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 1.75rem;
}

.nav-link {
  position: relative;
  color: rgba(24, 38, 58, 0.7);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.is-current {
  color: var(--navy);
}

.nav-link.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.65rem;
  height: 2px;
  background: var(--teal);
  border-radius: 999px;
}

.header-actions {
  gap: 0.9rem;
}

.header-phone {
  color: rgba(24, 38, 58, 0.72);
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.06);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
  content: "";
}

.menu-toggle span {
  margin: 5px auto;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 0 0 1rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__panel {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.mobile-nav__links {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav__links a,
.mobile-nav__panel .button {
  width: 100%;
}

.mobile-nav__links a {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  color: rgba(24, 38, 58, 0.8);
  font-weight: 500;
}

.mobile-nav__links a.is-current {
  background: rgba(37, 183, 174, 0.12);
  color: var(--teal-deep);
}

.mobile-nav__footer {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--navy);
  color: #fff;
}

.button--primary:hover {
  background: var(--navy-soft);
}

.button--ghost {
  border: 1px solid rgba(10, 22, 40, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.button--ghost:hover {
  border-color: rgba(37, 183, 174, 0.45);
  color: var(--teal-deep);
}

.button--light {
  background: #fff;
  color: var(--teal-deep);
}

.button--light:hover {
  background: rgba(255, 255, 255, 0.92);
}

.button--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(37, 183, 174, 0.12);
  color: var(--teal-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow--dark {
  background: rgba(37, 183, 174, 0.18);
  color: #7fe4de;
}

.eyebrow__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
}

.hero-home {
  padding: 2rem 0 4.25rem;
}

.hero-home__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 183, 174, 0.15), transparent 30rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.94));
  box-shadow: 0 30px 60px rgba(10, 22, 40, 0.08);
}

.hero-home__grid,
.split-grid,
.contact-layout,
.footer-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.hero-home__grid,
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-home__title,
.page-hero__title,
.section-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.hero-home__title {
  font-size: clamp(2.6rem, 6vw, 4.45rem);
}

.hero-home__title span,
.section-title span {
  color: var(--teal-deep);
}

.hero-home__copy,
.page-hero__copy,
.section-copy {
  color: var(--muted);
  line-height: 1.72;
}

.hero-home__copy {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  font-size: 1.02rem;
}

.hero-home__actions,
.cta-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.stats {
  margin: 2.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.stat__value {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  color: var(--navy);
}

.stat__label {
  display: block;
  margin-top: 0.35rem;
  color: rgba(24, 38, 58, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card {
  position: relative;
}

.hero-card__frame {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-card__frame img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.hero-card__badge {
  position: absolute;
  left: -0.75rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(10, 22, 40, 0.16);
}

.hero-card__badge strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.hero-card__badge span {
  color: rgba(24, 38, 58, 0.6);
  font-size: 0.85rem;
}

.page-hero {
  padding: 7rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(37, 183, 174, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--navy) 0, #102035 100%);
  color: #fff;
}

.page-hero__inner {
  max-width: 52rem;
}

.page-hero__title {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-hero__copy {
  max-width: 39rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.section {
  padding: 5rem 0;
}

.section--tight {
  padding-top: 3rem;
}

.section--muted {
  background: var(--surface-muted);
}

.section--dark {
  background: linear-gradient(180deg, var(--navy) 0, var(--surface-dark) 100%);
  color: #fff;
}

.section--accent {
  background: linear-gradient(135deg, var(--teal), #11756f);
  color: #fff;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section--dark .section-kicker,
.section--accent .section-kicker {
  color: #86ece6;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-copy {
  margin: 1rem 0 0;
  max-width: 42rem;
}

.feature-strip {
  padding: 1rem 0 3rem;
}

.feature-grid,
.cards-grid,
.value-grid,
.services-grid,
.info-grid,
.steps-grid,
.footer-grid {
  display: grid;
  gap: 1.15rem;
}

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

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

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

.value-grid--four,
.info-grid,
.steps-grid,
.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.card,
.info-card,
.service-card,
.product-card,
.step-card,
.contact-box,
.footer-card {
  background: var(--surface);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.04);
}

.feature-card,
.card,
.service-card,
.step-card,
.contact-box {
  padding: 1.5rem;
}

.card--dark,
.footer-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.feature-card__eyebrow,
.service-card__eyebrow,
.info-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.95rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(37, 183, 174, 0.12);
  color: var(--teal-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card--dark .feature-card__eyebrow,
.card--dark .service-card__eyebrow {
  background: rgba(37, 183, 174, 0.18);
  color: #7fe4de;
}

.feature-card h3,
.card h3,
.service-card h3,
.step-card h3,
.contact-box h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.card p,
.service-card p,
.step-card p,
.contact-box p,
.product-item p,
.detail-list li {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.card--dark p,
.card--dark li {
  color: rgba(255, 255, 255, 0.72);
}

.card-media {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.card-media img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
}

.detail-list,
.plain-list,
.footer-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list {
  display: grid;
  gap: 0.8rem;
}

.detail-list li,
.footer-list li {
  position: relative;
  padding-left: 1.15rem;
}

.detail-list li::before,
.footer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
}

.card--dark .detail-list li::before {
  background: var(--gold);
}

.tags,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.tag,
.chip {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.chip {
  background: rgba(10, 22, 40, 0.05);
  color: rgba(24, 38, 58, 0.76);
}

.services-grid,
.value-grid,
.steps-grid {
  align-items: stretch;
}

.service-card__features {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.service-card__features span {
  position: relative;
  padding-left: 1rem;
  color: rgba(24, 38, 58, 0.72);
  font-size: 0.92rem;
}

.service-card__features span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--teal);
}

.product-showcase {
  display: grid;
  gap: 2.25rem;
}

.product-split {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.product-split--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.product-split__media {
  position: sticky;
  top: 6rem;
}

.product-split__content {
  display: grid;
  gap: 1rem;
}

.section-label {
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-list {
  display: grid;
  gap: 0.85rem;
}

.product-item {
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 16px;
}

.product-item h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.product-card__body {
  padding: 1.2rem;
}

.split-copy {
  max-width: 36rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 14px 36px rgba(10, 22, 40, 0.06);
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(24, 38, 58, 0.75);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: rgba(37, 183, 174, 0.68);
  box-shadow: 0 0 0 4px rgba(37, 183, 174, 0.12);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-box iframe {
  width: 100%;
  min-height: 230px;
  border: 0;
  border-radius: 16px;
}

.mini-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.mini-list span {
  color: rgba(24, 38, 58, 0.78);
  line-height: 1.6;
}

.step-card {
  text-align: center;
}

.step-number {
  width: 3.35rem;
  height: 3.35rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.cta-panel {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-panel .section-copy {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  margin-top: 5rem;
  background: linear-gradient(180deg, var(--navy) 0, #081322 100%);
  color: #fff;
}

.site-footer__main {
  padding: 4rem 0 2rem;
}

.footer-grid {
  gap: 1.5rem;
}

.footer-brand p,
.footer-copy,
.footer-list a,
.footer-contact {
  color: rgba(255, 255, 255, 0.68);
}

.footer-title {
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

.footer-separator {
  color: rgba(255, 255, 255, 0.2);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 80;
  min-width: min(92vw, 340px);
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(10, 22, 40, 0.94);
  color: #fff;
  transform: translate(-50%, calc(100% + 2rem));
  transition: transform 180ms ease;
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.26);
  text-align: center;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

.wa-widget {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
}

.wa-panel {
  width: min(20rem, calc(100vw - 2rem));
  margin-bottom: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.wa-panel[hidden] {
  display: none;
}

.wa-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.wa-panel__head strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.wa-panel__head span {
  color: rgba(24, 38, 58, 0.58);
  font-size: 0.82rem;
}

.wa-panel__bubble {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: #f0f6f6;
  color: var(--ink);
  line-height: 1.6;
}

.wa-trigger {
  width: 3.8rem;
  height: 3.8rem;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.34);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.wa-trigger:hover {
  transform: translateY(-1px);
}

.icon-arrow {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-nav {
    display: block;
  }

  .hero-home__grid,
  .split-grid,
  .product-split,
  .product-split--reverse,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-split__media {
    position: static;
  }
}

@media (max-width: 860px) {
  .feature-grid,
  .cards-grid--three,
  .services-grid,
  .value-grid--four,
  .info-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card__frame img {
    min-height: 380px;
  }
}

@media (max-width: 720px) {
  .hero-home {
    padding-bottom: 3rem;
  }

  .hero-home__panel,
  .cta-panel {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .stats,
  .feature-grid,
  .cards-grid--two,
  .cards-grid--three,
  .services-grid,
  .value-grid--four,
  .info-grid,
  .steps-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-card__badge {
    position: static;
    margin-top: 1rem;
  }

  .hero-card__frame img,
  .card-media img {
    min-height: 280px;
  }

  .footer-bottom__inner,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
