/* ===== Xenta Landing Page CSS (Upgraded, Modern, Rapi, Interaktif) ===== */
:root {
  --primary: #3a86ff;
  --primary-dark: #2361b8;
  --accent: #ffbe0b;
  --bg: #f8f9fc;
  --text: #1d1d1f;
  --radius: 20px;
  --shadow-card: 0 8px 32px rgba(58,134,255,0.09), 0 1.5px 6px rgba(30,41,59,0.03);
  --shadow-hover: 0 24px 64px rgba(35,118,252,0.13);
  --font-main: 'Manrope', 'Inter', 'Plus Jakarta Sans', Arial, sans-serif;
}

/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}
img, svg { max-width: 100%; height: auto; display: block; }

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Spacing */
section {
  padding: 72px 0;
  position: relative;
}
section:not(:last-child) {
  border-bottom: 1px solid #eaf2ff;
}
section > .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* Navbar */
.navbar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eaf2ff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(58,134,255,0.04);
  transition: box-shadow 0.2s;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link { display: flex; align-items: center; }
.logo { height: 36px; width: auto; transition: transform 0.2s; }
.logo-link:hover .logo { transform: scale(1.07) rotate(-3deg); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  position: relative;
}
.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: color 0.2s;
  padding: 6px 0;
  letter-spacing: 0.01em;
  border-radius: 6px;
  background: none; /* Hapus background */
}
.nav-link:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  background: #f0f6ff;
}
.nav-link:hover { color: var(--primary); background: none; }
.nav-link.active {
  color: var(--primary);
  font-weight: 700;
  background: none; /* Hapus background kotak */
}
.nav-link.active::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(58,134,255,0.10);
  animation: navActiveBar 0.5s cubic-bezier(.4,0,.2,1);
}
@keyframes navActiveBar {
  from { width: 0; opacity: 0; }
  to { width: 32px; opacity: 1; }
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.btn {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s, box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(58,134,255,0.04);
}
.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-dark);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03);
}
.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03);
}
.btn-lg {
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #f9fbff 0%, #eef3ff 100%);
  padding: 96px 0 72px 0;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1 1 480px;
  max-width: 520px;
}
.hero-label {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: rgba(58,134,255,0.07);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 1.18rem;
  color: #475569;
  margin-bottom: 2.2rem;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.hero-cta a {
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 999px;
  transition: all 0.3s;
  white-space: nowrap;
}
.hero-image-wrapper {
  flex: 1 1 480px;
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-mockup {
  position: relative;
  transform: rotate(-3deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-radius: 24px;
  overflow: hidden;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: none;}
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.hero-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: #0f172a;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  animation: badgePop 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes badgePop {
  0% { opacity: 0; transform: scale(0.7);}
  80% { opacity: 1; transform: scale(1.1);}
  100% { opacity: 1; transform: scale(1);}
}

/* Dashboard Section */
.section-dashboard {
  background: linear-gradient(180deg, #f9fbff 0%, #eef5ff 100%);
}
.dashboard-card {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  align-items: center;
  justify-content: center;
}
.dashboard-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transform: rotate(-2deg);
  transition: transform 0.6s;
}
.dashboard-image img:hover {
  transform: rotate(0deg) scale(1.03);
}
.dashboard-text {
  flex: 1 1 400px;
  max-width: 500px;
}
.badge-step {
  display: inline-block;
  background: #e6f0ff;
  color: var(--primary);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}
.dashboard-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #111827;
}
.dashboard-desc {
  font-size: 1.08rem;
  color: #4b5563;
}

/* Features Section */
.features-section {
  background: linear-gradient(180deg, #f8fbff 0%, #e8f1ff 100%);
}
.features-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features-text {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 44px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.features-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #001738;
  margin-bottom: 0;
  letter-spacing: -0.5px;
  line-height: 1.18;
}
.features-subtitle {
  font-size: 1.13rem;
  color: #4d5d74;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 500;
}
.features-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: stretch;
}
.feature-card {
  background: #fff;
  border: 1px solid #eaf2ff;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow 0.4s, transform 0.4s, opacity 0.8s;
  box-shadow: var(--shadow-card);
  text-align: left;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  position: relative;
  z-index: 1;
}
.feature-card.aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1.02);
  box-shadow: var(--shadow-hover);
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 30px 60px rgba(0,34,80,0.13);
  border-color: var(--primary);
  z-index: 2;
}
.feature-card h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #001738;
}
.feature-card p {
  font-size: 15px;
  color: #3a4a5f;
  line-height: 1.6;
}
.icon-circle {
  width: 64px;
  height: 64px;
  background: radial-gradient(circle at 30% 30%, #3a8bff, #1d63ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(45,100,255,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: scale(0.7) rotate(-12deg);
}
.feature-card.aos-animate .icon-circle {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.feature-card:hover .icon-circle {
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 16px 32px rgba(58,134,255,0.18);
}
.icon-circle img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

/* --- Keunggulan Section (Blog & Insight) --- */
.keunggulan-section {
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #f8fbff 80%, #eaf2ff 100%);
  padding: 80px 0 60px 0;
}
.keunggulan-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.keunggulan-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.keunggulan-subtitle {
  color: #64748b;
  font-size: 1.15rem;
  margin-bottom: 0;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.keunggulan-card {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 2px 12px rgba(58,134,255,0.07);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.18s, background 0.3s;
  position: relative;
  cursor: pointer;
}
.keunggulan-card:hover {
  box-shadow: 0 8px 32px rgba(35,118,252,0.13);
  transform: translateY(-6px) scale(1.03);
  background: #f4f8ff;
}
.keunggulan-icon {
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 30% 30%, #3a8bff, #1d63ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px rgba(45,100,255,0.10);
}
.keunggulan-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
.keunggulan-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.7rem;
  letter-spacing: -0.5px;
}
.keunggulan-card p {
  font-size: 1.07rem;
  color: #3a4a5f;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Keunggulan */
@media (max-width: 1100px) {
  .keunggulan-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}
@media (max-width: 700px) {
  .keunggulan-grid { grid-template-columns: 1fr; gap: 1rem; }
  .keunggulan-card { padding: 1.2rem 0.7rem; }
}

:focus:not(:focus-visible) { outline: none; }

/* --- FAQ Section --- */
.faq-section {
  background: linear-gradient(180deg, #eaf2ff 0%, #f8fbff 100%);
  padding: 80px 0 60px 0;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.faq-subtitle {
  color: #64748b;
  font-size: 1.08rem;
  margin-bottom: 0;
  font-weight: 500;
}
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(58,134,255,0.07);
  border: 1.5px solid #eaf2ff;
  overflow: hidden;
  transition: box-shadow 0.22s, border 0.22s;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.08rem;
  font-weight: 700;
  color: #2563eb;
  padding: 1.2rem 2rem 1.2rem 2.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.18s;
  position: relative;
}
.faq-question:hover, .faq-question[aria-expanded="true"] {
  background: #eaf2ff;
}
.faq-toggle {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url('assets/icons/chevron-down.svg') center center no-repeat;
  background-size: 20px 20px;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f8fbff;
  color: #374151;
  font-size: 1rem;
  padding: 0 2.5rem;
  transition: max-height 0.5s cubic-bezier(.4,0,.2,1), padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 1rem 2.5rem 1.5rem 2.5rem;
}

/* --- Pricing Section Professional Horizontal Card --- */
.pricing-section {
  background: linear-gradient(180deg, #f8f9fc 0%, #f1f5f9 100%);
  padding: 80px 0 60px 0;
}
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.pricing-heading h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.pricing-heading p {
  color: #64748b;
  font-size: 1.08rem;
  margin-bottom: 0;
  font-weight: 500;
}
.billing-toggle {
  display: inline-flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  background: #e5eaf1;
  border-radius: 999px;
  padding: 0.18rem 0.25rem;
  box-shadow: 0 2px 8px rgba(58,134,255,0.04);
}
.toggle-option {
  background: transparent;
  color: #64748b;
  border-radius: 999px;
  padding: 0.38rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-size: 1.05rem;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toggle-option.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(58,134,255,0.10);
}
.badge-discount {
  background: #ffe066;
  color: #b68900;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  margin-left: 0.3rem;
}

/* --- Pricing Cards Horizontal --- */
.pricing-cards {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  margin-top: 2.5rem;
  justify-content: center;
  align-items: stretch;
  position: relative;
}
.pricing-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(58,134,255,0.08);
  border: 1.5px solid #eaf2ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 260px;
  max-width: 300px;
  width: 100%;
  position: relative;
  transition: box-shadow 0.22s, border 0.22s, transform 0.18s;
  overflow: visible;
  z-index: 1;
  animation: cardFadeIn 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(40px);}
  to { opacity: 1; transform: scale(1) translateY(0);}
}
.pricing-card:hover {
  box-shadow: 0 16px 48px rgba(35,118,252,0.13);
  transform: translateY(-8px) scale(1.04);
  border-color: var(--primary);
  z-index: 2;
}
.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: 0 24px 64px 0 rgba(35,118,252,0.18), 0 2px 12px rgba(30,41,59,0.10);
  transform: translateY(-10px) scale(1.07);
  z-index: 3;
}
.badge-popular-tab {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.28rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(58,134,255,0.10);
  letter-spacing: 0.02em;
  z-index: 10;
  border: 2px solid #fff;
  min-width: 90px;
  text-align: center;
}
.card-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  gap: 0.7rem;
  position: relative;
}
.plan-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.15rem;
  letter-spacing: -0.5px;
  text-align: center;
  margin-top: 0.2rem;
}
.plan-sub {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.1rem;
  margin-top: 0.1rem;
  font-weight: 500;
  text-align: center;
}
.plan-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
  gap: 0.3rem;
}
.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  text-align: center;
}
.plan-price span {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 400;
  margin-left: 2px;
}
.plan-subtext {
  display: inline-block;
  background: #eaf2ff;
  color: #2361b8;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.18em 0.9em;
  text-align: center;
  line-height: 1.5;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(58,134,255,0.06);
  margin-bottom: 0.7rem;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0 0;
  color: #374151;
  font-size: 1.02rem;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  border-radius: 8px;
  background: none;
  padding: 0;
  position: relative;
  min-height: 1.6em;
  color: #2563eb;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.pricing-card.aos-animate .plan-features li {
  opacity: 1;
  transform: translateY(0);
}
.icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.1em;
}
.pricing-card .btn-full {
  width: calc(100% - 2.4rem);
  margin: 0;
  margin-top: auto;
  margin-bottom: 1.1rem;
  margin-left: 1.2rem;
  margin-right: 1.2rem;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(35,118,252,0.06);
  border: 2px solid var(--primary);
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  text-decoration: none !important;
  display: block;
  position: relative;
  overflow: hidden;
  user-select: none;
  background: var(--primary);
  color: #fff;
}

