/* ========================
   VARIABLES & RESET
   ======================== */
:root {
  --white: #ffffff;
  --bg: #f6f6f7;
  --bg-alt: #f0f0f2;
  --border: #e4e4e7;
  --border-med: #d4d4d8;
  --purple: #8B5CF6;
  --purple-dark: #7C3AED;
  --purple-xdark: #6D28D9;
  --purple-light: rgba(139, 92, 246, 0.08);
  --purple-glow: rgba(139, 92, 246, 0.15);
  --orange: #FB923C;
  --orange-dark: #F97316;
  --cyan: #06B6D4;
  --green: #10B981;
  --text: #0f0f11;
  --text-2: #52525b;
  --text-3: #a1a1aa;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 6px rgba(0, 0, 0, 0.05);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12), 0 16px 48px rgba(0, 0, 0, 0.08);
  --shadow-purple: 0 8px 32px rgba(139, 92, 246, 0.2), 0 2px 8px rgba(139, 92, 246, 0.1);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--purple);
  color: white;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-size: 13px;
}

.skip-link:focus {
  top: 0;
}

/* ========================
   SHARED UTILITIES
   ======================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-med);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 18px;
  background: white;
  box-shadow: var(--shadow-xs);
}

.section-top {
  margin-bottom: 40px;
}

.section-top.center {
  text-align: center;
}

.section-top.center .section-label {
  margin: 0 auto 18px;
  display: flex;
  width: fit-content;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-desc {
  color: var(--text-3);
  font-size: 0.9rem;
  margin-top: 8px;
}

.accent-orange {
  color: var(--orange);
}

.accent-purple {
  color: var(--purple);
}

/* Logo dots */
.logo-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 22px;
  height: 22px;
}

.logo-icon.sm {
  width: 18px;
  height: 18px;
  gap: 2.5px;
}

.dot {
  border-radius: 50%;
}

.d1 {
  background: var(--purple);
}

.d2 {
  background: var(--orange);
}

.d3 {
  background: var(--orange);
}

.d4 {
  background: var(--purple);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   NAVIGATION
   ======================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 2px 12px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo img {
  width: 40px;
  height: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

.logo-name strong {
  color: var(--purple);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 7px 12px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--bg);
  color: var(--text);
}

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

.nav-signin {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-signin:hover {
  background: var(--bg);
  color: var(--text);
}

.nav-demo {
  background: var(--purple);
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
}

.nav-demo:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.nav-mobile {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 28px 16px;
  box-shadow: var(--shadow-md);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-mobile a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-mobile a:hover {
  background: var(--bg);
  color: var(--purple);
}


/* ========================
   PEMBERITAHUAN
   ======================== */
.notification-bar {
  padding-top: 75px !important;
  background: linear-gradient(90deg, #a90202 0%, #951d1d 100%);
  color: white;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.notification-icon {
  font-size: 18px;
}

.notification-text {
  max-width: 800px;
}




/* ========================
   HERO SECTIONS
   ======================== */
.hero-section {
  position: relative;
  min-height: 80vh;
  background: var(--bg);
  overflow: hidden;
  padding-top: 62px;
  display: flex;
  align-items: center;
}

.hero-dot-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero-dot-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 55%, transparent 30%, var(--bg) 100%);
}

.hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px 28px 80px;
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  align-items: center;
  gap: 40px;
  min-height: calc(90vh - 62px);
}

/* Hero left floating cards */
.hf-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-stats-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

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

.fsc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.fsc-icon.purple {
  background: var(--purple-light);
}

.fsc-icon.orange {
  background: rgba(251, 146, 60, 0.08);
}

.fsc-val {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.fsc-label {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 1px;
}

.fsc-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.float-badge-card {
  background: white;
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
}

.float-badge-card svg {
  flex-shrink: 0;
}

/* Hero center */
.hero-center {
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-light);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 22px;
}

.hero-center h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-center p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 28px;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-primary-hero {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.btn-secondary-hero {
  background: white;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border-med);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-secondary-hero:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 500;
}

.trust-sep {
  color: var(--border-med);
}

/* Hero right - Device mockups */
.hf-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.hero-devices {
  position: relative;
  width: 260px;
  height: 200px;
}

/* Laptop */
.device-laptop {
  position: absolute;
  bottom: 0;
  left: 0;
  animation: deviceFloat 6s ease-in-out infinite;
}

.laptop-lid {
  width: 220px;
  background: linear-gradient(180deg, #2d2d3a 0%, #1a1a26 100%);
  border-radius: 8px 8px 2px 2px;
  padding: 6px;
  border: 1.5px solid #3a3a4a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 -2px 12px rgba(0, 0, 0, 0.3), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.laptop-notch {
  width: 30px;
  height: 3px;
  background: #3a3a4a;
  border-radius: 2px;
  margin: 0 auto 5px;
}

.laptop-screen-inner {
  background: linear-gradient(160deg, #1e1b4b 0%, #312e81 40%, #1e40af 100%);
  border-radius: 4px;
  aspect-ratio: 16/9.5;
  overflow: hidden;
  padding: 7px;
}

.ls-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.ls-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.ls-bar span:nth-child(1) {
  background: #ef4444;
}

.ls-bar span:nth-child(2) {
  background: #f59e0b;
}

.ls-bar span:nth-child(3) {
  background: #10b981;
}

.ls-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: calc(100% - 14px);
}

.ls-hero-grad {
  height: 22px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.7), rgba(251, 146, 60, 0.5), rgba(6, 182, 212, 0.4));
  border-radius: 3px;
}

.ls-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
}

