/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,200,0..1,0');

.font-serif {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(to bottom right, var(--serif-grad-start), var(--serif-grad-end) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 0.1em 0.25em;
  margin: -0.1em -0.25em;
}

html {
  scroll-behavior: auto !important;
  scroll-padding-top: 80px;
}

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

:root {
  --white: #111811;
  --bg: #060905;
  --bg-subtle: #0a0f0a;
  --card: #111811;
  --text: #f1f5f9;
  --muted: #d1d1d1;
  --accent: #b2ff00;
  --accent-dark: #8ecc00;
  --accent-light: rgba(178, 255, 0, 0.1);
  --border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-ol: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-prm: 0 10px 30px rgba(178, 255, 0, 0.25);
  --serif-grad-start: #ffffff;
  --serif-grad-end: #ce9bec;
  --card-bg: #111811;
  --pricing-bg: #0d130d;
  --pricing-bg-card: #111811;
  --pricing-bg-price: rgba(255, 255, 255, 0.03);
  --pricing-border: rgba(255, 255, 255, 0.08);
  --pricing-border-accent: rgba(178, 255, 0, 0.3);
  --pricing-green: #b2ff00;
  --pricing-green-dark: rgba(178, 255, 0, 0.12);
  --pricing-green-dim: rgba(178, 255, 0, 0.1);
  --pricing-purple: #b388ff;
  --pricing-white: #ffffff;
  --pricing-muted: rgba(255, 255, 255, 0.6);
  --pricing-muted2: rgba(255, 255, 255, 0.4);
  --pricing-strike: rgba(255, 255, 255, 0.35);
  --pricing-radius-sm: 12px;
}

/* Base */
body {
  font-family: 'Google Sans Flex', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ── */
.navbar-centered {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.navbar-centered::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 120px;
  background: linear-gradient(to bottom, rgba(6, 9, 5, 1) 40%, rgba(6, 9, 5, 0) 100%);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.navbar-centered.scrolled::before {
  opacity: 1;
}

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

.nav-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -1px;
}

.nav-logo img {
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-links-centered {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 12px 40px;
  gap: 40px;
  list-style: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-centered.scrolled .nav-links-centered {
  scale: 1.02;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.116);
}

.nav-logo .logo-small {
  display: none;
}

.navbar-centered.scrolled .nav-logo .logo-large {
  display: none;
}

.navbar-centered.scrolled .nav-logo .logo-small {
  display: inline-block;
}

.navbar-centered.scrolled .nav-links-centered>li.nav-logo {
  display: flex;
  align-items: center;
}

.navbar-centered.scrolled .nav-links-centered>li>#konsultasi-btn {
  display: flex;
  align-items: center;
}

.nav-links-centered a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links-centered a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 12px var(--accent);
  opacity: 0;
  pointer-events: none;
}

.nav-links-centered li:hover>a {
  color: var(--accent);
  transform: translateY(-3px);
}

.nav-links-centered li:hover>a::after {
  width: 20px;
  opacity: 1;
}

.nav-links-centered a.active {
  color: var(--accent);
}

.nav-links-centered a.active::after {
  width: 20px;
  opacity: 1;
}

.nav-links-centered li.has-dropdown:hover>a::after {
  width: 0;
  opacity: 0;
}

.nav-links-centered li {
  position: relative;
}

/* ==========================================================================
   DROPDOWN — SIMPLE LIST STYLE
   ========================================================================== */

.dropdown-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  transform-origin: top center;
  min-width: 300px;
  padding: 8px 0;
  border-radius: 16px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1000;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Safe Triangle Bridge */
.nav-links-centered li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 55px;
  background: transparent;
  pointer-events: auto;
  z-index: 999;
}

/* Hover trigger */
.nav-links-centered li:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* ── Simple dropdown list ── */
.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a {
  transform: none !important;
}

.dropdown-menu-simple li {
  margin: 0;
  padding: 0;
}

.dropdown-menu-simple a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu-simple a .material-symbols-outlined {
  font-size: 1.3rem;
  flex-shrink: 0;
  font-variation-settings: 'FILL' 1, 'wght' 500;
}

.dropdown-menu-simple a:hover .material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 700;
}

.dropdown-menu-simple a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.dropdown-menu-simple a:hover .material-symbols-outlined {
  opacity: 1;
}

.dropdown-menu-simple .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 6px 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav {
  background: #000000;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-nav:hover {

  background: var(--accent);
}


.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Menu Overlay Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.537);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(40px);
  z-index: 1000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  width: 100%;
}

