/* =========================================
   1. SETUP FONTS & VARIABLES
   ========================================= */
:root {
  /* --- Color Variables --- */
  --abpe-electric: #0a84ff;
  --abpe-cyan: #22d3ee;
  --abpe-dark: #062a5e;
  --abpe-muted: #61707f;
  --color-warm-white: #fffef9;
  --color-gold: #f4c430;
  --color-gold-hover: #d4a820;
  --color-leaf-green: #6b8e43;
  --color-earth-brown: #8b7e66;
  --color-deep-dark: #2f2f2a;
  --color-clay-red: #c2433d;

  /* --- Backgrounds & Effects --- */
  --bg-gray: #f4f6f8;
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
  --bg-hero: linear-gradient(180deg, #0b7bff 0%, #008eeb 28%, #007aee 100%);
  --bg-footer: linear-gradient(180deg, #0e4c93 0%, #008eeb 28%, #007aee 100%);
  --hero-texture: rgba(255, 255, 255, 0.03);
  --surface: #ffffff;
  --radius: 28px;
  --gap: 18px;
  --e: cubic-bezier(0.22, 0.9, 0.35, 1);
  --max: 1200px;
  --bg: #f6fbf8;
  --card-bg: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container-gap: 28px;
  --e-s: cubic-bezier(0.22, 0.9, 0.35, 1);

  /* --- FONT SETTINGS  --- */
  --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-accent: "Plus Jakarta Sans", sans-serif;
}

/* =========================================
   2. GLOBAL RESET & BASE STYLES
   ========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-deep-dark);
  background-color: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-text h1,
.section-title,
.footer-title,
.prod-title h3,
.pricing-header h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes zoom-in-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: rotate(15deg) translate(0, 0);
  }
  50% {
    transform: rotate(15deg) translate(-15px, -10px);
  }
}

@keyframes ping {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* =========================================
   3. NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background-color 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
  padding: 25px 0;
  background-color: transparent;
}

.navbar.solid {
  background-color: var(--color-warm-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  padding: 0;
  z-index: 101;
  display: flex;
  align-items: center;
}

.logo-img {
  max-width: 150px;
  height: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  margin: 0 18px;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
  font-family: var(--font-accent);
}

.nav-links a:hover {
  color: var(--color-gold-hover);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.cta-button {
  background-color: var(--color-leaf-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition:
    background-color 0.3s,
    transform 0.3s;
  font-family: var(--font-accent);
}

.cta-button:hover {
  background-color: #86aa5c;
  transform: translateY(-2px);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  overflow: visible;
  background: var(--color-warm-white);
  padding: 160px 0 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 5;
}

.hero-text {
  flex-basis: 55%;
  z-index: 10;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.5;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-deep-dark);
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.hero-text p {
  margin-bottom: 50px;
  color: var(--color-deep-dark);
  font-size: 16px;
  max-width: 500px;
}

.hero-image {
  flex-basis: 35%;
}

.hero-image img {
  width: auto;
  max-width: 500px;
  animation: float 4s ease-in-out infinite;
  height: auto;
}

.circle {
  position: absolute;
  top: 75%;
  left: -2%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-gold), #ffffff);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoom-in-out 1.5s ease-in-out infinite;
}

.animated-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.4px;

  background: linear-gradient(
    120deg,
    #3fa66b,  /* soft green */
    #d6c55c,  /* muted yellow */
    #3fa66b
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: colorShift 8s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* =========================================
   5. POPUP / MODAL
   ========================================= */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  max-width: 90%;
  width: 450px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 2px;
  right: 5px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.close-btn:hover {
  color: var(--color-gold-hover);
}

.popup-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.popup-image:hover {
  transform: scale(1.02);
}

.popup-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
}

/* =========================================
   6. SOLUTIONS SECTION
   ========================================= */
.solutions-section {
  font-family: var(--font-body);
  color: var(--color-deep-dark);
  line-height: 1.45;

  /* UPDATE WARNA: Lebih Kental (Opacity 0.35) */
  background: linear-gradient(
    180deg,
    var(--color-warm-white) 0%,
    rgba(244, 196, 48, 0.45) 45%,
    var(--color-warm-white) 100%
  );
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 24px;
}

.solutions-section .section-top,
.solutions-section .content-grid {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-section .section-top {
  text-align: center;
  margin-bottom: 28px;
}

.solutions-section .kicker {
  display: block;
  color: var(--color-deep-dark);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.solutions-section .section-title {
  margin: 0;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  color: var(--color-gold);
}

.solutions-section .section-sub {
  color: var(--color-deep-dark);
  margin-top: 12px;
  font-size: 16px;
}

/* Pill Navigation */
.solutions-section .pill-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 36px;
  padding: 0 70px;
  max-width: 1000px;
}

.solutions-section .pill-viewport {
  display: flex;
  align-items: center;
  background: var(--pill-bg);
  padding: 8px 10px;
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.solutions-section .pill-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px;
  scrollbar-width: none;
}
.solutions-section .pill-list::-webkit-scrollbar {
  display: none;
}

.solutions-section .pill {
  background: transparent;
  border-radius: 24px;
  padding: 10px 18px;
  color: var(--color-deep-dark);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-size: 16px;
  transition: all 260ms var(--ease);
  font-family: var(--font-accent);
}

.solutions-section .pill:hover {
  background: rgba(0, 0, 0, 0.03);
}

.solutions-section .pill.active {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(6, 50, 80, 0.06);
  color: var(--color-deep-dark);
  transform: translateY(-2px);
}

.solutions-section .pill-controls {
  position: static;
  display: contents;
}

.solutions-section .pill-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--color-gold-hover);
  font-size: 18px;
  transition: all 0.3s ease;
}

