@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #faf8ff;
  --lavender: #f0e4ff;
  --yellow: #ffe566;
  --yellow-deep: #ffd633;
  --coral: #ff6b6b;
  --dark: #1a1a2e;
  --text: #333;
  --white: #fff;
  --accent: #7c3aed;
  --accent-light: #ede4ff;
  --card-r: 16px;
  --section-gap: 100px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .08);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, .12);
  --shadow-float: 0 12px 40px rgba(124, 58, 237, .12);

  /* Glassmorphism Styles */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(124, 58, 237, 0.06);
  --glass-blur: blur(16px);
  --glass-blur-webkit: blur(16px);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2
}

/* Ambient Glow Background Blobs */
.glow-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -2;
  opacity: 0.25;
  pointer-events: none;
  mix-blend-mode: multiply;
  animation: float-blob 25s infinite alternate ease-in-out
}

.gb-1 {
  width: 500px;
  height: 500px;
  background: #c7d2fe;
  top: -10%;
  left: -5%
}

.gb-2 {
  width: 600px;
  height: 600px;
  background: #fbcfe8;
  bottom: 10%;
  right: -10%;
  animation-duration: 35s;
  animation-delay: -5s
}

.gb-3 {
  width: 450px;
  height: 450px;
  background: #ddd6fe;
  top: 40%;
  left: 30%;
  animation-duration: 20s;
  animation-delay: -2s
}

.gb-4 {
  width: 550px;
  height: 550px;
  background: #fed7aa;
  bottom: -5%;
  left: 10%;
  animation-duration: 30s;
  animation-delay: -10s
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(30px, -50px) scale(1.08)
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95)
  }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  border: none;
  font-family: inherit;
  gap: 8px;
  white-space: nowrap
}

.btn-primary {
  background: var(--dark);
  color: var(--white)
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, .3)
}

.btn-outline {
  border: 2px solid var(--dark);
  background: transparent;
  color: var(--dark)
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px)
}

.btn-coral {
  background: var(--coral);
  color: var(--white)
}

.btn-coral:hover {
  background: #e55a5a;
  transform: translateY(-2px)
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  font-weight: 700
}

.btn-white:hover {
  background: var(--accent-light);
  transform: translateY(-2px)
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, .3);
  color: var(--white);
  background: transparent
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px)
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur-webkit);
  border-bottom: 1px solid var(--glass-border);
  transition: all .3s ease
}

nav.scrolled {
  box-shadow: var(--glass-shadow);
  background: rgba(255, 255, 255, 0.65)
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.5px
}

.logo span {
  color: var(--accent)
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none
}

.nav-center a {
  font-size: .88rem;
  font-weight: 500;
  color: #555;
  transition: color .2s;
  position: relative
}

.nav-center a:hover {
  color: var(--dark)
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s
}

.nav-center a:hover::after {
  width: 100%
}

.nav-center .has-drop::after {
  content: '';
  width: 0;
  height: 0
}

.nav-center .drop-icon {
  font-size: .6rem;
  margin-left: 4px;
  opacity: .5
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px
}

.nav-right .demo-link {
  font-size: .88rem;
  font-weight: 500;
  color: #555;
  transition: color .2s
}

.nav-right .demo-link:hover {
  color: var(--dark)
}

.nav-right .btn {
  padding: 10px 22px;
  font-size: .85rem
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 10
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: visible
}

.hero-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  color: var(--dark)
}

.hero-sub {
  font-size: 1.05rem;
  color: #666;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  margin-top: 48px
}

/* Hero Image */
.hero-img {
  width: 480px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 45px rgba(124, 58, 237, 0.08))
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--glass-shadow);
  z-index: 3;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease
}

.float-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-md)
}

.float-card.fc-1 {
  left: 2%;
  top: 25%;
  animation: floatA 5s ease-in-out infinite
}

.float-card.fc-2 {
  right: 3%;
  top: 8%;
  animation: floatA 5s ease-in-out infinite 1s
}

.float-card.fc-3 {
  left: 4%;
  bottom: 12%;
  animation: floatA 5s ease-in-out infinite .5s
}

.float-card.fc-4 {
  right: 2%;
  bottom: 20%;
  animation: floatA 5s ease-in-out infinite 1.5s
}

@keyframes floatA {

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

  50% {
    transform: translateY(-14px)
  }
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 8px
}

.fc-icon.purple {
  background: var(--accent-light);
  color: var(--accent)
}

.fc-icon.green {
  background: #d4f5e2;
  color: #22c55e
}

.float-card h4 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2
}

.float-card .fc-label {
  font-size: .72rem;
  color: #999;
  display: block;
  margin-top: 2px
}

