/* === RESET & ROOT === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Colors */
  --c-cyan:     #0096C7;
  --c-blue:     #023E8A;
  --c-navy:     #03045E;
  --c-light:    #CAF0F8;
  --c-lighter:  #E8F4FD;
  --c-white:    #FFFFFF;
  --c-gray:     #F0F8FF;
  --c-text:     #1E3A5F;
  --c-muted:    #5A7A9A;
  --c-wa:       #25D366;
  --c-wa-hover: #1ebe56;

  /* Typography */
  --f-head: 'Plus Jakarta Sans', sans-serif;
  --f-body: 'Inter', sans-serif;

  /* Spacing scale */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,150,199,0.08);
  --shadow-md: 0 8px 24px rgba(0,150,199,0.12);
  --shadow-lg: 0 16px 48px rgba(0,150,199,0.18);
  --shadow-wa: 0 8px 24px rgba(37,211,102,0.35);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === UTILITY === */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section { padding: var(--sp-xl) 0; }
.section--gray { background: var(--c-gray); }
.section--light { background: var(--c-lighter); }
.text-center { text-align: center; }

.section-label {
  display: block;
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--c-navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 540px;
}
.section-header { margin-bottom: var(--sp-lg); }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--wa {
  background: var(--c-wa);
  color: var(--c-white);
}
.btn--wa:hover {
  background: var(--c-wa-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-wa);
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-blue));
  color: var(--c-white);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--outline {
  border: 2px solid var(--c-cyan);
  color: var(--c-cyan);
  background: transparent;
}
.btn--outline:hover {
  background: var(--c-cyan);
  color: var(--c-white);
  transform: translateY(-2px);
}
.btn--lg { padding: 17px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,60,120,0.1);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
}
.navbar__logo img { height: 48px; width: auto; }
.navbar__links {
  display: none;
  align-items: center;
  gap: 28px;
}
.navbar__links a {
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--c-cyan); }
.navbar__cta { display: none; }
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.navbar__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3,4,94,0.4);
  z-index: 998;
}
.navbar__overlay.show { display: block; }
.navbar__drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--c-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 16px 24px 24px;
  z-index: 999;
}
.navbar__drawer.open { display: flex; }
.navbar__drawer a {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-navy);
  padding: 14px 0;
  border-bottom: 1px solid #f0f4f8;
}
.navbar__drawer .btn { margin-top: 16px; }

@media (min-width: 768px) {
  .navbar__links { display: flex; }
  .navbar__cta { display: flex; }
  .navbar__hamburger { display: none; }
  .navbar__logo img { height: 54px; }
}