.solutions-section .pill-btn:hover {
  background: var(--color-gold-hover);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 194, 179, 0.3);
}

#pillPrev {
  left: 0;
}
#pillNext {
  right: 0;
}

/* Content Grid */
.solutions-section .content-grid {
  display: grid;
  gap: 60px;
  margin-top: 20px;
}

.solutions-section .content-item {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: var(--card-bg);
  border-radius: 30px;
  padding: 48px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.04);
  border: 1px solid rgba(6, 78, 59, 0.03);
}

.solutions-section .content-item:nth-child(even) {
  grid-template-columns: 1.2fr 0.8fr;
}

.solutions-section .content-text h3 {
  margin: 0 0 16px 0;
  color: var(--color-gold-hover);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.solutions-section .content-text p.desc {
  text-align: justify;
  margin: 0 0 24px 0;
  color: var(--color-deep-dark);
  font-size: 18px;
  line-height: 1.6;
}

.solutions-section .feature-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
  list-style: none;
}

.solutions-section .feature-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
}

.solutions-section .feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(6, 78, 59, 0.06);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.solutions-section .visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(6, 50, 80, 0.06);
  height: 100%;
}

.solutions-section .visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 720ms var(--e-s);
}

.solutions-section .visual:hover img {
  transform: scale(1.05);
}

.solutions-section .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--e),
    transform 0.6s var(--e);
}

.solutions-section .fade-up.in-view {
  opacity: 1;
  transform: none;
}

/* =========================================
   7. PRICING SECTION
   ========================================= */
.pricing-section {
  padding: 80px 0;
  /* UPDATE WARNA: Emas di tengah jauh lebih tegas (Opacity 0.45) */
  background: linear-gradient(
    180deg,
    var(--color-warm-white) 0%,
    rgba(244, 196, 48, 0.45) 35%,
    rgba(244, 196, 48, 0.45) 65%,
    var(--color-warm-white) 100%
  );
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  color: linear-gradient(
    90deg,
    var(--color-deep-dark),
    var(--color-earth-brown)
  );
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background-color: #1c1f2e;
  color: #ffffff;
  border-radius: 60px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  transform: scale(1.05);
  background-color: #1c1f2e;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 30px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
  background-color: #fff;
}

.pricing-header img {
  height: 100px;
  margin-bottom: 15px;
}

.pricing-header h3 {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #1c1f2e;
}

.pricing-header p {
  font-size: 16px;
  opacity: 0.8;
  color: #1c1f2e;
}

.pricing-body {
  flex-grow: 1;
}

.pricing-body h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.pricing-body ul {
  list-style: none;
  padding: 0;
}

.pricing-body ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.pricing-body ul li i {
  color: #28a745;
  margin-right: 10px;
  margin-top: 4px;
}

.pricing-footer {
  text-align: center;
  margin-top: 30px;
}