.fc-product {
  display: flex;
  align-items: center;
  gap: 10px
}

.fc-product img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover
}

.fc-product-info strong {
  font-size: .82rem;
  display: block
}

.fc-product-info em {
  font-size: .8rem;
  font-style: normal;
  color: var(--accent);
  font-weight: 700
}

.fc-share {
  font-size: .78rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px
}

.fc-share i {
  color: var(--accent)
}

.fc-share-btn {
  display: inline-block;
  margin-top: 6px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 600
}

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

.fc-globe {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0
}

/* ===== BRANDS MARQUEE ===== */
.brands {
  padding: 36px 0;
  border-top: 1px solid rgba(0, 0, 0, .05);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  overflow: hidden;
  background: var(--white)
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite
}

.marquee-track:hover {
  animation-play-state: paused
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.brand-item {
  min-width: 150px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: #bbb;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  transition: color .3s
}

.brand-item:hover {
  color: #888
}

/* ===== SECTION COMMON ===== */
.section {
  padding: var(--section-gap) 0
}

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px
}

.section-sub {
  font-size: 1.05rem;
  color: #666;
  max-width: 540px;
  line-height: 1.75
}

.section-header {
  text-align: center;
  margin-bottom: 56px
}

.section-header .section-sub {
  margin: 0 auto
}

/* ===== SPLIT SECTIONS ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.split.flip {
  direction: rtl
}

.split.flip>* {
  direction: ltr
}

.split-visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative
}

.split-visual.bg-yellow {
  background: var(--yellow);
  padding: 0;
  min-height: 400px;
  display: flex;
  align-items: stretch;
}

.split-visual.bg-yellow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-visual.bg-lavender {
  background: var(--lavender);
  padding: 32px;
  min-height: 400px
}

.stat-badge {
  background: var(--white);
  border-radius: 14px;
  padding: 14px 22px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px
}

.stat-badge .up-to {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 2px
}

.stat-badge h3 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1
}

.stat-badge span {
  font-size: .78rem;
  color: #888
}

.split-phone {
  width: 200px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden
}

.split-phone img {
  width: 100%;
  height: auto
}

.live-card {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm)
}

.live-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 8px 0
}

.live-card p {
  font-size: .82rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px
}

.live-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 14px
}

.live-thumbs img {
  width: 48%;
  border-radius: 10px;
  height: 90px;
  object-fit: cover
}

.split-text h2 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -.5px
}

.split-text p {
  color: #666;
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: .95rem
}

.split-text .btn i {
  transition: transform .3s
}

.split-text .btn:hover i {
  transform: translateX(4px)
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur-webkit);
  border-radius: var(--card-r);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow)
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, .15);
  border-color: rgba(124, 58, 237, .35)
}

.feature-card .f-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px
}

.f-icon.i-purple {
  background: linear-gradient(135deg, #ede4ff, #d4bfff);
  color: var(--accent)
}

.f-icon.i-yellow {
  background: linear-gradient(135deg, #fff3cd, #ffe066);
  color: #d4a000
}

.f-icon.i-coral {
  background: linear-gradient(135deg, #ffe0e0, #ffb3b3);
  color: #e55a5a
}

.f-icon.i-blue {
  background: linear-gradient(135deg, #dbeafe, #93c5fd);
  color: #3b82f6
}

.f-icon.i-green {
  background: linear-gradient(135deg, #d4f5e2, #86efac);
  color: #16a34a
}

.f-icon.i-pink {
  background: linear-gradient(135deg, #fce4ec, #f48fb1);
  color: #e91e63
}

.f-icon.i-orange {
  background: linear-gradient(135deg, #fff0e0, #ffcc80);
  color: #e65100
}

.f-icon.i-teal {
  background: linear-gradient(135deg, #e0f2f1, #80cbc4);
  color: #00897b
}

.f-icon.i-indigo {
  background: linear-gradient(135deg, #e8eaf6, #9fa8da);
  color: #3949ab
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px
}

.feature-card p {
  font-size: .88rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 20px
}

.feature-card .f-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px
}

.feature-card {
  display: flex;
  flex-direction: column
}

.feature-card p {
  flex-grow: 1
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 50px;
  background: #25d366;
  color: var(--white);
  font-weight: 600;
  font-size: .8rem;
  transition: all .3s ease;
  border: none;
  cursor: pointer;
  gap: 8px;
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none
}

.btn-wa:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  color: var(--white)
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur-webkit);
  border-radius: 24px;
  padding: 56px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  margin-bottom: var(--section-gap)
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center
}

.about-image img {
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  width: 100%
}

.about-text h2 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px
}

.about-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: .95rem
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px
}

.about-stat-item {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--glass-border)
}

.about-stat-item strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  display: block
}

.about-stat-item span {
  font-size: .8rem;
  color: #555
}

/* ===== PROCESS SECTION ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px
}

.process-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur-webkit);
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  transition: all .3s
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, .1);
  border-color: rgba(124, 58, 237, .2)
}

.process-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(124, 58, 237, .12);
  line-height: 1;
  margin-bottom: 12px
}

.process-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px
}

.process-card p {
  font-size: .85rem;
  color: #555;
  line-height: 1.6
}

/* ===== FAQ SECTION ===== */
.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur-webkit);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all .3s;
  box-shadow: var(--glass-shadow)
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  user-select: none;
  justify-content: space-between
}