.ls-w {
  padding: 3px 5px;
  border-radius: 2px;
  font-size: 5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.w-purple {
  background: rgba(139, 92, 246, 0.5);
}

.w-orange {
  background: rgba(251, 146, 60, 0.5);
}

.w-cyan {
  background: rgba(6, 182, 212, 0.4);
}

.ls-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.ls-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  width: 100%;
  height: 30px;
}

.ls-chart-bars div {
  flex: 1;
  background: linear-gradient(0deg, rgba(139, 92, 246, 0.7), rgba(251, 146, 60, 0.5));
  border-radius: 1px 1px 0 0;
}

.ls-bottom {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ls-task {
  font-size: 5.5px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  padding: 2px 4px;
}

.ls-task.t1 {
  color: rgba(16, 185, 129, 0.9);
}

.ls-task.t2 {
  color: rgba(251, 146, 60, 0.8);
}

.laptop-hinge {
  width: 220px;
  height: 5px;
  background: linear-gradient(180deg, #3a3a4a 0%, #222230 100%);
  border-radius: 0 0 2px 2px;
}

.laptop-base {
  width: 230px;
  height: 14px;
  margin: 0 auto;
  background: linear-gradient(180deg, #28283a 0%, #1a1a26 100%);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-trackpad {
  width: 50px;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

/* Phone */
.device-phone {
  position: absolute;
  bottom: 10px;
  right: 0;
  animation: deviceFloat 5s 1.2s ease-in-out infinite;
}

.phone-frame {
  width: 80px;
  background: linear-gradient(180deg, #2d2d3a, #1a1a26);
  border-radius: 14px;
  padding: 6px;
  border: 1.5px solid #3a3a4a;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.phone-notch {
  width: 24px;
  height: 5px;
  background: #2d2d3a;
  border-radius: 3px;
  margin: 0 auto 5px;
}

.phone-screen-inner {
  background: linear-gradient(180deg, #1e1b4b, #2563eb);
  border-radius: 6px;
  padding: 6px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ph-header-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.ph-card-main {
  height: 28px;
  background: rgba(139, 92, 246, 0.35);
  border-radius: 4px;
}

.ph-stats {
  display: flex;
  gap: 4px;
}

.ph-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 4px 3px;
  text-align: center;
}

.ph-s-num {
  font-size: 7px;
  font-weight: 800;
  font-family: 'Geist Mono', monospace;
}

.ph-s-label {
  font-size: 5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
}

.ph-progress-row {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.ph-prog-bar {
  height: 100%;
  border-radius: 2px;
}

.ph-nav-bar {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding-top: 4px;
}

.ph-nav-bar span {
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
}

.ph-nav-bar span:nth-child(2) {
  background: rgba(255, 255, 255, 0.7);
  width: 10px;
}

/* Orbs */
.dev-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(25px);
}

.orb1 {
  width: 100px;
  height: 100px;
  background: rgba(139, 92, 246, 0.18);
  top: -10px;
  left: -20px;
}

.orb2 {
  width: 70px;
  height: 70px;
  background: rgba(251, 146, 60, 0.15);
  bottom: 0;
  right: -10px;
}

/* Right side extra card */
.float-client-card {
  background: white;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 200px;
}

.fcc-avs {
  display: flex;
}

.fcc-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-left: -6px;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 9px;
  font-weight: 700;
}

.fcc-av:first-child {
  margin-left: 0;
}

.fcc-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.fcc-stars {
  font-size: 11px;
  color: #FBBF24;
  letter-spacing: 1px;
}

/* Device float animation */
@keyframes deviceFloat {

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

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

/* ========================
   QUICK LINKS
   ======================== */
.quick-links {
  background: var(--bg);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 15px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
  background: white;
  box-shadow: var(--shadow-sm);
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.quick-card .icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: white;
}



.qc-primary .icon {
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.qc-accent .icon {
  background: linear-gradient(135deg, #FB923C, #F97316);
}

.qc-black .icon {
  background: linear-gradient(135deg, #202020, #000000);
}

.qc-teal .icon {
  background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.quick-card .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quick-card .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 110%;
}

.quick-card .desc {
  font-size: 12px;
  line-height: 100%;
  color: var(--text-3);
}

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

@media (max-width: 640px) {
  .quick-grid {
    grid-template-rows: 2fr;
  }
}

/* ========================
   SERVICES SECTION
   ======================== */
.services-section {
  padding: 100px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.svc-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 92, 246, 0.2);
}

.svc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.purple-bg {
  background: rgba(139, 92, 246, 0.08);
}

.cyan-bg {
  background: rgba(6, 182, 212, 0.08);
}

.orange-bg {
  background: rgba(251, 146, 60, 0.08);
}

.svc-body {
  flex: 1;
}

.svc-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.svc-badge {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Geist Mono', monospace;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-badge.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.svc-badge.lime {
  background: linear-gradient(135deg, #84CC16, #65a30d);
}

.svc-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Solutions strip */
.sol-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.sol-pill {}

.sol-icon-sm {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.sol-pill p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Dashboard mockup */
.dashboard-wrap {
  position: relative;
  background: linear-gradient(160deg, #38bdf8 0%, #60a5fa 40%, #818cf8 100%);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.db-browser {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.db-bar {
  height: 40px;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
}

.db-dots {
  display: flex;
  gap: 5px;
}

.db-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.db-dots .red {
  background: #ef4444;
}

.db-dots .yellow {
  background: #f59e0b;
}

.db-dots .green {
  background: #10b981;
}

.db-url-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--text-3);
  margin: 0 auto;
}

.db-logo-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 10px;
  height: 10px;
}

.db-logo-sm .dot {
  border-radius: 50%;
}

.db-body {
  display: flex;
  height: 320px;
}

.db-sidebar {
  width: 160px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 12px;
  font-size: 11.5px;
}

.dbs-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 11.5px;
  margin-bottom: 14px;
}

.dbs-logo .logo-icon {
  width: 14px;
  height: 14px;
  gap: 2px;
}

.dbs-logo .dot {
  width: 5px;
  height: 5px;
}

.dbs-items {
  margin-bottom: 14px;
}

.dbs-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-2);
  margin-bottom: 1px;
}

.dbs-item em {
  margin-left: auto;
  background: var(--bg);
  border-radius: 4px;
  padding: 1px 5px;
  font-style: normal;
  font-size: 9.5px;
  color: var(--text-3);
}

.dbs-item.active {
  background: var(--bg);
  font-weight: 600;
  color: var(--text);
}

.dbs-ws {}

.dbs-ws-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 6px;
  font-weight: 500;
}

.dbs-ws-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: var(--text-2);
  padding: 3px 0;
}

.ws-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.db-main {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.db-greeting {
  font-size: 13px;
  font-weight: 600;
}

.db-widgets {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
}

.dbw {
  background: var(--bg);
  border-radius: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border);
}

.dbw-head {
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.dbw-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.act-tabs {
  display: flex;
  gap: 6px;
}

.at {
  font-size: 9.5px;
  color: var(--text-3);
  cursor: pointer;
}

.at.active {
  color: var(--purple);
  font-weight: 600;
}

.todo-w .dbw-tasks {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dbw-task {
  font-size: 10px;
  color: var(--text-2);
  padding: 3px 5px;
  border-radius: 4px;
  background: white;
}

.dbw-task.done {
  text-decoration: line-through;
  color: var(--text-3);
}

.timer-w {
  width: 105px;
  text-align: center;
}

.timer-num {
  font-family: 'Geist Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 6px 0;
}

.timer-btns {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.t-btn {
  background: #ececf0;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-btn.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.activity-w {
  width: 105px;
}

.act-rows {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 6px;
}

.act-row {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-3);
}

.act-row strong {
  color: var(--text);
  font-weight: 600;
}

.act-donut {
  display: flex;
  justify-content: center;
}

.db-assigned {
  font-size: 11px;
}

.dba-head {
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.dba-tabs {
  display: flex;
  gap: 10px;
  font-size: 9.5px;
  color: var(--text-3);
  font-weight: 400;
}

.dba-tabs .active {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1.5px solid var(--text);
}

.dba-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.dba-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dba-name {
  font-size: 10px;
  color: var(--text-2);
  flex: 1;
}

.dba-track {
  width: 80px;
  background: var(--border);
  height: 3px;
  border-radius: 2px;
  overflow: hidden;
}

.dba-pct {
  font-size: 9px;
  color: var(--text-3);
  width: 28px;
  text-align: right;
}

.db-badge-check {
  position: absolute;
  top: -14px;
  right: 36px;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: white;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.db-badge-num {
  position: absolute;
  left: -14px;
  bottom: 28px;
  background: white;
  box-shadow: var(--shadow-md);
  border-radius: 9px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  font-family: 'Geist Mono', monospace;
}

/* ========================
   PROJECTS SECTION
   ======================== */
.projects-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.ftab {
  background: white;
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.ftab:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.ftab.active {
  background: var(--text);
  border-color: var(--text);
  color: white;
  box-shadow: var(--shadow-sm);
}

.proj-masonry {
  columns: 3;
  column-gap: 16px;
}

.proj-card {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.proj-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.proj-card.hidden {
  display: none;
}

.proj-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}

.proj-card:hover .proj-img img {
  transform: scale(1.06);
}

.proj-card.tall .proj-img {
  height: 285px;
}

.pi-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pi-deco.food {
  gap: 16px;
  font-size: 2rem;
  opacity: 0.75;
}

.pi-c {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

.pi-c.pc1 {
  width: 64%;
  height: 44%;
  position: absolute;
  top: 11%;
  left: 11%;
}

.pi-c.pc2 {
  width: 45%;
  height: 30%;
  position: absolute;
  bottom: 11%;
  right: 10%;
}

.pi-c.sh1 {
  width: 55%;
  height: 52%;
  position: absolute;
  top: 9%;
  left: 9%;
}

.pi-c.sh2 {
  width: 38%;
  height: 33%;
  position: absolute;
  bottom: 10%;
  right: 8%;
}

.mind-r {
  width: 90px;
  height: 90px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.mind-r::before,
.mind-r::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.mind-r::before {
  inset: 15px;
}

.mind-r::after {
  inset: 30px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bx {
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(109, 40, 217, 0.96) 0%, rgba(76, 29, 149, 0.99) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.proj-card:hover .proj-overlay {
  opacity: 1;
}

.po-cat {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 500;
}

.proj-overlay h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 4px;
}

.proj-overlay p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  margin-bottom: 12px;
}

.po-btn {
  display: inline-block;
  background: white;
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--transition);
}

.po-btn:hover {
  transform: scale(1.04);
}

.proj-info {
  padding: 8px 16px;
}

.pi-cat {
  font-size: 8px;
  color: var(--purple);
  display: block;
  margin-bottom: -5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.proj-info h3 {
  font-size: 13.5px;
  font-weight: bold;
  margin-bottom: -8px;
}

.pi-client {
  font-size: 11.5px;
  color: var(--text-3);
}

/* ========================
   DESIGN SECTION
   ======================== */
.design-section {
  padding: 100px 0;
  background: white;
}

/* Process timeline */
.process-timeline {
  position: relative;
  margin-bottom: 60px;
}

.process-line {
  position: absolute;
  top: 31px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  z-index: 0;
  border-radius: 1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.ps {
  text-align: center;
}

.ps-node {
  width: 62px;
  height: 62px;
  background: white;
  border: 2px solid var(--border-med);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.ps:hover .ps-node {
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
  transform: scale(1.06);
}

.ps h4 {
  font-size: 13px;
  margin-bottom: 4px;
}

.ps p {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.5;
}

/* Design grid */
.design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}

.dc {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.dc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--dc) 25%, transparent);
}

.dc-icon {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.dc h4 {
  font-size: 14px;
  margin-bottom: 12px;
}

.dc-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
}

.dc-thumbs div {
  height: 44px;
  overflow: hidden;
  position: relative;
}

.dc-thumbs div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dc:hover .dc-thumbs div img {
  transform: scale(1.08);
}

.dc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--dc, var(--purple));
  transition: var(--transition);
}

.dc-link:hover {
  opacity: 0.75;
}

/* Testimonials in design section */
.testi-wrap {}

.testi-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}

.testi-layout {
  columns: 3;
  column-gap: 16px;
}

.testi-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
}

.testi-card.big {
  border-left: 3px solid var(--purple);
}

.tc-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--purple);
  margin-bottom: -18px;
}

.tc-stars {
  color: #FBBF24;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testi-card p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 16px;
}

.testi-card strong {
  font-size: 12px !important;
}

.tc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.tc-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.tc-av.sm {
  width: 28px;
  height: 28px;
  font-size: 10px;
}

.tc-meta div {
  display: flex;
  flex-direction: column;
}

.tc-meta strong {
  font-size: 13px;
  font-weight: 600;
}

.tc-meta span {
  font-size: 11.5px;
  color: var(--text-3);
}

/* ========================
   WEBSITE SECTION
   ======================== */
.website-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

/* Tech strip */
.tech-strip-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
}

.tech-strip-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.tech-strip-fade.left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-alt), transparent);
}