/* Responsive Sections */
@media (max-width: 1100px) {
  .features-grid { gap: 24px; }
  .keunggulan-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .pricing-cards { gap: 1.5rem; }
  .pricing-card { min-width: 220px; max-width: 100%; }
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .keunggulan-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .pricing-card {
    min-width: unset;
    max-width: 350px;
    width: 100%;
  }
  .badge-popular-tab {
    top: -22px;
    font-size: 0.85rem;
    padding: 0.18rem 0.7rem;
    min-width: 70px;
  }
}
@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .keunggulan-grid { grid-template-columns: 1fr; gap: 1rem; }
  .keunggulan-card { padding: 1.2rem 0.7rem; }
  .faq-container { padding: 0 0.5rem; }
}

/* Animasi Section */
.keunggulan-section[data-aos], .faq-section[data-aos], .features-section[data-aos], .pricing-section[data-aos] {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.keunggulan-section.aos-animate, .faq-section.aos-animate, .features-section.aos-animate, .pricing-section.aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.keunggulan-card[data-aos], .faq-item[data-aos], .feature-card[data-aos], .pricing-card[data-aos] {
  opacity: 0;
  transform: scale(0.97) translateY(40px);
  transition: opacity 0.5s, transform 0.5s;
}
.keunggulan-card.aos-animate, .faq-item.aos-animate, .feature-card.aos-animate, .pricing-card.aos-animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ===== Footer Modern Professional & Clean ===== */
.footer-modern {
  background: linear-gradient(180deg, #f8f9fc 60%, #eaf2ff 100%);
  border-top: 2px solid #eaf2ff;
  margin-top: 4rem;
  font-family: var(--font-main);
  color: #1d1d1f;
  padding-bottom: 0;
}

/* CTA Footer Section */
.footer-top {
  background: linear-gradient(90deg, #3a86ff 0%, #4cc9f0 100%);
  border-radius: 24px;
  margin: 0 auto 2.5rem auto;
  max-width: 1100px;
  padding: 2.5rem 2rem 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 8px 32px rgba(58,134,255,0.09);
  position: relative;
}
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2.5rem;
}
.footer-cta-content {
  flex: 1 1 400px;
  color: #fff;
}
.footer-cta-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.footer-cta-desc {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.footer-cta-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
.footer-cta-actions .btn-primary,
.footer-cta-actions .btn-outline {
  font-size: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(58,134,255,0.10);
}
.footer-cta-actions .btn-primary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid #fff;
}
.footer-cta-actions .btn-primary:hover {
  background: var(--accent);
  color: #1d1d1f;
  border-color: var(--accent);
}
.footer-cta-actions .btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.footer-cta-actions .btn-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.footer-cta-image {
  flex: 0 0 140px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 120px;
}
.footer-cta-image img {
  width: 120px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(58,134,255,0.09);
  object-fit: cover;
  background: #fff;
  border: 2px solid #eaf2ff;
}

/* Footer Links Grid */
.footer-links-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem 2rem 1.5rem 2rem;
  background: transparent;
}
.footer-links-col h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: #3a86ff;
  letter-spacing: -0.5px;
}
.footer-links-col a {
  display: block;
  color: #1d1d1f;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-links-col a:hover {
  color: #3a86ff;
}

