:root {
  --navy-900: #0b1736;
  --navy-800: #13224f;
  --navy-700: #1a2b5c;
  --blue-500: #2f80ed;
  --blue-700: #123fa0;
  --orange-500: #f7791f;
  --orange-600: #e15f05;
  --bg-soft: #f4f7fe;
  --white: #ffffff;
  --gray-600: #5b6785;
  --gray-400: #8a93b3;
  --gray-200: #e4e9f7;
  --gray-100: #eff3fc;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 20px 45px -20px rgba(19, 34, 79, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(19, 34, 79, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--navy-800);
  background: var(--bg-soft);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
.display {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--navy-800);
  margin: 0;
  line-height: 1.12;
}
p {
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img,
svg {
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Logo ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-pin {
  width: 34px;
  height: 34px;
  flex: none;
}
.logo-word {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo-word .navy {
  color: var(--navy-800);
}
.logo-word .orange {
  color: var(--orange-500);
}
.logo-word .dotcom {
  background: var(--navy-800);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px 4px;
  border-radius: 999px;
  margin-left: 2px;
}

/* ---------- Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 254, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-700);
  transition:
    background 0.18s,
    color 0.18s;
}
.nav-links a:hover {
  background: var(--gray-100);
}
.nav-links a.active {
  background: var(--navy-800);
  color: #fff;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-500);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -8px rgba(247, 121, 31, 0.55);
  transition:
    transform 0.15s,
    background 0.15s;
}
.nav-cta:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gray-100);
  align-items: center;
  justify-content: center;
}
.burger span,
.burger span::before,
.burger span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy-800);
  position: relative;
}
.burger span::before {
  position: absolute;
  top: -6px;
}
.burger span::after {
  position: absolute;
  top: 6px;
}

/* ---------- Pages ---------- */
.page {
  display: none;
  animation: fadein 0.35s ease;
}
.page.is-active {
  display: block;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 88px 0;
}
.section-tight {
  padding: 64px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: #e7effe;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 16.5px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(var(--gray-200) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 60% 55% at 72% 30%,
    black 10%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 60% 55% at 72% 30%,
    black 10%,
    transparent 75%
  );
}
.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--orange-500);
}
.hero p.lead {
  font-size: 17.5px;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 999px;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
}
.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 14px 28px -10px rgba(247, 121, 31, 0.55);
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
}
.btn-outline {
  background: #fff;
  color: var(--navy-800);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--blue-500);
  color: var(--blue-700);
}
.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-trust div {
  display: flex;
  flex-direction: column;
}
.hero-trust strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-800);
}
.hero-trust span {
  font-size: 12.5px;
  color: var(--gray-600);
}