.tech-strip-fade.right {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-alt), transparent);
}

.tech-strip {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: scrollLeft 22s linear infinite;
  padding: 6px 0;
}

.ti {
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.price-card.featured {
  background: var(--purple-dark);
  border-color: transparent;
  transform: translateY(-10px);
  box-shadow: var(--shadow-purple), var(--shadow-md);
}

.price-card.featured:hover {
  transform: translateY(-13px);
}

.pc-lightning {
  position: absolute;
  top: -18px;
  right: 22px;
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.price-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.pc-tagline {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 16px;
}

.price-card.featured .pc-tagline {
  color: rgba(255, 255, 255, 0.65);
}

.pc-price {
  font-size: 2.2rem;
  font-weight: 800;
  /* letter-spacing: -0.04em; */
  margin-bottom: 6px;
  color: var(--text);
}

.pc-price sup {
  font-size: 1.1rem;
  vertical-align: super;
}

.pc-price.white {
  color: white;
}

.pc-best {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.pc-btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 20px;
}

.pc-btn.outline {
  border: 1.5px solid var(--border-med);
  color: var(--text-2);
}

.pc-btn.outline:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.pc-btn.white-btn {
  background: white;
  color: var(--purple-dark);
  box-shadow: var(--shadow-sm);
}

.pc-btn.white-btn:hover {
  box-shadow: var(--shadow);
}

.pc-btn.orange-outline {
  border: 1.5px solid var(--orange);
  color: var(--orange);
}

.pc-btn.orange-outline:hover {
  background: var(--orange);
  color: white;
}

.pc-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}

.pc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}