.pricing-footer .price {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.pricing-footer .price span {
  font-size: 20px;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-footer .price .one-time {
  font-size: 14px;
  font-weight: normal;
  opacity: 0.7;
  display: block;
}

.choose-plan-btn {
  background-color: #ffffff;
  color: #1c1f2e;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  transition:
    background-color 0.3s,
    color 0.3s;
  font-family: var(--font-accent);
}

.choose-plan-btn:hover {
  background-color: #f0f0f0;
}

/* =========================================
   8. TESTIMONI / MITRA SECTION
   ========================================= */
.testimoni-section {
  /* UPDATE WARNA: Agak tebal (Opacity 0.30) */
  background: linear-gradient(
    180deg,
    var(--color-warm-white) 0%,
    rgba(244, 196, 48, 0.45) 50%,
    var(--color-warm-white) 100%
  );
  padding-bottom: 60px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.top-meta {
  color: var(--color-leaf-green);
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
  display: inline-block;
  opacity: 0.98;
  font-family: var(--font-accent);
}

h1 {
  margin: 0 0 12px 0;
  font-size: 48px;
  line-height: 1;
  color: var(--color-gold);
  font-weight: 800;
  background: linear-gradient(
    90deg,
    var(--color-deep-dark),
    var(--color-earth-brown)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  transform-origin: left center;
  padding-bottom: 10px;
}

p.lead {
  margin-top: 10px;
  text-align: justify;
  color: var(--color-deep-dark);
  font-size: 18px;
  max-width: 780px;
  opacity: 0.95;
}

.header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 200px;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--container-gap);
  align-items: stretch;
}

.prod-card {
  display: flex;
  gap: 20px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.04);
  overflow: hidden;
  align-items: center;
  min-height: 160px;
  border: 1px solid rgba(6, 78, 59, 0.03);
  transform: translateY(8px);
  transition:
    transform 420ms var(--e-s),
    box-shadow 380ms var(--e-s),
    border-color 380ms var(--e-s);
  will-change: transform;
  opacity: 0;
  transform-origin: center;
}

.prod-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.prod-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 40px rgba(10, 40, 80, 0.12);
  border-color: rgba(10, 132, 255, 0.08);
}

.prod-card .media {
  width: 44%;
  min-width: 120px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(10, 132, 255, 0.05),
    rgba(0, 194, 179, 0.03)
  );
  position: relative;
  transition: transform 520ms var(--e-s);
}

.prod-card:hover .media {
  transform: translateY(-6px) scale(1.02);
}

.prod-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms var(--e-s);
}

.prod-card:hover .media img {
  transform: scale(1.06) rotate(-0.3deg);
}

.prod-card .meta {
  width: 56%;
  padding-right: 6px;
}

.tag {
  display: inline-block;
  background: #f3f7f6;
  color: var(--color-leaf-green);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  font-family: var(--font-accent);
}

.prod-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px 0;
}

.prod-title h3 {
  margin: 0;
  font-size: 22px;
  color: var(--color-gold);
  font-weight: 700;
  transition: transform 320ms var(--e-s);
}

.prod-desc {
  margin: 0;
  color: var(--color-deep-dark);
  font-size: 15px;
}

.prod-card .meta::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold));
  border-radius: 99px;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 420ms var(--e-s),
    transform 360ms var(--e-s);
}

.prod-card.in-view .meta::after {
  opacity: 1;
  transform: none;
}

.prod-card.small {
  min-height: 120px;
  padding: 16px;
}

.prod-card .meta > * {
  transform: translateY(6px);
  opacity: 0;
  transition:
    transform 420ms var(--e-s),
    opacity 420ms var(--e-s);
}

.prod-card.in-view .meta > * {
  transform: none;
  opacity: 1;
}

/* =========================================
   9. FOOTER
   ========================================= */
.container-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px;
}

.footer-hero {
  width: 100%;
  background: var(--color-leaf-green);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
  padding: 48px 0 56px 0;
}

.footer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px
  );
  background-size: 120px 120px;
  mix-blend-mode: overlay;
  opacity: 0.55;
  pointer-events: none;
}

.footer-shape {
  position: absolute;
  left: -6%;
  top: 6%;
  width: 46%;
  height: 88%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%23ffffff" fill-opacity="0.06" rx="36"/></svg>')
    center/cover no-repeat;
  border-radius: 140px;
  transform: rotate(-2deg);
  pointer-events: none;
  filter: blur(0.3px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 36px;
  align-items: center;
  position: relative;
}

.footer-content {
  padding: 12px 0 12px 28px;
  z-index: 2;
}

.footer-title {
  margin: 0 0 12px 0;
  font-size: 64px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -1px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.14));
}

.footer-sub {
  margin: 0 0 22px 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 56ch;
  font-weight: 400;
}

.footer-sosmed {
  display: flex;
  gap: 9px;
}

.social-row {
  display: flex;
  gap: 9px;
  align-items: center;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-grid;
  place-items: center;
  color: #fff;
  transition:
    transform 260ms var(--e),
    background 260ms var(--e),
    box-shadow 260ms var(--e);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.18);
}

.footer-cta-row {
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
}

.btn-cta {
  background: var(--color-warm-white);
  color: var(--color-gold-hover);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(6, 50, 80, 0.12);
  border: 0;
  cursor: pointer;
  transition:
    transform 300ms var(--e),
    box-shadow 300ms var(--e);
  font-family: var(--font-accent);
}