/* pin radar visual */
.radar {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(47, 128, 237, 0.25);
}
.r1 {
  width: 100%;
  height: 100%;
}
.r2 {
  width: 72%;
  height: 72%;
}
.r3 {
  width: 44%;
  height: 44%;
}
.radar-pulse {
  position: absolute;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.14);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.radar-pin {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 16px 22px rgba(19, 34, 79, 0.3));
}
.radar-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.radar-card strong {
  font-size: 13.5px;
  display: block;
}
.radar-card span {
  font-size: 11px;
  color: var(--gray-400);
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.radar-card.rc1 {
  top: 6%;
  left: -4%;
}
.radar-card.rc2 {
  bottom: 10%;
  right: -8%;
}
.radar-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.radar-icon svg {
  width: 18px;
  height: 18px;
}

/* ---------- Category grid (icon cards, Traveloka-style) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #eaf1ff, #f7faff);
}
.cat-icon svg {
  width: 30px;
  height: 30px;
}
.cat-card h3 {
  font-size: 18px;
  font-weight: 700;
}
.cat-card p {
  font-size: 14px;
}
.cat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
}
.cat-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-700);
}
.cat-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cat-card:hover .cat-arrow {
  background: var(--orange-500);
}
.cat-card:hover .cat-arrow svg {
  stroke: #fff;
}
.cat-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy-800);
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  padding: 26px 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--gray-200);
}
.why-card .why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card .why-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
.why-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-card p {
  font-size: 13.5px;
}

/* ---------- Steps (Cara Sewa) - pins are justified: real ordered process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  position: relative;
  padding-top: 8px;
}
.step-pin {
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(145deg, var(--blue-500), var(--blue-700));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 18px -6px rgba(18, 63, 160, 0.5);
}
.step-pin span {
  transform: rotate(45deg);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.step h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 13.8px;
}
.step-line {
  position: absolute;
  top: 23px;
  left: 52%;
  width: 96%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gray-200) 0 8px,
    transparent 8px 14px
  );
}

/* ---------- Product / katalog cards ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.filter-btn {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-700);
  transition: 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-btn svg {
  width: 16px;
  height: 16px;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}
.filter-btn.active svg,
.filter-btn:hover svg {
  stroke: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.product-media {
  height: 150px;
  background: linear-gradient(150deg, #eaf1ff, #f7faff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-media svg {
  width: 64px;
  height: 64px;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--blue-700);
  box-shadow: 0 6px 14px -6px rgba(19, 34, 79, 0.25);
}
.badge.hot {
  color: var(--orange-500);
}
.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-body h4 {
  font-size: 16.5px;
  font-weight: 700;
}
.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 6px;
}
.spec-list span {
  font-size: 11.5px;
  background: var(--bg-soft);
  color: var(--gray-600);
  padding: 4px 9px;
  border-radius: 8px;
  font-weight: 600;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed var(--gray-200);
}
.price {
  display: flex;
  flex-direction: column;
}
.price strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-800);
}
.price span {
  font-size: 11.5px;
  color: var(--gray-400);
}
.btn-mini {
  background: var(--navy-800);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
}
.btn-mini:hover {
  background: var(--orange-500);
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.stars svg {
  width: 15px;
  height: 15px;
  fill: var(--orange-500);
}
.testi-card p {
  font-size: 14.5px;
  margin-bottom: 20px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-500), var(--blue-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.testi-person strong {
  display: block;
  font-size: 14px;
}
.testi-person span {
  font-size: 12px;
  color: var(--gray-400);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--blue-700));
  border-radius: 28px;
  padding: 56px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(247, 121, 31, 0.35),
    transparent 70%
  );
}
.cta-band h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  max-width: 420px;
}
.cta-band p {
  color: #c9d3ef;
  font-size: 14.5px;
  max-width: 420px;
}
.cta-band .btn-primary {
  white-space: nowrap;
}

/* ---------- Feature detail rows (Layanan page) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}
.feature-row:last-child {
  border-bottom: none;
}
.feature-row.rev {
  grid-template-columns: 1.1fr 0.9fr;
}
.feature-row.rev .feature-visual {
  order: 2;
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.feature-row h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.feature-row p.desc {
  font-size: 15px;
  margin-bottom: 22px;
}
.feature-list {
  display: grid;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--navy-700);
  font-weight: 500;
}
.feature-list svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 1px;
  stroke: var(--orange-500);
}
.feature-visual {
  background: linear-gradient(160deg, #eaf1ff, #f7faff);
  border-radius: var(--radius-lg);
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.feature-visual svg {
  width: 120px;
  height: 120px;
}
.feature-price-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
}
.feature-price-tag strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  display: block;
}
.feature-price-tag span {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  font-weight: 700;
  font-size: 15px;
}
.faq-q svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
  flex: none;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-a {
  max-height: 220px;
}
.faq-a p {
  padding: 0 22px 20px;
  font-size: 14px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 38px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-info-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.35),
    transparent 70%
  );
}
.contact-info-card h3 {
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-info-card p {
  color: #c9d3ef;
  font-size: 14.5px;
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.contact-row .ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.contact-row .ic svg {
  width: 19px;
  height: 19px;
  stroke: #fff;
}
.contact-row strong {
  display: block;
  font-size: 14px;
}
.contact-row span {
  font-size: 12.5px;
  color: #aebae0;
}
.form-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-700);
}
.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--navy-800);
  background: var(--bg-soft);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  outline: none;
  background: #fff;
}
.submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.form-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-900);
  color: #c9d3ef;
  padding: 60px 0 26px;
  margin-top: 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 44px;
}
.foot-grid h5 {
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 16px;
}
.foot-grid ul li {
  margin-bottom: 10px;
  font-size: 13.8px;
}
.foot-grid ul li a:hover {
  color: #fff;
}
.foot-grid p.about {
  font-size: 13.8px;
  margin: 16px 0 20px;
  max-width: 280px;
}
.foot-social {
  display: flex;
  gap: 10px;
}
.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot-social svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #8c99c2;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cat-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .step-line {
    display: none;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .radar {
    margin-top: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .feature-row,
  .feature-row.rev {
    grid-template-columns: 1fr;
  }
  .feature-row.rev .feature-visual {
    order: 0;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero h1 {
    font-size: 36px;
  }
  .cat-grid,
  .why-grid,
  .product-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 56px 0;
  }
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 26px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .nav-cta span.long {
    display: none;
  }
}
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