.pc-list li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.pc-list.white-list li {
  color: rgba(255, 255, 255, 0.85);
}

.pc-learn {
  display: inline-block;
  font-size: 12px;
  color: var(--text-3);
  text-decoration: underline;
  transition: var(--transition);
}

.pc-learn:hover {
  color: var(--text);
}

.pc-learn.white-link {
  color: rgba(255, 255, 255, 0.6);
}

.pc-learn.white-link:hover {
  color: white;
}

/* ========================
   BLOG SECTION
   ======================== */
.blog-section {
  padding: 100px 0;
  background: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-card.featured-blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bc-img {
  position: relative;
  overflow: hidden;
}

.bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.bc-img.big {
  min-height: 280px;
}

.bc-img.sm {
  height: 100px;
}

.bc-emoji {
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.bc-deco {
  position: absolute;
  inset: 0;
}

.bcd-c {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(2px);
}

.bcd-c {
  width: 60%;
  height: 45%;
  top: 15%;
  left: 15%;
}

.bcd-c.b2 {
  width: 40%;
  height: 28%;
  bottom: 12%;
  right: 10%;
  top: auto;
  left: auto;
}

.bc-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.bc-body.sm {
  padding: 14px 16px;
}

.bc-cat {
  font-size: 10px;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  background: var(--purple-light);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.bc-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.bc-body h4 {
  font-size: 13.5px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.bc-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.bc-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: auto;
}

.bc-sep {
  color: var(--border-med);
}

.bc-read-btn {
  display: inline-block;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--purple);
  transition: var(--transition);
}

.bc-read-btn:hover {
  opacity: 0.75;
}

.blog-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ========================
   FAQ SECTION
   ======================== */
.faq-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 72px;
  align-items: start;
}

.faq-left .section-label {
  display: inline-flex;
}

.faq-left h2 {
  margin-bottom: 14px;
}

.faq-left p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--purple);
  background: var(--purple-light);
  border: 1px solid rgba(139, 92, 246, 0.15);
  padding: 10px 18px;
  border-radius: 100px;
  transition: var(--transition);
}

