:root {
  --header-height: 78px;
  --primary: #1e5fbe;
  --primary-dark: #184f9f;
  --primary-light: #eef5ff;
  --accent: #f28b00;
  --green: #11b851;
  --text: #1f2d3d;
  --muted: #64748b;
  --border: #dfe7f2;
  --bg: #f3f6fb;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(15, 44, 85, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--header-height);
}

body.site-home {
  background: linear-gradient(180deg, #f7faff 0%, #edf3fb 100%);
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  margin: 0 auto;
}

#site-header {
  min-height: var(--header-height);
}

section,
.section {
  padding: 64px 0;
}

.section-head,
.section-title-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.section-head h2,
.section-title {
  color: var(--primary-dark);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 10px;
}

.section-head p,
.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #ffb13b, var(--accent));
  color: #fff;
  box-shadow: 0 8px 18px rgba(242, 139, 0, 0.25);
}

.btn-service {
  background: linear-gradient(180deg, #2870d1, var(--primary));
  color: #fff;
  box-shadow: 0 8px 18px rgba(30, 95, 190, 0.24);
}

.btn-outline,
.btn-blue {
  background: #fff;
  color: var(--primary);
  border: 1px solid #cad8ea;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.btn-green {
  background: linear-gradient(180deg, #2edb72, var(--green));
  color: #fff;
  box-shadow: 0 8px 18px rgba(17, 184, 81, 0.22);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.universal-card {
  position: relative;
  min-height: 324px;
  padding: 24px 16px 42px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid currentColor;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #8bc34a;
}

.universal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.universal-card-media {
  width: 48px;
  height: 48px;
  margin: 40px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #6b7280;
  font-size: 48px;
}

.universal-card-body {
  padding: 0;
}

.universal-card-title {
  max-width: 180px;
  margin: 0 auto;
  color: #111827;
  font-size: 13px;
  line-height: 1.45;
  min-height: 56px;
}

.universal-card-price {
  margin-top: 12px;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.universal-card-price strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.universal-card-price s {
  margin-left: 6px;
  color: #6b7280;
  font-weight: 500;
}

.universal-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #0f4c81;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 18px rgba(15, 76, 129, 0.18);
}

.universal-card-dot {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f2937;
}

.tone-green {
  color: #8bc34a;
}

.tone-teal {
  color: #43c6b3;
}

.tone-cyan {
  color: #45c7e8;
}

.tone-amber {
  color: #f3a33f;
}

.soft-section {
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
  border-top: 1px solid #e4ecf7;
  border-bottom: 1px solid #e4ecf7;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 18px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.9);
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 28, 51, 0.14);
}

.site-header .navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  white-space: nowrap;
}

.brand-logo {
  width: auto;
  height: 42px;
  object-fit: contain;
  display: block;
}

.brand-text {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-menu a {
  position: relative;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 6px;
  opacity: 0.92;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.nav-menu a:hover,
.nav-menu a.active {
  opacity: 1;
}

.nav-actions {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 76, 129, 0.2);
}

.call-chip,
.wa-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.call-chip {
  background: linear-gradient(180deg, #ffb541 0%, #ee9819 100%);
  border-radius: 10px 0 0 10px;
}

.wa-chip {
  min-width: 42px;
  padding-inline: 12px;
  background: linear-gradient(180deg, #2ad265 0%, #1ca94e 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 10px 10px 0;
}

.wa-chip span {
  display: none;
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(17, 73, 153, 0.95), rgba(49, 114, 204, 0.88)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 35%);
}

.page-banner::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -50px;
  width: 280px;
  height: 280px;
  border-radius: 22px;
  transform: rotate(20deg);
  background: rgba(255, 255, 255, 0.08);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 10px;
  font-weight: 800;
}

.page-banner p {
  max-width: 760px;
  margin: 0 auto;
  color: #eaf3ff;
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 14px;
  color: #d9eaff;
  font-size: 14px;
}

.site-footer {
  margin-top: 20px;
  padding: 50px 0 20px;
  color: #fff;
  background: #0f1c2f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 19px;
  color: #ffffff;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: #b9c7d8;
  font-size: 15px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-col ul li,
.footer-col p + p {
  margin-top: 10px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #b9c7d8;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .site-header .navbar {
    padding: 14px 0;
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
    order: 3;
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    max-width: 180px;
  }

  .brand-logo {
    height: 36px;
  }

  .brand-text {
    font-size: 22px;
  }

  .page-banner p,
  .section-head p,
  .section-subtitle {
    font-size: 15px;
  }
}