.faq-question span {
  transition: transform .3s;
  font-size: 1.1rem;
  color: var(--accent)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px
}

.faq-answer p {
  padding-bottom: 20px;
  color: #555;
  line-height: 1.7;
  font-size: .9rem
}

.faq-item.active {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.65)
}

.faq-item.active .faq-question span {
  transform: rotate(45deg)
}

.faq-item.active .faq-answer {
  max-height: 200px
}

/* ===== STORIES & BENCHMARKS ===== */
.bench-testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch
}

.stories-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur-webkit);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: var(--glass-shadow)
}

.bench-head,
.test-head {
  margin-bottom: 28px
}

.bench-head h2,
.test-head h2 {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.25;
  margin-top: 8px;
  letter-spacing: -0.5px
}

.bench-head .bench-note {
  font-size: .82rem;
  color: #666;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px
}

.bench-head .bench-note i {
  color: var(--accent)
}

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

.bench-item {
  background: rgba(250, 245, 255, 0.5);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(124, 58, 237, .08);
  transition: all .3s
}

.bench-item:hover {
  border-color: rgba(124, 58, 237, .25);
  box-shadow: 0 4px 16px rgba(124, 58, 237, .06)
}

.bench-item .b-icon {
  color: var(--accent);
  margin-bottom: 6px;
  font-size: .9rem
}

.bench-item h3 {
  font-size: 2rem;
  font-weight: 900
}

.bench-item p {
  font-size: .78rem;
  color: #777;
  margin-top: 4px
}

/* Testimonial card styling */
.test-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

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

.test-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-light);
  flex-shrink: 0
}

.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.test-meta {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.test-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  align-self: flex-start
}

.test-stars {
  color: #ffb300;
  font-size: .8rem
}

.test-quote {
  font-size: .95rem;
  line-height: 1.75;
  color: #333;
  font-style: italic;
  margin-bottom: 16px;
  position: relative
}

.test-author {
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: 24px
}

.test-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, .06);
  padding-top: 20px
}

.ts-box {
  background: rgba(255, 255, 255, 0.4);
  padding: 12px 10px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--glass-border)
}

.ts-box h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--accent)
}

.ts-box p {
  font-size: .65rem;
  color: #666;
  margin-top: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px
}

.test-nav-bar {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: flex-end
}

.test-nav-bar .nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .08);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-size: .85rem;
  color: var(--dark)
}

.test-nav-bar .nav-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark)
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.blog-card {
  background: var(--white);
  border-radius: var(--card-r);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .04);
  transition: all .35s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm)
}

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

.blog-img {
  height: 200px;
  overflow: hidden
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.blog-card:hover .blog-img img {
  transform: scale(1.08)
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.72rem
}

.blog-category {
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.blog-date {
  color: #777;
  font-weight: 500
}

.blog-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--dark)
}

.blog-excerpt {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.blog-body .read-more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .3s;
  margin-top: auto
}

.blog-body .read-more:hover {
  gap: 8px
}

.blog-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: #666;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.blog-loading .spinner {
  width: 44px;
  height: 44px;
  border: 4px solid var(--accent-light);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.blog-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  background: var(--accent-light);
  border-radius: 16px;
  color: var(--dark);
  border: 1px dashed var(--accent);
  max-width: 500px;
  margin: 0 auto
}

.blog-error p {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 0.95rem
}

/* ===== PORTFOLIO ===== */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.portfolio-tab-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur-webkit);
  color: #555;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-sm)
}

.portfolio-tab-btn:hover {
  background: rgba(255, 255, 255, 0.75);
  color: var(--dark);
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.25)
}

.portfolio-tab-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.2)
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-height: 400px
}

.portfolio-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .04);
  border-radius: var(--card-r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, .12);
  border-color: rgba(124, 58, 237, .3)
}

.portfolio-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px
}

.portfolio-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm)
}