.faq-cta-btn:hover {
  background: var(--purple);
  color: white;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: rgba(139, 92, 246, 0.28);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.faq-q:hover {
  background: var(--bg);
}

.faq-q span:first-child {
  flex: 1;
  padding-right: 12px;
}

.fa {
  color: var(--purple);
  font-size: 9px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .fa {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-a p {
  padding: 0 18px 16px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
}

.faq-item.open .faq-a {
  max-height: 160px;
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact-section {
  padding: 100px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.cg-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.cg-left h2 {
  margin-bottom: 12px;
}

.cg-left p {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 28px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.cic {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.cic:hover {
  border-color: rgba(139, 92, 246, 0.25);
  background: white;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.cic-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cic-label {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 1px;
}

.cic-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.cic-hint {
  position: absolute;
  right: 14px;
  font-size: 10.5px;
  color: var(--purple);
  font-family: 'Geist Mono', monospace;
  opacity: 0;
  transition: var(--transition);
}

.cic:hover .cic-hint {
  opacity: 1;
}

.social-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sp {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}

.sp:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  transform: translateY(-2px);
}

.cg-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.cg-form h3 {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: white;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  font-size: 11px;
  color: #ef4444;
  min-height: 14px;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.25);
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.form-submit.loading .btn-text {
  opacity: 0;
}

.form-submit.loading .btn-loader {
  display: inline-block;
  animation: spin 0.8s linear infinite;
}

.btn-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-success {
  display: none;
  text-align: center;
  color: #10b981;
  font-size: 13px;
  font-weight: 600;
  padding: 12px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-top: 10px;
}

.form-success.show {
  display: block;
}

/* ========================
   FOOTER
   ======================== */
#footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 28px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.fl-col h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.fl-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fl-col h5 {
  margin-bottom: 12px;
}

.fl-col a {
  font-size: 13px;
  color: var(--text-3);
  padding: 4px 0;
  transition: var(--transition);
}

.fl-col a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-3);
}

.footer-bottom a {
  color: var(--text-3);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--text);
}

.f-sep {
  margin: 0 6px;
}

/* ========================
   WHATSAPP STICKY BUTTON
   ======================== */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: waFloat 3s ease-in-out infinite;
  max-width: 60px;
}

.wa-btn:hover {
  max-width: 240px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45), 0 4px 16px rgba(0, 0, 0, 0.15);
  animation: none;
  transform: translateY(-3px);
}

/* Pulse ring */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}