.mobile-menu-close {
  background: rgba(26, 26, 26, 0.432);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  color: #000000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.mobile-nav-links a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}

.mobile-submenu {
  list-style: none;
  padding-left: 16px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-submenu a {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
  letter-spacing: 0 !important;
}

.mobile-menu-cta {
  background: var(--accent);
  color: #060905;
  padding: 18px;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: auto;
}


.main-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-wrapper {
  max-width: none;
  padding-bottom: 10px;
  background: var(--bg);
  margin: 0;
  border-radius: 0;
  background: #060905;
  background: radial-gradient(circle at 100% 0%, rgba(150, 207, 17, 0.329) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(179, 255, 0, 0.349) 0%, transparent 40%),
    linear-gradient(135deg, #060905 0%, #0a1f0a 100%);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 700px;
  padding-top: 140px;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}


.service-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  margin-bottom: 48px;

  background: radial-gradient(circle at 0% 100%, rgba(178, 255, 0, 0) 0%, rgba(255, 255, 255, 0.05) 70%);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

  transition: transform 0.5s ease, box-shadow 0.5s ease;
  /* Dipercepat sedikit agar lebih responsif */
  overflow: hidden;

  /* Nilai default jika JS belum di-load */
  --x: 50%;
  --y: 50%;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: radial-gradient(circle 600px at var(--x) var(--y), rgba(143, 143, 143, 0.25) 0%, transparent 80%),
    linear-gradient(90deg, rgba(6, 9, 5, 0) 0%, rgba(10, 31, 10, 0) 100%);

  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-item:hover::before {
  opacity: 1;
}


.service-item h2 {
  color: var(--text) !important;
}

.service-item p {
  color: var(--muted) !important;
}

.service-item-btns {
  display: flex;
  gap: 16px;
}

.service-item-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  background: var(--accent-light);
  border: 1px solid rgba(197, 197, 197, 0.274);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero h1 span:not(.font-serif) {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: var(--accent);
  color: #060905;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  background: none;
  outline: 1px solid var(--border);
  color: var(--accent);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-prm);
}

.btn-outline:hover {
  border: 1px solid var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-ol);
}

.paket-outline {
  background: #000000;
  color: var(--text);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #757575;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.paket-outline:hover {
  background-color: var(--accent);
  color: #060905;
  transform: translateY(-2px);
  box-shadow: var(--shadow-ol);
}


/* ── TRUSTED ── */
.trusted {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.trusted p {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.logos {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.logos:hover {
  opacity: 1;
}

/* ── SECTION STYLES ── */
.section-label {
  display: inline-flex;
  align-items: center;
  background: rgba(148, 163, 184, 0.1);
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

:root.light-theme .section-label {
  background: rgba(0, 0, 0, 0.05);
  color: #64748b;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 24px;
}

/* dashboard card */
.hero-visual {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 340px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  opacity: 1;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

/* Rotation for visual on the right (faces center-left) */
.hero-visual.v-right {
  transform: translateY(0px) rotateY(-20deg) rotateX(4deg);
}

.hero-visual.v-right:hover {
  transform: translateY(-16px) scale(1.02);
}


/* Rotation for visual on the left (faces center-right) */
.hero-visual.v-left {
  transform: translateY(0) rotateY(20deg) rotateX(4deg);
}

.hero-visual.v-left:hover {
  transform: translateY(-16px) scale(1.02);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dash-badge {
  background: #ef4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.dash-title {
  font-weight: 600;
  font-size: 0.875rem;
}

.dash-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: auto;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.task-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.8rem;
}

.task-name {
  font-weight: 500;
  color: var(--text);
}

.task-date {
  font-size: 0.75rem;
  font-weight: 600;
}

.task-date.red {
  color: #ef4444;
}

.task-date.blue {
  color: #B2FF00;
}

.task-date.purple {
  color: #8b5cf6;
}

.avatars {
  display: flex;
  margin-top: 16px;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  background: linear-gradient(135deg, #B2FF00, #89c400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: white;
  font-weight: 700;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: 8px;
  align-self: center;
}

/* ── TRUSTED ── */
.trusted {
  max-width: 1200px;
  margin: 0 auto 72px;
  padding: 0 48px;
  text-align: center;
}

.trusted p {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 24px;
  letter-spacing: .04em;
}

.logos {
  padding: 20px 0;
  position: relative;
  width: 100%;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 80px;
  justify-content: center;
  align-items: center;
}

.client-logos img {
  height: 32px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.client-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

/* ── WHY CHOOSE US BENTO ── */
.why-section {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 48px;
}

.why-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
  margin-top: 60px;
}

.why-bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-bento-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  translate: 0 -4px;
}

.why-bento-card.wide {
  grid-column: span 2;
}

.why-bento-card.tall {
  grid-row: span 2;
}

.why-bento-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  z-index: 2;
}

.why-bento-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  z-index: 2;
}

.why-bento-visual {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  opacity: 0.8;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .why-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .why-bento-card.wide,
  .why-bento-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .why-bento-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SERVICE ITEM ── */
.service-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 48px;
}

.service-card {
  background: var(--white);
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.service-card-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list li {
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
}

.service-card-img {
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-desc {
  font-size: 1rem;
  color: var(--muted);
  margin: 24px 0 32px;
  line-height: 1.6;
}

/* ── WHY CHOOSE ── */
.why-section {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.why-img {
  border-radius: 32px;
  overflow: hidden;
  height: 480px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
}

.why-img-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #111811 0%, #060905 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-item {
  flex-direction: column;
  gap: 8px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.feature-icon .material-symbols-outlined {
  font-size: 1.25rem;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.why-desc {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 420px;
  margin-top: 8px;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: radial-gradient(circle 750px at 50% 50%, #b3ff0077 0%, rgba(178, 255, 0, 0.05) 50%, transparent 80%), #060905;
  padding: 80px 48px;
  text-align: center;
}

.how-inner {
  max-width: 1200px;
  padding: 0 48px;
  margin: 0 auto;
}

@media(max-width: 768px) {
  .how-inner {
    padding: 0 12px;
  }

  .how-section {
    background: radial-gradient(circle 1200px at 50% 0%, #b3ff0065 0%, rgba(178, 255, 0, 0.05) 40%, transparent 100%),
      radial-gradient(circle 600px at 20% 50%, #b3ff0065 0%, rgba(178, 255, 0, 0.05) 50%, transparent 100%),
      radial-gradient(circle 1200px at 50% 100%, #b3ff0065 0%, rgba(178, 255, 0, 0.05) 50%, transparent 100%), #060905;
    padding: 80px 48px;
    text-align: center;
    margin-bottom: 80px;
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  position: relative;
}

.step-visual {
  width: 100%;
  height: 240px;
  perspective: 1000px;
  margin-bottom: 10px;
}

.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #060905;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

html {
  font-family: 'Google Sans Flex', sans-serif;
  scroll-behavior: auto !important;
}



.step-content h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-content p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing-section,
.pricing-wrap {
  background: radial-gradient(circle at 50% 60%, #b2ff0065 0%, rgba(178, 255, 0, 0.05) 50%, transparent 80%), #060905;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 100px 0px 100px;
}

.pricing-inner {
  max-width: 1200px;
  padding: 0 48px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  .pricing-section,
  .pricing-wrap {
    padding: 60px 0 !important;
    background: radial-gradient(circle at 50% 60%, #b2ff0088 0%, rgba(178, 255, 0, 0.05) 50%, transparent 80%), #060905;

  }

  .pricing-inner {
    padding: 0 12px;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pricing-ecom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Pricing Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px auto 0;
  flex-wrap: wrap;
  padding: 6px;
  background: #29292900;
  border: 1px solid var(--border);
  border-radius: 100px;
  width: fit-content;
  max-width: 100%;
}

.pricing-tab-btn {
  background: transparent;
  color: var(--muted);
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.pricing-tab-btn:hover {
  color: var(--text);
  background: rgba(82, 82, 82, 0.555);
}

.pricing-tab-btn.active {
  background: rgba(255, 255, 255, 0.342);
  color: #ffffff;
}

:root.light-theme .pricing-tab-btn:hover {
  background: rgba(228, 228, 228, 0.5);
  color: var(--muted);
}

:root.light-theme .pricing-tab-btn.active {
  background: rgba(160, 160, 160, 0.26);
  color: var(--text);
}

.pricing-tab-content {
  display: none;
  animation: fadeInTab 0.4s ease forwards;
}

.pricing-tab-content.active {
  display: block;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 767px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pricing-ecom-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tabs {
    border-radius: 20px;
    padding: 10px;
  }

  .pricing-tab-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   PRICING CARD ONLY (Extracted from style.css)
      ========================================================================== */

.pricing-card {
  background: rgba(17, 24, 17, 0.65);
  border: 1px solid var(--pricing-border);
  border-radius: 32px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: scale(1.02) translateY(-3px);
  border-color: rgba(178, 255, 0, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.096);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.popular {
  border-color: #b2ff00;
  background: linear-gradient(to bottom, rgba(17, 24, 17, 0.8), rgba(178, 255, 0, 0.04));
  box-shadow: 0 0 40px rgba(178, 255, 0, 0.08);
}


.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--pricing-green);
  color: #060905;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(178, 255, 0, 0.25);
}

/* Logo Row */
.pricing-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.pricing-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--pricing-green-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: var(--pricing-green);
}

.pricing-logo-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--pricing-white);
  letter-spacing: 0.01em;
}

.pricing-breadcrumb {
  font-size: 11px;
  color: var(--pricing-muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 2px;
}

/* Badge */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pricing-green-dim);
  border: 1px solid var(--pricing-border-accent);
  color: var(--pricing-green);
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}

.pricing-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--pricing-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Headline */
.pricing-headline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--pricing-muted);
  letter-spacing: 0.02em;
}

.pricing-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--pricing-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.pricing-title em {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--pricing-purple);
}

:root.light-theme .pricing-title em {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--pricing-purple);
}

.pricing-desc {
  font-size: 13.5px;
  color: var(--pricing-muted);
  line-height: 1.6;
  margin-top: 6px;
}


.pricing-price-normal {
  font-size: 16px;
  color: #bdbdbd;
  text-decoration: line-through;
  font-weight: 400;
}

.pricing-price-main {
  font-size: 36px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

:root.light-theme .pricing-price-main {
  font-size: 36px;
  font-weight: 700;
  color: black;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pricing-price-period {
  font-size: 12px;
  font-weight: 400;
  color: var(--pricing-muted);
  letter-spacing: 0;
}

.pricing-price-renewal {
  font-size: 11.5px;
  color: #bdbdbd;
  margin-top: 2px;
}

/* Divider */
.pricing-divider {
  border: none;
  border-top: 1px solid var(--pricing-border);
  margin: 0;
}

/* Features */
.pricing-feat-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--pricing-muted2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 13.5px;
  color: var(--pricing-white);
  line-height: 1.4;
}

.pricing-features li .check {
  width: 18px;
  height: 18px;
  background: var(--pricing-green-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li .check svg {
  width: 10px;
  height: 10px;
  stroke: var(--pricing-green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-features li strong {
  color: var(--serif-grad-end);
  font-weight: 600;
}

:root.light-theme .pricing-features li strong {
  color: #ff7f44;
  font-weight: 600;
}

.pricing-features li.disabled {
  color: var(--pricing-muted2);
}

.pricing-features li.disabled .check {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-features li.disabled .check svg {
  stroke: var(--pricing-muted2);
}

/* CTA Buttons */
.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(360deg, #16035ef2, #959cfff2);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.01em;
  width: 100%;
}

.pricing-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

:root.light-theme .pricing-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(360deg, #803a1b, #ec8a52);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.01em;
  width: 100%;
}

:root.light-theme .pricing-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.pricing-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 100px;
  border: 1px solid var(--pricing-border);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, #16035ef2, #959cfff2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

.pricing-btn-secondary:hover::before {
  opacity: 1;
}

:root.light-theme .pricing-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgb(56, 56, 56);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 100px;
  border: 1px solid var(--pricing-border);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

:root.light-theme .pricing-btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, #803a1b, #ec8a52);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

:root.light-theme .pricing-btn-secondary:hover::before {
  opacity: 1;
}

.pricing-btn-secondary:hover {
  color: rgb(255, 255, 255);
}

:root.light-theme .pricing-btn-secondary:hover {
  color: rgb(255, 255, 255);
}

/* Light Theme Pricing Cards - Black Text */
:root.light-theme .pricing-card {
  --pricing-bg: #ffffff;
  --pricing-bg-card: #ffffff;
  --pricing-bg-price: #f8fafc;
  --pricing-border: rgba(0, 0, 0, 0.1);
  --pricing-border-accent: rgba(168, 230, 61, 0.4);
  --pricing-green: #16a34a;
  --pricing-green-dark: #dcfce7;
  --pricing-green-dim: rgba(22, 163, 74, 0.1);
  --pricing-purple: #7c3aed;
  --pricing-white: #000000;
  --pricing-muted: rgba(0, 0, 0, 0.6);
  --pricing-muted2: rgba(0, 0, 0, 0.4);
  --pricing-strike: rgba(0, 0, 0, 0.35);
}

:root.light-theme .pricing-card.popular {
  border: 2px solid var(--pricing-green);
  box-shadow: 0 0 40px rgba(22, 163, 74, 0.15);
}

:root.light-theme .popular-badge {
  background: var(--pricing-green);
  color: #ffffff;
}

:root.light-theme .pricing-card::before {
  opacity: 0.2;
}

:root.light-theme .pricing-logo-mark svg {
  fill: var(--pricing-green);
}

:root.light-theme .pricing-badge svg {
  stroke: var(--pricing-green);
}

:root.light-theme .pricing-features li .check svg {
  stroke: var(--pricing-green);
}

/* ── FAQ ── */
.faq-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 48px;
}

.faq-grid {
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: fit-content;
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  gap: 16px;
}

.faq-question .q-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question .material-symbols-outlined {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
  opacity: 0;
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-item.active .faq-question .toggle-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
  opacity: 1;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PORTFOLIO ── */
.portfolio-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 48px;
}

.portfolio-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.portfolio-info-side {
  position: sticky;
  top: 150px;
}

.portfolio-info-side .section-title {
  text-align: left !important;
  margin-bottom: 24px;
}

.portfolio-desc {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 400px;
}

.portfolio-image-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.portfolio-image-wrapper {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-image-wrapper:hover {
  transform: scale(1.02);
}

.portfolio-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .portfolio-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .portfolio-info-side {
    position: static;
    text-align: center;
  }

  .portfolio-info-side .section-title {
    text-align: center !important;
  }

  .portfolio-desc {
    margin: 0 auto;
  }

  .portfolio-info-side .btn-outline {
    margin: 32px auto 0 !important;
  }
}

.portfolio-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.portfolio-img {
  height: 480px;
  background: #f8fafc;
  padding: 30px 30px 0 30px;
  overflow: hidden;
  position: relative;
}

.portfolio-mockup {
  background: var(--bg-subtle);
  height: 100%;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-mockup {
  transform: translateY(-10px);
}

.portfolio-info {
  padding: 32px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.portfolio-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-info p {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.step-visual {
  height: 240px;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pesan-visual {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.pesan-visual:hover {
  transform: translateY(-16px) scale(1.02);
  cursor: pointer;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #060905;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: none;
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ── TESTIMONIALS ── */
.testimonial-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-card h4 {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: normal;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.reviewer-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── CTA ── */

footer {
  background: #060905;
  background: radial-gradient(circle at 0% 0%, #0a0f0a 0%, transparent 40%),
    radial-gradient(circle 1200px at 50% 150%, rgba(138, 196, 1, 0.596) 0%, transparent 50%);
  margin: 100px 0 0 0;
  border-top: 1px solid #2b2b2b;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  padding: 100px 0 60px;
  color: white;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 40px;
}

.footer-cta-text h2 {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 32px;
  max-width: 600px;
  letter-spacing: -1px;
  color: white;
}

.footer-btn {
  display: inline-block;
  background: var(--accent);
  color: #060905;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.2);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main .footer-links-col:first-child {
  grid-column: span 2;
}

.footer-newsletter h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-newsletter p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  max-width: 320px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 14px 20px;
  color: white;
  outline: none;
  backdrop-filter: blur(10px);
}

.newsletter-form button {
  background: var(--accent);
  border: none;
  border-radius: 100px;
  padding: 0 24px;
  color: #060905;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background: var(--text);
  color: #060905;
}

.footer-links-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col ul li {
  margin-bottom: 14px;
}

.footer-links-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links-col ul li a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
  margin: 0;
}

footer span {
  color: #94a3b8;
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 1rem;
}

.bento-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero-left {
  animation: fadeUp 1s ease both;
}

.hero-visual {
  animation: fadeUp 1s ease .15s backwards;
}

.pesan-visual {
  animation: fadeUp 1s ease .15s backwards;
}

/* ── FAQ ── */
.faq-section {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 48px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Google Sans Flex', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  gap: 20px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--accent);
  background: #0f140f;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 32px 60px;
    border-radius: 32px;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }


  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
    margin-inline: auto;
  }

  .hero-btns {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    background: rgba(43, 43, 43, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    color: var(--accent);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  .navbar-centered {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    height: auto;
  }

  .nav-top {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links-centered {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  body {
    padding-top: 0;
  }

  .service-item {
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 40px 24px;
    text-align: center;
    border-bottom: none;
  }

  .service-item:last-child {
    border-bottom: none;
  }


  .service-item .hero-visual {
    order: -1 !important;
    height: 300px;
    max-width: 100%;
  }

  .service-item-left {
    align-items: center;
    gap: 24px;
  }

  .service-item-left h2 {
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .service-item-left p {
    font-size: 1rem;
    max-width: 100%;
  }

  .service-item-btns {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .service-item-btns .btn-primary,
  .service-item-btns .btn-outline {
    width: 100%;
  }


  .why-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .why-bento-card {
    padding: 32px 24px;
    border-radius: 24px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .why-bento-card div[style*="max-width: 50%"] {
    max-width: 100% !important;
  }

  .why-bento-card.wide,
  .why-bento-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .why-bento-visual {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin-top: 24px;
    width: 100% !important;
    height: 200px !important;
    transform: none !important;
    opacity: 1;
    flex-shrink: 0;
  }


  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pricing-card {
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
  }

  @media (max-width: 768px) {
    .pricing-card {
      margin: 12px;
      padding: 24px;
      border-radius: 20px;
    }
  }

  .pricing-card h3 {
    font-size: 1.4rem;
  }

  .pricing-card .price {
    font-size: 2.2rem;
    justify-content: center;
  }

  .pricing-features {
    text-align: left;
    margin-bottom: 32px;
  }

  .pricing-features li {
    font-size: 0.9rem;
    gap: 10px;
  }

  .pricing-card .btn-primary,
  .pricing-card .paket-outline {
    width: 100%;
    padding: 16px;
  }


  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-img {
    height: 320px;
    padding: 20px 20px 0 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #layanan,
  .trusted,
  .service-section,
  .why-section,
  .portfolio-section,
  .testimonial-section,
  .faq-section {
    padding: 0 32px !important;
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }



  .section-title {
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center !important;
  }


  .how-section {
    padding: 60px 32px;
  }


  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pesan-visual {
    height: 200px;
  }

  .hero-visual,
  .pesan-visual {
    transform: none !important;
    height: 300px;
  }

  .hero-visual:hover,
  .pesan-visual:hover {
    transform: translateY(-8px) !important;
  }

  #footer {
    margin: 60px 0 0 0;
    border-radius: 0;
    padding: 60px 0 40px;
  }

  .footer-inner {
    padding: 0 32px;
  }


  .footer-top {
    margin-bottom: 48px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
  }

  .footer-main .footer-links-col:first-child {
    grid-column: span 2;
  }

  .footer-main .footer-links-col:first-child p {
    font-size: 16px !important;
  }

  .footer-main .footer-links-col:first-child ul li a {
    font-size: 15px !important;
  }

  .footer-cta-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    padding: 16px;
  }
}

/* Scroll To Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(20px);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--accent);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #16be54;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.wa-tooltip {
  position: absolute;
  right: 64px;
  background: #16be54;
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow);
  pointer-events: none;
  animation: fadeLeft 0.5s ease both;
}

.wa-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #16be54;
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .wa-tooltip {
    right: 56px;
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 10px;
  }
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
  }
}

.about-section-grid {
  max-width: 1200px;
  margin: 100px auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

:root.light-theme .about-section-grid {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #060905;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about-section-grid p,
.about-section-grid .section-title {
  color: inherit !important;
}

/* Serif gradient adjustment */
:root:not(.light-theme) .about-section-grid .font-serif {
  --serif-grad-start: #ffffff;
}

:root.light-theme .about-section-grid .font-serif {
  --serif-grad-start: #060905;
}

/* Adjust about features icons */
:root:not(.light-theme) .about-section-grid .about-features>div>div:first-child {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

:root.light-theme .about-section-grid .about-features>div>div:first-child {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #060905 !important;
}

@media (max-width: 992px) {
  .about-section-grid {
    grid-template-columns: 1fr;
    padding: 60px 30px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px auto;
  }

  .about-section-grid>div:first-child {
    text-align: center;
  }

  .about-section-grid .section-label {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .about-section-grid .section-label {
    margin: 0 auto 20px !important;
  }

  .about-section-grid .section-title {
    text-align: center !important;
  }

  .about-section-grid .about-features {
    justify-content: center;
  }
}

/* WhatsApp Widget Popup */
.wa-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-popup {
  display: none;
  width: 320px;
  background: rgba(0, 0, 0, 0.726);
  backdrop-filter: blur(30px);
  border: 1px solid var(--accent);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-bottom: 20px;
  animation: waPopupSlideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom right;
}

.wa-popup.show {
  display: block;
}

@keyframes waPopupSlideUp {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(50px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.wa-popup-header {
  padding: 20px;
  color: white;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-popup-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 0;
}

.wa-popup-close:hover {
  opacity: 1;
}

.wa-popup-body {
  padding: 20px;
}

.wa-chat-bubble {
  background: #1a261a;
  color: white;
  padding: 16px;
  border-radius: 0 16px 16px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: inline-block;
}

.wa-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #16be54;
  color: white;
  padding: 14px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(22, 190, 84, 0.3);
  transition: all 0.2s;
}

.wa-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 190, 84, 0.4);
}

.wa-cta-btn img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.wa-widget-container .whatsapp-float {
  position: static;
  box-shadow: 0 10px 30px rgba(22, 190, 84, 0.4);
}

@media (max-width: 768px) {
  .wa-widget-container {
    bottom: 20px;
    right: 20px;
  }
}

/* ── LIGHT THEME OVERRIDES ── */
:root.light-theme {
  --bg: #f8fafc;
  --bg-subtle: #ffffff;
  --card: #f1f5f9;
  --text: #0f172a;
  --muted: #475569;
  --accent: #16a34a;
  --accent-dark: #15803d;
  --accent-light: rgba(22, 163, 74, 0.1);
  --border: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
  --shadow-ol: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-prm: 0 10px 30px rgba(22, 163, 74, 0.2);
  --serif-grad-start: #0f172a;
  --serif-grad-end: #ff7f44;
  --white: #ffffff;
}

/* Light theme specific overrides for gradients and backgrounds that are hardcoded */
:root.light-theme .hero-wrapper {
  background: radial-gradient(circle at 100% 0%, rgba(22, 163, 74, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(22, 163, 74, 0.15) 0%, transparent 40%),
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

:root.light-theme .how-section {
  background: transparent;
}

:root.light-theme footer {
  background: #ffffff;
  color: #0f172a;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

:root.light-theme footer h2,
:root.light-theme footer h4,
:root.light-theme footer span {
  color: #0f172a !important;
}

:root.light-theme .footer-links-col ul li a {
  color: #64748b;
}

:root.light-theme .footer-links-col ul li a:hover {
  color: #16a34a;
}

:root.light-theme .footer-newsletter p {
  color: #64748b;
}

:root.light-theme .footer-bottom {
  color: #94a3b8;
}

:root.light-theme .newsletter-form input {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.05);
  color: #0f172a;
}

:root.light-theme .pricing-section,
:root.light-theme .pricing-wrap {
  background: radial-gradient(circle 600px at 50% 60%, #65da9036 0%, rgba(178, 255, 0, 0.05) 50%, transparent 80%), #ffffff;
}

:root.light-theme .navbar-centered::before {
  background: linear-gradient(to bottom, rgba(248, 250, 252, 1) 40%, rgba(248, 250, 252, 0) 100%);
}

:root.light-theme .pricing-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(15, 23, 42, 0.08);
}

:root.light-theme .pricing-card.popular {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

:root.light-theme .pricing-price-block {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(15, 23, 42, 0.08);
}

:root.light-theme .pricing-card.popular .popular-badge {
  color: #ffffff;
}

:root.light-theme .nav-links-centered {
  background: rgba(255, 255, 255, 0.521);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

:root.light-theme .dropdown-menu {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-lg);
}

:root.light-theme .dropdown-menu-simple a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--accent);
}

:root.light-theme .mobile-submenu {
  border-left-color: var(--border);
}

:root.light-theme .mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.664);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

:root.light-theme .mobile-menu-toggle span {
  color: #0f172a;
}

:root.light-theme .mobile-menu {
  background: rgba(255, 255, 255, 0.9);
}

:root.light-theme .mobile-menu a {
  color: #0f172a;
}

:root.light-theme .mobile-menu-close {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

:root.light-theme .wa-chat-bubble {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

:root.light-theme .wa-popup {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--accent);
}

:root.light-theme .wa-popup-header-top p {
  color: #0f172a !important;
}

:root.light-theme .wa-chat-bubble {
  background: #dcffe9;
  color: rgb(26, 26, 26);
  padding: 16px;
  border-radius: 0 16px 16px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: inline-block;
}

/* Ensure green buttons have readable white text in light mode */
:root.light-theme .btn-primary,
:root.light-theme .btn-nav,
:root.light-theme .footer-btn,
:root.light-theme .newsletter-form button {
  color: #ffffff;
}


/* Theme Toggle Button Styles */
.theme-toggle-btn {
  background: rgba(43, 43, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.theme-toggle-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}

:root.light-theme .theme-toggle-btn {
  background: rgba(255, 255, 255, 0.664);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text);
}

:root.light-theme .theme-toggle-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex;
  }
}

/* Stabilo effect in light mode using dark mode's lime green accent */
:root.light-theme .hero h1 span:not(.font-serif) {
  color: var(--text);
  background: linear-gradient(180deg, transparent 20%, rgba(178, 255, 0, 1) 100%);
  padding: 0px 6px;
  display: inline;
}

:root.light-theme .scroll-top {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

:root.light-theme .scroll-top:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--accent);
}

:root.light-theme .service-item {
  background: radial-gradient(circle at 0% 100%, rgba(22, 163, 74, 0) 0%, rgba(255, 255, 255, 0.7) 70%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #060905;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease;
}

:root.light-theme .service-item:hover {
  background: radial-gradient(circle at 0% 100%, rgba(173, 173, 173, 0.08) 0%, rgba(255, 255, 255, 0.7) 70%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--accent) !important;
}

:root.light-theme .service-item h2 {
  color: #060905 !important;
}

:root.light-theme .service-item p {
  color: #475569 !important;
}

/* ── LIGHT MODE MOCKUP OVERRIDES ── */
:root.light-theme .hero-visual {
  border-color: var(--dash-border) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Base style for visuals in service items that haven't been migrated to dash system yet */
:root.light-theme .hero-visual div[style*="background:#0a0f0a"] {
  background: var(--dash-header) !important;
  border-bottom-color: var(--dash-border) !important;
}

:root.light-theme .hero-visual div[style*="background:#05290e"] {
  background: var(--dash-bg) !important;
}

/* Client Logos Light Theme Overrides */
:root.light-theme .client-logos img {
  filter: grayscale(1) invert(1);
  opacity: 0.7;
}

:root.light-theme .client-logos img:hover {
  filter: grayscale(0) invert(0);
  opacity: 1;
}

/* Fix Hover for Client Logos in Light Theme */
:root.light-theme .client-logos img:hover {
  filter: grayscale(0) invert(1);
  opacity: 1;
  transform: scale(1.1);
}

/* Sales Pill Frosted Glass Effect */
.sales-pill {
  position: absolute;
  top: 80px;
  right: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  pointer-events: auto;
  animation: float 3s ease-in-out infinite;
}

.sales-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 40px rgba(178, 255, 0, 0.3);
  border-color: var(--accent);
  color: var(--accent);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Light Theme Adjustments for Sales Pill */
:root.light-theme .sales-pill {
  background: rgba(255, 255, 255, 0.4);
  color: #060905;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

:root.light-theme .sales-pill:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Adjust Sales Pill Position to avoid overlap */
.sales-pill {
  top: 40px !important;
  right: -20px !important;
}

/* Ensure Sales Pill is always on top and has correct position */
.sales-pill {
  position: absolute !important;
  top: 100px !important;
  right: 5% !important;
  z-index: 9999 !important;
}

/* Fine-tuning Sales Pill Position: Bring it closer */
.sales-pill {
  right: 15% !important;
  top: 120px !important;
}

/* -- MOCKUP DASHBOARD SYSTEM -- */
:root {
  --dash-bg: #181818;
  --dash-header: #0a0f0a;
  --dash-url-bg: rgba(255, 255, 255, 0.05);
  --dash-sidebar: rgba(255, 255, 255, 0.03);
  --dash-text: #ffffff;
  --dash-muted: rgba(255, 255, 255, 0.5);
  --dash-card: #0a0f0a;
  --dash-border: rgba(255, 255, 255, 0.1);
}

:root.light-theme {
  --dash-bg: #f8fafc;
  --dash-header: #f1f5f9;
  --dash-url-bg: #ffffff;
  --dash-sidebar: #ffffff;
  --dash-text: #0f172a;
  --dash-muted: #64748b;
  --dash-card: #ffffff;
  --dash-border: rgba(0, 0, 0, 0.08);
}

.mockup-dashboard {
  background: var(--dash-bg);
  display: flex;
  flex-direction: column;
  padding: 0 !important;
}

.dash-browser-header {
  background: var(--dash-header);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--dash-border);
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-amber {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.dash-url {
  flex: 1;
  background: var(--dash-url-bg);
  border: 1px solid var(--dash-border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.65rem;
  color: var(--dash-muted);
  text-align: left;
}

.mockup-address-bar {
  flex: 1;
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

:root.light-theme .mockup-address-bar {
  background: rgb(93 93 93 / 5%) !important;
  border: 1px solid rgb(133 133 133 / 10%) !important;
  color: rgb(61 61 61 / 40%) !important;
}

.dash-body {
  flex: 1;
  display: flex;
  font-family: sans-serif;
  overflow: hidden;
}

.dash-sidebar {
  width: 55px;
  background: var(--dash-sidebar);
  border-right: 1px solid var(--dash-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  gap: 20px;
}

.dash-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

:root.light-theme .dash-logo-icon {
  color: #fff !important;
}

.dash-nav-icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--dash-muted);
}

.dash-nav-icons .material-symbols-outlined {
  font-size: 1.2rem;
}

.dash-nav-icons .material-symbols-outlined.active {
  color: var(--dash-text);
}

.dash-user-avatar {
  margin-top: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: url('https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?w=100&q=80') center/cover;
}

.dash-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  overflow: hidden;
}

.dash-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-h1 {
  color: var(--dash-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.dash-welcome {
  color: var(--dash-muted);
  font-size: 0.6rem;
  margin-top: 2px;
}

.dash-btn-add {
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 6px;
  color: #000000;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

:root.light-theme .dash-btn-add {
  color: #fff !important;
}

.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dash-stat-card {
  background: var(--dash-card);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--dash-border);
}

.dash-stat-card.accent {
  background: var(--accent);
  color: #fff;
}

:root.light-theme .dash-stat-card.accent {
  color: #fff !important;
}

.dash-stat-label-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-stat-icon-bg {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-stat-icon-bg.revenue {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.dash-stat-icon-bg.users {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dash-stat-label {
  color: var(--dash-muted);
  font-size: 0.65rem;
}

:root.light-theme .dash-stat-label {
  color: #64748b;
}

.dash-stat-card.accent .dash-stat-label {
  color: rgba(0, 0, 0, 0.8);
}

:root.light-theme .dash-stat-card.accent .dash-stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.dash-stat-value {
  color: var(--dash-text);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 8px;
}

:root.light-theme .dash-stat-value.accent {
  color: rgba(255, 255, 255, 0.8);
}

.dash-stat-card.accent .dash-stat-value {
  color: #ffffff;
}

/* Ensure white background for cards in light mode as requested */
:root.light-theme .dash-stat-card:not(.accent),
:root.light-theme .dash-chart-card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.dash-chart-title {
  color: var(--dash-text);
  font-size: 0.75rem;
  font-weight: 700;
}

.dash-chart-bars {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}

.dash-chart-bars .bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), var(--accent-light));
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
}

:root:not(.light-theme) .dash-chart-bars .bar {
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

/* CTA Buttons Dark Mode */
:root:not(.light-theme) .btn-primary,
:root:not(.light-theme) .mobile-menu-cta,
:root:not(.light-theme) .footer-btn,
:root:not(.light-theme) .newsletter-form button,
:root:not(.light-theme) .dash-btn-add {
  background-color: #b2ff00 !important;
  color: #060905 !important;
}

:root:not(.light-theme) .btn-nav {
  background-color: #ffffff !important;
  color: #060905 !important;
}

:root:not(.light-theme) .btn-nav:hover {
  background-color: #b2ff00 !important;
  color: #000000 !important;
}

:root:not(.light-theme) .btn-outline {
  border-color: #b2ff00 !important;
  color: #b2ff00 !important;
}

:root:not(.light-theme) .btn-outline:hover {
  background-color: #b2ff00 !important;
  color: #060905 !important;
}

/* Additional Light Theme Polish */
:root.light-theme .faq-item.active {
  background: #f1f5f9 !important;
}

/* ── DARK THEME HERO VISUAL READABILITY FIXES ── */
:root:not(.light-theme) .dash-logo-icon {
  color: #060905;
}

:root:not(.light-theme) .dash-stat-card.accent .dash-stat-value {
  color: #060905;
}

:root:not(.light-theme) .dash-stat-card.accent .dash-stat-icon-bg.users {
  background: rgba(0, 0, 0, 0.1);
  color: #060905;
}

.dash-chart-card {
  background: var(--dash-card);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--dash-border);
  display: flex;
  flex-direction: column;
}

:root.light-theme .step-num {
  color: #ffffff !important;
}

:root:not(.light-theme) .why-bento-card:hover,
:root:not(.light-theme) .bento-card:hover,
:root:not(.light-theme) .portfolio-card:hover,
:root:not(.light-theme) .pricing-card:hover,
:root:not(.light-theme) .testimonial-card:hover,
:root:not(.light-theme) .faq-item:hover,
:root:not(.light-theme) .faq-item.active,
:root:not(.light-theme) .service-item:hover {
  border-color: #b2ff00 !important;
}

:root:not(.light-theme) .nav-links-centered li:hover>a {
  color: #b2ff00 !important;
}

:root:not(.light-theme) .nav-links-centered a::after {
  background: #b2ff00 !important;
  box-shadow: 0 0 12px #b2ff00 !important;
}

/* Pricing Card Dark Mode Overrides */
:root:not(.light-theme) .pricing-card.popular {
  border-color: #b2ff00 !important;
}

:root:not(.light-theme) .pricing-card.popular .popular-badge {
  background: #b2ff00 !important;
  color: #060905 !important;
}

:root:not(.light-theme) .pricing-card .price {
  color: #B2FF00 !important;
}

:root:not(.light-theme) .pricing-features li .material-symbols-outlined {
  color: #b2ff00 !important;
}

:root:not(.light-theme) .pricing-features li.disabled .material-symbols-outlined,
:root:not(.light-theme) .pricing-features li.disabled {
  color: rgba(255, 255, 255, 0.2) !important;
}

/* ── PAGE-SPECIFIC OVERRIDES ── */

/* ── CTA BANNER ── */
.cta-banner {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 48px;
}

.cta-inner {
  background: var(--text);
  color: var(--bg);
  border-radius: 40px;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: 20%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text p {
  color: var(--bg);
  opacity: 0.8;
  font-size: 1rem;
  margin-top: 12px;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -1px;
  line-height: 1.1;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn-cta-white {
  background: var(--bg);
  color: var(--text);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all .3s;
  white-space: nowrap;
  font-size: 0.95rem;
}

.btn-cta-white:hover {
  color: black;
  background: #b2ff00;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-ghost {
  background: rgba(255, 255, 255, 0);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all .3s;
  white-space: nowrap;
  font-size: 0.9rem;
  border: 2px solid var(--bg);
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

:root:not(.light-theme) .btn-cta-ghost:hover {
  background: #c9c9c9;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 0 20px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 32px;
    text-align: center;
  }
}