.portfolio-icon.purple {
  background: linear-gradient(135deg, #ede4ff, #d4bfff);
  color: var(--accent)
}

.portfolio-icon.yellow {
  background: linear-gradient(135deg, #fff3cd, #ffe066);
  color: #d4a000
}

.portfolio-icon.coral {
  background: linear-gradient(135deg, #ffe0e0, #ffb3b3);
  color: #e55a5a
}

.portfolio-icon.blue {
  background: linear-gradient(135deg, #dbeafe, #93c5fd);
  color: #3b82f6
}

.portfolio-icon.green {
  background: linear-gradient(135deg, #d4f5e2, #86efac);
  color: #16a34a
}

.portfolio-icon.orange {
  background: linear-gradient(135deg, #fff0e0, #ffcc80);
  color: #e65100
}

.portfolio-icon.teal {
  background: linear-gradient(135deg, #e0f2f1, #80cbc4);
  color: #00897b
}

.portfolio-icon.indigo {
  background: linear-gradient(135deg, #e8eaf6, #9fa8da);
  color: #3949ab
}

.portfolio-icon i {
  font-size: 1.25rem
}

.portfolio-badge {
  background: var(--yellow);
  color: var(--dark);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm)
}

.portfolio-card-body {
  display: flex;
  flex-direction: column;
  flex: 1
}

.portfolio-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px
}

.portfolio-desc {
  font-size: .84rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px
}

.portfolio-features {
  list-style: none;
  margin-bottom: 20px
}

.portfolio-features li {
  font-size: .8rem;
  color: #666;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px
}

.portfolio-features li i {
  color: #22c55e;
  font-size: .75rem
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: 20px
}

.portfolio-tag {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .05);
  color: #555;
  font-size: .68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px
}

.portfolio-action {
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
  margin-top: auto;
  align-self: flex-start
}

.portfolio-action:hover {
  gap: 10px
}

/* ===== CTA ===== */
.cta-section {
  padding: 40px 0 var(--section-gap)
}

.cta-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #1a1a2e 100%);
  border-radius: 24px;
  padding: 72px 48px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, .2), transparent 70%);
  pointer-events: none
}

.cta-box h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative
}

.cta-box p {
  color: rgba(255, 255, 255, .6);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .6);
  padding: 64px 0 24px
}

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

.footer-brand .logo {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: inline-block
}

.footer-brand p {
  font-size: .84rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .4);
  max-width: 280px
}

.footer-col h4 {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px
}

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

.footer-col li {
  margin-bottom: 10px
}

.footer-col a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .4);
  transition: color .2s
}

.footer-col a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255, 255, 255, .3)
}

.social-links {
  display: flex;
  gap: 16px
}

.social-links a {
  color: rgba(255, 255, 255, .35);
  transition: color .2s;
  font-size: 1.05rem
}

.social-links a:hover {
  color: #fff
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px)
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .hero h1 {
    font-size: 2.8rem
  }

  .section-title {
    font-size: 2.2rem
  }

  .features-grid {
    grid-template-columns: 1fr 1fr
  }

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

  .split,
  .bench-testimonial {
    grid-template-columns: 1fr;
    gap: 40px
  }

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

  .float-card.fc-2,
  .float-card.fc-3 {
    display: none
  }

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

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

  .portfolio-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  :root {
    --section-gap: 64px
  }

  .nav-center,
  .nav-right .demo-link {
    display: none
  }

  .nav-right .btn {
    padding: 8px 18px;
    font-size: .82rem
  }

  .hamburger {
    display: flex
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--white);
    flex-direction: column;
    padding: 32px 24px;
    gap: 8px;
    z-index: 999;
    overflow-y: auto
  }

  .mobile-menu.active {
    display: flex
  }

  .mobile-menu a {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    display: block
  }

  .mobile-menu .btn {
    margin-top: 16px;
    text-align: center
  }

  .hero {
    padding: 110px 0 40px
  }

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

  .hero-sub {
    font-size: .95rem
  }

  .hero-visual {
    height: 380px
  }

  .hero-img {
    width: 320px
  }

  .float-card {
    display: none
  }

  .features-grid {
    grid-template-columns: 1fr
  }

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

  .bench-grid {
    grid-template-columns: 1fr
  }

  .stories-card {
    padding: 28px 20px
  }

  .test-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
  }

  .ts-box h4 {
    font-size: 1rem
  }

  .ts-box p {
    font-size: .58rem
  }

  .cta-box {
    padding: 48px 24px
  }

  .cta-box h2 {
    font-size: 1.7rem
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center
  }

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

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

  .split-text h2 {
    font-size: 1.8rem
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center
  }

  .about-section {
    padding: 32px 24px
  }

  .about-text h2 {
    font-size: 1.8rem
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr
  }

  .portfolio-tabs {
    gap: 8px
  }
}