.wa-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.wa-label {
  display: flex;
  flex-direction: column;
  padding-right: 18px;
  padding-left: 2px;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.25s ease 0.05s;
  min-width: 0;
  overflow: hidden;
}

.wa-btn:hover .wa-label {
  opacity: 1;
}

.wa-label-main {
  font-size: 13.5px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.wa-label-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

@keyframes waFloat {

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

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

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

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

/* ========================
   TOAST
   ======================== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.3s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1100px) {
  .hero-wrap {
    grid-template-columns: 180px 1fr 220px;
    gap: 24px;
  }

  .hero-devices {
    width: 220px;
  }

  .quick-card .title {
    font-size: 12px;
  }

  .quick-card .desc {
    font-size: 10px;
  }

  .device-laptop {
    width: 185px;
  }

  .laptop-lid {
    width: 185px;
  }

  .laptop-hinge {
    width: 185px;
  }

  .laptop-base {
    width: 195px;
  }
}

@media (max-width: 1023px) {
  .hero-wrap {
    min-height: calc(60vh - 62px);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
    place-items: center;
  }

  .hf-left,
  .hf-right {
    display: none;
  }

  .hero-center {
    max-width: 540px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .sol-strip {
    grid-template-columns: 1fr;
  }

  .db-body {
    flex-direction: column;
    height: auto;
  }

  .db-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .db-widgets {
    grid-template-columns: 1fr;
  }

  .timer-w,
  .activity-w {
    width: 100%;
  }

  .proj-masonry {
    columns: 3;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-line {
    display: none;
  }

  .testi-layout {
    grid-template-columns: 1fr 1fr;
  }

  .testi-card.big {
    grid-column: span 2;
    grid-row: auto;
  }

  .testi-col-2 {
    display: contents;
  }

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .price-card.featured {
    transform: none;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured-blog {
    grid-template-columns: 1fr;
  }

  .bc-img.big {
    min-height: 200px;
  }

  .blog-sub-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 18px;
  }

  .process-steps {
    display: none;
  }

  .nav-inner {
    padding: 0 18px;
  }

  h2 {
    font-size: 1.65rem;
  }

  .proj-masonry {
    columns: 2;
  }

  .design-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-layout {
    /* grid-template-rows: 2fr; */
    columns: 2;
  }

  .testi-card.big {
    grid-column: auto;
  }

  .blog-sub-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  section {
    padding: 40px 0 !important;
  }

  section.quick-links {
    padding: 20px 0 !important;
  }

  .wa-btn {
    bottom: 20px;
    right: 20px;
  }
}

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ========================
   EXTRAS — depth & polish
   ======================== */