/* Subscribe Form */
.footer-subscribe-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  align-items: center;
}
.footer-subscribe-form input[type="email"] {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1.5px solid #eaf2ff;
  font-size: 1rem;
  outline: none;
  width: 140px;
  background: #fff;
  transition: border 0.2s;
}
.footer-subscribe-form input[type="email"]:focus {
  border-color: #3a86ff;
}
.footer-subscribe-form button {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: #3a86ff;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-subscribe-form button:hover {
  background: #2361b8;
}
.footer-subscribe-note {
  font-size: 0.92rem;
  color: #64748b;
  margin-top: 0.5rem;
}
.footer-subscribe-note a {
  color: #3a86ff;
  text-decoration: underline;
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf2ff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(58,134,255,0.08);
  border: 1.5px solid #eaf2ff;
}
.footer-social-icons a:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(58,134,255,0.18);
  border-color: var(--primary);
}
.footer-social-icons img {
  width: 24px;
  height: 24px;
  filter: grayscale(0.2);
  transition: filter 0.2s;
}
.footer-social-icons a:hover img {
  filter: none;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1.5px solid #eaf2ff;
  gap: 1.5rem;
  background: transparent;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-logo {
  height: 32px;
  width: auto;
}
.footer-title {
  display: none;
}
.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
}
.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #3a86ff;
}
.footer-copyright {
  color: #64748b;
  font-size: 0.95rem;
  text-align: right;
  width: 100%;
  margin-top: 0.7rem;
  letter-spacing: 0.01em;
  border-top: 1px solid #eaf2ff;
  padding-top: 1rem;
}

/* Responsive Footer */
@media (max-width: 1100px) {
  .footer-top, .footer-links-grid, .footer-bottom {
    max-width: 98vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding: 2rem 1rem 1rem 1rem;
  }
}
@media (max-width: 900px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-bottom { padding: 1.2rem 1rem 0.7rem 1rem; gap: 1rem; }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .footer-top, .footer-bottom {
    padding: 1rem 0 0.5rem 0;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-brand { margin-bottom: 0.7rem; }
  .footer-links-grid { grid-template-columns: 1fr; gap: 0.7rem; padding: 1rem 0.5rem 0.5rem 0.5rem; }
  .footer-social-icons a { width: 36px; height: 36px; }
  .footer-cta-title { font-size: 1.3rem; }
}

/* Animasi Section Footer */
.footer-top[data-aos], .footer-links-grid[data-aos], .footer-bottom[data-aos] {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.footer-top.aos-animate, .footer-links-grid.aos-animate, .footer-bottom.aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Accessibility: Hide outline only for mouse users */
:focus:not(:focus-visible) { outline: none; }