/* === HERO === */
.hero {
  min-height: 100svh;
  padding: 100px 0 60px;
  background: linear-gradient(160deg, #ffffff 0%, #e8f4fd 45%, #caf0f8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 {
  width: 300px; height: 300px;
  background: rgba(0,150,199,0.12);
  top: -80px; right: -60px;
}
.hero__orb--2 {
  width: 200px; height: 200px;
  background: rgba(2,62,138,0.08);
  bottom: 60px; left: -40px;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-block;
  background: rgba(0,150,199,0.1);
  border: 1px solid rgba(0,150,199,0.25);
  color: var(--c-cyan);
  padding: 6px 18px;
  border-radius: 20px;
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-navy);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero__title .accent {
  background: linear-gradient(90deg, var(--c-cyan), var(--c-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.hero__stat {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,150,199,0.15);
  border-radius: var(--r-md);
  padding: 14px 10px;
  text-align: center;
}
.hero__stat-num {
  display: block;
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-cyan);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
@media (min-width: 480px) {
  .hero__btns { flex-direction: row; justify-content: center; }
}
@media (min-width: 768px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
  .hero { padding: 120px 0 80px; }
}

/* === MARQUEE === */
.marquee { background: var(--c-blue); padding: 14px 0; overflow: hidden; }
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee__item {
  flex-shrink: 0;
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.marquee__item::before { content: '✦ '; color: var(--c-cyan); }

/* === WHY CHOOSE US === */
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why__card {
  background: var(--c-white);
  border: 1.5px solid rgba(0,150,199,0.1);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,150,199,0.2);
}
.why__card:hover::after { transform: scaleX(1); }
.why__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,150,199,0.1), rgba(0,150,199,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.why__card h3 {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.why__card p { font-size: 0.875rem; color: var(--c-muted); line-height: 1.6; }
@media (min-width: 480px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

/* === PRODUCTS === */
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.prod-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,150,199,0.2);
}
.prod-card__img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.prod-card__img--1 { background: linear-gradient(135deg,#caf0f8,#90e0ef); }
.prod-card__img--2 { background: linear-gradient(135deg,#ade8f4,#48cae4); }
.prod-card__img--3 { background: linear-gradient(135deg,#d4f1f4,#75e6da); }
.prod-card__img--4 { background: linear-gradient(135deg,#b9fbc0,#98f5e1); }
.prod-card__img--5 { background: linear-gradient(135deg,#dbeafe,#bfdbfe); }
.prod-card__img--6 { background: linear-gradient(135deg,#e0f2fe,#bae6fd); }
.prod-card__img--7 { background: linear-gradient(135deg,#ede9fe,#ddd6fe); }
.prod-card__img--8 { background: linear-gradient(135deg,#fce7f3,#fbcfe8); }
.prod-card__body { padding: 16px; }
.prod-card__body h3 {
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 4px;
}
.prod-card__body p {
  font-size: 0.75rem;
  color: var(--c-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}
.prod-card__link {
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-cyan);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.prod-card__link:hover { gap: 8px; }
@media (min-width: 640px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .products__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .prod-card__img { height: 120px; font-size: 2.5rem; } }

/* === INDUSTRIES === */
.industries__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.ind-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,150,199,0.15);
  border-radius: var(--r-md);
  transition: all 0.3s;
}
.ind-card:hover {
  background: rgba(0,150,199,0.08);
  border-color: rgba(0,150,199,0.3);
  transform: translateX(4px);
}
.ind-card__icon { font-size: 1.8rem; flex-shrink: 0; }
.ind-card h3 {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 2px;
}
.ind-card p { font-size: 0.8rem; color: var(--c-muted); }
@media (min-width: 480px) { .industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industries__grid { grid-template-columns: repeat(3, 1fr); } }

/* === COVERAGE === */
.coverage__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}
.coverage__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.city-tag {
  padding: 8px 16px;
  background: rgba(0,150,199,0.07);
  border: 1.5px solid rgba(0,150,199,0.2);
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-blue);
  transition: all 0.2s;
  font-family: var(--f-head);
}
.city-tag:hover { background: rgba(0,150,199,0.15); border-color: var(--c-cyan); }
.coverage__visual {
  background: linear-gradient(135deg, var(--c-blue), var(--c-navy));
  border-radius: var(--r-xl);
  padding: 40px 24px;
  text-align: center;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.coverage__num {
  font-family: var(--f-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--c-cyan);
  line-height: 1;
  position: relative;
}
.coverage__num-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  position: relative;
}
.coverage__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
  position: relative;
}
.coverage__dot {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .coverage__inner { flex-direction: row; align-items: center; }
  .coverage__text { flex: 1; }
  .coverage__visual { flex: 0 0 340px; }
}

/* === HOW IT WORKS === */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-cyan), transparent);
}
.step:last-child::before { display: none; }
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-white);
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,150,199,0.3);
  z-index: 1;
}
.step__content h3 {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 4px;
  padding-top: 12px;
}
.step__content p { font-size: 0.875rem; color: var(--c-muted); line-height: 1.6; }
@media (min-width: 768px) {
  .steps { flex-direction: row; align-items: flex-start; gap: 0; }
  .step { flex-direction: column; align-items: center; text-align: center; flex: 1; padding-bottom: 0; }
  .step::before { left: 50%; top: 27px; bottom: auto; width: 100%; height: 2px; background: linear-gradient(to right, var(--c-cyan), var(--c-light)); }
  .step:last-child::before { display: none; }
  .step__content h3 { padding-top: 0; margin-top: 12px; }
}

/* === TESTIMONIALS === */
.testi__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.testi-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1.5px solid rgba(0,0,0,0.07);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(0,150,199,0.1);
  position: absolute;
  top: 8px; right: 20px;
  line-height: 1;
}
.testi-card__stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 12px; }
.testi-card__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(30,58,95,0.75);
  font-style: italic;
  margin-bottom: 20px;
}
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--c-white);
  flex-shrink: 0;
}
.testi-card__name {
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-navy);
}
.testi-card__role { font-size: 0.75rem; color: var(--c-muted); }
@media (min-width: 768px) { .testi__grid { grid-template-columns: repeat(3, 1fr); } }

/* === FAQ === */
.faq__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1.5px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(0,150,199,0.3); }
.faq-item__q {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-navy);
  user-select: none;
}
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,150,199,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.7;
}
.faq-item.open .faq-item__a { max-height: 200px; padding: 0 20px 18px; }
.faq__cta {
  background: linear-gradient(135deg, var(--c-blue), var(--c-navy));
  border-radius: var(--r-xl);
  padding: 36px 28px;
  color: var(--c-white);
  text-align: center;
}
.faq__cta h3 {
  font-family: var(--f-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}
.faq__cta p { font-size: 0.875rem; opacity: 0.75; line-height: 1.7; margin-bottom: 24px; }
@media (min-width: 768px) {
  .faq__inner { flex-direction: row; align-items: start; gap: 48px; }
  .faq__list { flex: 1; }
  .faq__cta { flex: 0 0 300px; position: sticky; top: 90px; }
}

/* === STRONG CTA === */
.cta-section {
  background: linear-gradient(135deg, #023E8A 0%, #03045E 100%);
  padding: var(--sp-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,150,199,0.2) 0%, transparent 70%);
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.7; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-section__btns { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.cta-urgency { margin-top: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.cta-urgency span { color: #f59e0b; font-weight: 600; }
@media (min-width: 480px) { .cta-section__btns { flex-direction: row; justify-content: center; } }

/* === CONTACT === */
.contact__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}
.contact__info h2 {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.contact__info > p { color: var(--c-muted); line-height: 1.7; margin-bottom: 24px; font-size: 0.95rem; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.contact__detail-icon {
  width: 44px; height: 44px;
  background: rgba(0,150,199,0.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact__detail strong { display: block; font-family: var(--f-head); font-size: 0.875rem; font-weight: 700; color: var(--c-navy); }
.contact__detail span { font-size: 0.78rem; color: var(--c-muted); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.trust-badge {
  padding: 8px 14px;
  background: rgba(0,150,199,0.06);
  border: 1.5px solid rgba(0,150,199,0.15);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-blue);
  font-family: var(--f-head);
}
.contact__form-box {
  background: var(--c-gray);
  border-radius: var(--r-xl);
  padding: 32px 24px;
}
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-family: var(--f-head);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,60,120,0.12);
  border-radius: var(--r-sm);
  background: var(--c-white);
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--c-navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(0,150,199,0.1);
}
.form-row textarea { resize: vertical; min-height: 90px; }
@media (min-width: 768px) {
  .contact__inner { flex-direction: row; align-items: flex-start; gap: 60px; }
  .contact__info { flex: 1; }
  .contact__form-box { flex: 1; }
}

/* === FOOTER === */
.footer { background: var(--c-navy); color: var(--c-white); padding: var(--sp-xl) 0 var(--sp-sm); }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-md);
}
.footer__brand img { height: 48px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }
.footer__col h4 {
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--c-cyan); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__dev { color: rgba(255,255,255,0.45); font-weight: 600; }
.footer__social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn:hover { background: rgba(0,150,199,0.15); border-color: rgba(0,150,199,0.3); color: var(--c-cyan); }
@media (min-width: 640px) { .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

/* === FLOATING BUTTONS === */
.float-wa {
  position: fixed;
  bottom: 28px; right: 20px;
  width: 60px; height: 60px;
  background: var(--c-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-wa);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.12); }
.float-wa svg { width: 28px; height: 28px; }
@media (max-width: 767px) { .float-wa { display: none; } }
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-cta-bar a {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-family: var(--f-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.mobile-cta-bar__wa { background: var(--c-wa); }
.mobile-cta-bar__call { background: var(--c-blue); }
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }
.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(3,4,94,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup.show { display: flex; }
.exit-popup__box {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
}
.exit-popup__close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 1.3rem;
  color: var(--c-muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.exit-popup__box h3 {
  font-family: var(--f-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.exit-popup__box p { font-size: 0.875rem; color: var(--c-muted); margin-bottom: 24px; line-height: 1.6; }