/* Active nav link */
.nav-links a.active {
  color: var(--purple);
  background: var(--purple-light);
}

/* WA attention bounce */
@keyframes waAttention {

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

  25% {
    transform: scale(1.12) translateY(-6px);
  }

  60% {
    transform: scale(0.96) translateY(3px);
  }

  80% {
    transform: scale(1.05) translateY(-2px);
  }
}

.wa-btn.wa-attention {
  animation: waAttention 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) both !important;
}

/* Subtle inner shadow on cards to add depth */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

.svc-card {
  position: relative;
}

/* Section separators with gradient */
.services-section,
.design-section,
.contact-section {
  position: relative;
}

.services-section::after,
.design-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-med), transparent);
}

/* Hero section bottom gradient fade into next section */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(0deg, white, transparent);
  pointer-events: none;
}

/* Depth on feature design cards */
.dc {
  position: relative;
  overflow: hidden;
}

.dc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dc, var(--purple)), transparent);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
}

.dc:hover::before {
  opacity: 1;
}

/* Subtle gradient bg for pricing section */
.website-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #ebebee 100%);
}

/* Blog section subtle depth */
.blog-section {
  background: white;
  position: relative;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-med), transparent);
}

/* Pricing card inner highlight */
.price-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Process node glow on hover */
.ps-node {
  background: linear-gradient(180deg, white 0%, #fafafa 100%);
  border: 2px solid var(--border-med);
}

/* Testimonial big card accent */
.testi-card.big {
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.02) 0%, white 100%);
}