.btn-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(6, 50, 80, 0.18);
}

.legal-links {
  color: rgba(255, 255, 255, 0.88);
  margin-left: 10px;
  font-size: 14px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
}

.footer-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 10px;
}

.visual-card {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 18px 60px rgba(3, 18, 50, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.visual-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transform: translateY(6px);
  transition: transform 680ms var(--e);
}

.visual-card:hover img {
  transform: translateY(0) scale(1.02);
}

.footer-bottom {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  z-index: 2;
}

.animate-up {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms var(--e),
    transform 560ms var(--e);
}

.animate-up.in-view {
  opacity: 1;
  transform: none;
}

/* =========================================
   10. RESPONSIVE DESIGN
   ========================================= */

@media (prefers-reduced-motion: reduce) {
  .social-btn,
  .btn-cta,
  .visual-card img,
  .prod-card,
  .footer-title,
  .whatsapp-float,
  .see-more {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 37px;
  }
  .container {
    max-width: 960px;
  }
  .pricing-cards,
  .testimonial-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 980px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  h1 {
    font-size: 36px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .prod-card {
    flex-direction: row;
  }
  .prod-card .media {
    width: 48%;
  }
  .prod-card .meta {
    width: 62%;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 18px;
  }
  .solutions-section {
    padding: 24px 18px;
  }
  .solutions-section .section-title {
    font-size: 36px;
  }
  .solutions-section .content-item,
  .solutions-section .content-item:nth-child(even) {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
  .solutions-section .visual {
    order: -1;
  }
  .solutions-section .visual img {
    height: 300px;
  }
  .solutions-section .pill-viewport {
    max-width: 100%;
  }
  .solutions-section .content-text h3 {
    font-size: 30px;
  }
  .solutions-section .pill-btn {
    display: none;
  }
  .solutions-section .pill-wrap {
    padding: 0;
  }
  .footer-hero {
    border-radius: 0;
    padding: 36px 0 42px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0;
    align-items: center;
  }
  .footer-content {
    order: 0;
    padding: 0 24px;
    text-align: center;
  }
  .footer-title {
    font-size: 40px;
  }
  .footer-sub {
    margin: 0 auto 16px auto;
    max-width: 46ch;
  }
  .footer-visual {
    order: 1;
    padding: 0 24px;
  }
  .visual-card img {
    height: 220px;
  }
  .footer-shape {
    display: none;
  }
  .container {
    padding: 12px;
  }
  .footer-sosmed {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .social-row {
    width: 200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .social-btn {
    width: 54px;
    height: 54px;
  }
  .legal-links {
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 34px;
  }
  .navbar.solid {
    padding: 5px 0;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 240px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: -20px;
  }
  .nav-links a {
    color: #333;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    margin: 0;
  }
  .nav-links a:hover {
    background-color: #f5f5f5;
  }
  .nav-links .cta-button {
    text-align: center;
    color: white;
    background-color: var(--abpe-electric);
    margin-top: 10px;
  }
  .nav-links .cta-button:hover {
    background-color: #0060df;
  }
  .hamburger-menu {
    display: flex;
    z-index: 1001;
  }
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .logo-img {
    max-width: 90px;
  }
  .container {
    max-width: 600px;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    margin-top: 40px;
  }
  .hero-image img {
    max-width: 70%;
    margin: 0 auto;
  }
  .circle {
    top: 50%;
    left: 30px;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  .popup-content {
    padding: 15px;
    width: 95%;
  }
  .close-btn {
    font-size: 24px;
    top: 8px;
    right: 12px;
  }
  .popup-text {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 16px;
  }
  h1 {
    font-size: 22px;
  }
  .prod-card {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }
  .prod-card .media {
    width: 100%;
    height: 180px;
    border-radius: 14px;
  }
  .prod-card .meta {
    width: 100%;
    padding-top: 12px;
  }
  .products-grid {
    gap: 18px;
  }
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
  .prod-card .meta::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .solutions-section .section-title {
    font-size: 28px;
  }
  .solutions-section .pill {
    padding: 8px 14px;
    font-size: 14px;
  }
  .solutions-section .content-item {
    padding: 24px;
    gap: 24px;
  }
  .solutions-section .visual img {
    height: 240px;
  }
  .solutions-section .content-text h3 {
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .footer-title {
    font-size: 34px;
  }
  .visual-card img {
    height: 180px;
  }
  .social-btn {
    width: 48px;
    height: 48px;
  }
  .footer-sub {
    font-size: 15px;
  }
}