/* Contact section soft gradient bg */
.contact-section {
  background: linear-gradient(180deg, white 0%, var(--bg) 100%);
}

/* Footer brand logo size fix */
.footer-brand .nav-logo {
  margin-bottom: 8px;
}

/* Form input placeholder color */
input::placeholder,
textarea::placeholder {
  color: var(--text-3);
  opacity: 1;
}

/* ========================
   CONTACT SECTION & FORM
   ======================== */

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

/* Contact Info Area */
.contact-info .section-label {
  margin-bottom: 12px;
}

.contact-info h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-2);
  margin-bottom: 40px;
  font-size: 15px;
  max-width: 480px;
  line-height: 1.6;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.contact-card-item:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cci-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-card-item:hover .cci-icon {
  background: var(--purple);
  color: white;
}

.cci-text {
  display: flex;
  flex-direction: column;
}

.cci-text span {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 2px;
}

.cci-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.cic-hint {
  font-size: 11px;
  color: var(--purple);
  opacity: 0;
  transform: translateY(5px) scale(0.95);
  transition: var(--transition);
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -8px;
  font-weight: 600;
}

.contact-card-item:hover .cic-hint {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-social a:hover {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
  transform: translateY(-3px);
  box-shadow: var(--shadow-purple);
}

/* Contact Form Area */
.contact-form-wrap {
  background: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-md);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  font-size: 14.5px;
  color: var(--text);
  font-family: inherit;
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: white;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.err-msg {
  display: block;
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.form-group.error .err-msg {
  height: 18px;
  opacity: 1;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--red);
  background: rgba(239, 68, 68, 0.02);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  background: var(--purple);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-purple);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn .btn-l {
  display: none;
}

.submit-btn.loading {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

.submit-btn.loading .btn-t {
  display: none;
}

.submit-btn.loading .btn-l {
  display: block;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
}

.form-success.show {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

/* Contact responsiveness */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: linear-gradient(180deg, #111116 0%, #060608 100%);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--orange), var(--cyan));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 20px;
  display: inline-flex;
}

.footer-brand p {
  color: var(--text-3);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.fl-col h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.fl-col a {
  display: block;
  color: var(--text-3);
  font-size: 14px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.fl-col a:hover {
  color: var(--purple);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-3);
  font-size: 14px;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.fb-links {
  display: flex;
  gap: 20px;
}

.fb-links a {
  transition: var(--transition);
}

.fb-links a:hover {
  color: var(--white);
}

.wa-label-sub {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-label-sub:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-purple);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: transform var(--transition);
  z-index: 2000;
  opacity: 0;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}