/* ═══════════════════════════════════════════════════════════════
   NEON SİFARİSİ — main.css
   Dark neon aesthetic | Mobile-first | Production-grade
═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────────── */
:root {
  --bg:           #0a0a0f;
  --primary:      #b026ff;   /* Neon purple */
  --secondary:    #00f0ff;   /* Neon cyan   */
  --accent:       #ff2d78;   /* Neon pink   */
  --text:         #e8e8f0;
  --text-muted:   #8888a8;
  --card-bg:      #13131f;
  --card-bg-2:    #0f0f1a;
  --border:       #2a2a3f;
  --border-glow:  rgba(176, 38, 255, 0.25);

  --glow-purple:  0 0 20px rgba(176, 38, 255, 0.5), 0 0 60px rgba(176, 38, 255, 0.2);
  --glow-cyan:    0 0 20px rgba(0, 240, 255, 0.5),  0 0 60px rgba(0, 240, 255, 0.2);
  --glow-pink:    0 0 20px rgba(255, 45, 120, 0.5),  0 0 60px rgba(255, 45, 120, 0.2);

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --font-accent:  'Pacifico', cursive;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h:     72px;
  --container:    1200px;
}

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

@media (min-width: 1200px) {
  .container { padding: 0 48px; }
}

.section {
  padding: 56px 0;
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
}



/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.neon-text--purple {
  font-family: var(--font-accent);
  color: var(--primary);
  text-shadow: 0 0 30px rgba(176, 38, 255, 0.8), 0 0 80px rgba(176, 38, 255, 0.3);
}

.neon-text--cyan {
  font-family: var(--font-accent);
  color: var(--secondary);
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.8), 0 0 80px rgba(0, 240, 255, 0.3);
}

.neon-text--pink {
  font-family: var(--font-accent);
  color: var(--accent);
  text-shadow: 0 0 30px rgba(255, 45, 120, 0.8), 0 0 80px rgba(255, 45, 120, 0.3);
}

/* ── Section Header ────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(176, 38, 255, 0.4);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  color: var(--primary);
}

.btn--lg  { padding: 14px 28px; font-size: 1rem; }
.btn--xl  { padding: 18px 36px; font-size: 1.1rem; border-radius: var(--radius-lg); }

.btn--primary {
  background: #b026ff !important;
  color: var(--primary);
  border-color: #b026ff !important;
}

.btn--primary:hover {
  background: #9000dd !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
  transform: translateY(-2px);
}

.btn--glow {
  box-shadow: 0 0 0 rgba(176, 38, 255, 0);
  transition: var(--transition);
}

.btn--primary.btn--glow:hover {
  background: #9000dd !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
}

.btn--ghost {
  color: #e8e8f0 !important;
  border-color: #2a2a3f !important;
  background: transparent;
}

.btn--ghost:hover {
  color: #e8e8f0 !important;
  border-color: rgba(232, 232, 240, 0.4) !important;
  background: rgba(255,255,255,0.04);
}

.btn--whatsapp {
  color: #0a0a0f !important;
  background: #00f0ff !important;
  border-color: #00f0ff !important;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.5), 0 0 24px rgba(0, 240, 255, 0.25);
}

.btn--whatsapp:hover {
  color: #0a0a0f !important;
  background: #00d4e8 !important;
  border-color: #00d4e8 !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.7), 0 0 40px rgba(0, 240, 255, 0.35);
  transform: translateY(-2px);
}

.btn--pink {
  background: #ff2d78 !important;
  color: #ffffff !important;
  border-color: #ff2d78 !important;
}

.btn--pink:hover {
  background: #d91f60 !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.5);
  transform: translateY(-2px);
}

.btn--pink.btn--glow:hover {
  background: #d91f60 !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.5);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ── Logo ──────────────────────────────────────────────────────── */
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-text__neon {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(176, 38, 255, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  border-bottom-color: var(--border-glow);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}

.header__logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(167,139,250,0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.header__logo:hover .header__logo-img {
  filter: drop-shadow(0 0 12px rgba(167,139,250,0.65));
  transform: rotate(-5deg) scale(1.06);
}

/* Footer logo */
.footer__logo-img-wrap {
  display: block;
  margin-top: 24px;
}

.footer__logo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 10px rgba(167,139,250,0.3));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer__logo-img-wrap:hover .footer__logo-img {
  filter: drop-shadow(0 0 18px rgba(167,139,250,0.55));
  transform: scale(1.04);
}

.header__nav {
  flex: 1;
  display: none;
}

@media (min-width: 1024px) {
  .header__nav { display: block; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* ── Burger ─────────────────────────────────────────────────────── */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
}

@media (min-width: 1024px) {
  .burger { display: none; }
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ──────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}

.mobile-nav__menu li a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 24px;
  transition: var(--transition);
}

.mobile-nav__menu li a:hover {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(176, 38, 255, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 0 48px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orb-float 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -6s;
  opacity: 0.15;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  order: 1;
}

@media (max-width: 767px) {
  .hero__content {
    text-align: center;
  }
  .hero__badge {
    justify-content: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__cat-link {
    display: flex;
    justify-content: center;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.03);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero__cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero__cat-link:hover {
  color: var(--clr-accent, #a78bfa);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__stat {
  text-align: left;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero__stat-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.hero__stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════════════════════════════ */
.categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card__inner {
  position: relative;
  z-index: 1;
  background: var(--card-bg);
  border: none;
  border-radius: 0;
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Image wrap â€” top of card */
.category-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.category-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card__img-wrap img {
  transform: scale(1.06);
}

/* TezliklÉ™ placeholder */
.category-card__img-soon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.category-card__img-wrap--purple .category-card__img-soon {
  background: linear-gradient(145deg, rgba(176,38,255,0.12) 0%, #0a0a12 100%);
  color: rgba(176,38,255,0.55);
}
.category-card__img-wrap--cyan .category-card__img-soon {
  background: linear-gradient(145deg, rgba(0,240,255,0.1) 0%, #0a0a12 100%);
  color: rgba(0,240,255,0.55);
}
.category-card__img-wrap--pink .category-card__img-soon {
  background: linear-gradient(145deg, rgba(255,45,120,0.12) 0%, #0a0a12 100%);
  color: rgba(255,45,120,0.55);
}

.category-card__img-soon span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.category-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-card__icon--purple {
  background: rgba(176, 38, 255, 0.12);
  color: var(--primary);
  border: 1px solid rgba(176, 38, 255, 0.25);
}

.category-card__icon--cyan {
  background: rgba(0, 240, 255, 0.12);
  color: var(--secondary);
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.category-card__icon--pink {
  background: rgba(255, 45, 120, 0.12);
  color: var(--accent);
  border: 1px solid rgba(255, 45, 120, 0.25);
}

.category-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.category-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.category-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
  width: fit-content;
  transition: var(--transition);
}

.category-card__btn--purple { color: var(--primary); }
.category-card__btn--cyan   { color: var(--secondary); }
.category-card__btn--pink   { color: var(--accent); }

.category-card__btn:hover svg {
  transform: translateX(4px);
}

.category-card__btn svg {
  transition: transform var(--transition);
}

.category-card__glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.category-card:hover .category-card__glow {
  opacity: 1;
}

.category-card[data-color="purple"] .category-card__glow {
  background: radial-gradient(circle at 50% 100%, rgba(176, 38, 255, 0.08) 0%, transparent 60%);
}

.category-card[data-color="cyan"] .category-card__glow {
  background: radial-gradient(circle at 50% 100%, rgba(0, 240, 255, 0.08) 0%, transparent 60%);
}

.category-card[data-color="pink"] .category-card__glow {
  background: radial-gradient(circle at 50% 100%, rgba(255, 45, 120, 0.08) 0%, transparent 60%);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}

.about__text {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(176, 38, 255, 0.1);
  border: 1px solid rgba(176, 38, 255, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.about__feature strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.about__feature span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Stats Grid ─────────────────────────────────────────────────── */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.stat-card--accent {
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.08), rgba(0, 240, 255, 0.05));
  border-color: rgba(176, 38, 255, 0.3);
}

.stat-card--glow {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.06), rgba(176, 38, 255, 0.06));
}

.stat-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-card__plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-card__label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════ */
.how-it-works {
  background: linear-gradient(180deg, transparent 0%, rgba(176, 38, 255, 0.03) 50%, transparent 100%);
}

/* ── How Cards ─────────────────────────────────────────────────── */
.how-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .how-cards { grid-template-columns: repeat(3, 1fr); }
}

/* Kart: şəkil ÜSTDƏ, content ALTDA — NeonChamp üslubu */
.how-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #111120;
  border: 1px solid #1e1e35;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

/* Şəkil bloku — kartın yuxarı hissəsi */
.how-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}

.how-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.how-card:hover .how-card__img {
  transform: scale(1.05);
}

/* Content bloku — kartın ALT hissəsi */
.how-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.how-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.how-card__desc {
  font-size: 0.865rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  flex: 1;
}

/* Düymə — purple, hover mavi, mətn həmişə ağ */.how-card__cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 6px;
  padding: 11px 22px;
  border-radius: 8px;
  background: #ff2d78;
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.22s ease, box-shadow 0.22s ease;
  line-height: 1;
  box-shadow: 0 0 12px rgba(255, 45, 120, 0.6), 0 0 28px rgba(255, 45, 120, 0.3);
}

.how-card__cta:hover {
  background: #d91f60;
  color: #ffffff !important;
  box-shadow: 0 0 18px rgba(255, 45, 120, 0.9), 0 0 40px rgba(255, 45, 120, 0.5);
}
.how-card__cta--soon {
  background: #2a1a3a;
  color: rgba(255, 255, 255, 0.35) !important;
  cursor: not-allowed;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   AGENTIM BANNER
═══════════════════════════════════════════════════════════════ */
.agentim-banner__inner {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.08) 0%, rgba(176, 38, 255, 0.06) 50%, rgba(10, 10, 15, 0) 100%);
  border: 1px solid rgba(255, 45, 120, 0.25);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .agentim-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.agentim-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.agentim-banner__orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.15), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(60px);
  animation: orb-float 10s ease-in-out infinite;
}

.agentim-banner__content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.agentim-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 45, 120, 0.1);
  border: 1px solid rgba(255, 45, 120, 0.3);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 16px;
}

.agentim-banner__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.agentim-banner__desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.agentim-banner__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agentim-banner__features span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}

.agentim-banner__action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════════════════════ */
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}

.portfolio__filter {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio__filter:hover,
.portfolio__filter.is-active {
  color: var(--primary);
  border-color: rgba(176, 38, 255, 0.5);
  background: rgba(176, 38, 255, 0.08);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .portfolio__grid { grid-template-columns: repeat(4, 1fr); }
}

.portfolio__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: var(--transition);
}

.portfolio__item.is-hidden {
  display: none;
}

.portfolio__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.portfolio__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
  transition: transform var(--transition-slow);
}

.portfolio__item:hover .portfolio__thumb img {
  transform: scale(1.06);
}

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}

.portfolio__overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* ── Placeholder cards ───────────────────────────────────────────── */
.portfolio__placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px dashed var(--border);
  background: var(--card-bg);
  transition: var(--transition);
}

.portfolio__placeholder--purple {
  border-color: rgba(176, 38, 255, 0.3);
  background: rgba(176, 38, 255, 0.04);
}

.portfolio__placeholder--cyan {
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(0, 240, 255, 0.04);
}

.portfolio__placeholder--pink {
  border-color: rgba(255, 45, 120, 0.3);
  background: rgba(255, 45, 120, 0.04);
}

.portfolio__placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.portfolio__placeholder small {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials {
  background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.02) 50%, transparent);
}

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

@media (min-width: 640px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: rgba(0, 240, 255, 0.25);
  transform: translateY(-4px);
}

.testi-card__stars {
  display: flex;
  gap: 3px;
}

.star--filled { color: #f59e0b; }
.star:not(.star--filled) { color: var(--border); }

.testi-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: normal;
}

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

.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testi-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-card__avatar--placeholder {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.testi-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.testi-card__author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(180deg, transparent, rgba(176, 38, 255, 0.04), transparent);
}

.cta-banner__inner {
  position: relative;
  text-align: center;
  padding: 56px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(176, 38, 255, 0.2);
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-banner__orb--1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 38, 255, 0.1), transparent 70%);
  top: -200px;
  right: -100px;
  filter: blur(60px);
}

.cta-banner__orb--2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.07), transparent 70%);
  bottom: -150px;
  left: -100px;
  filter: blur(60px);
}

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

.cta-banner__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-banner__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--card-bg-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 56px;
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--primary);
  border-color: rgba(176, 38, 255, 0.4);
  background: rgba(176, 38, 255, 0.08);
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__links li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__contact li svg {
  flex-shrink: 0;
  color: var(--primary);
}

.footer__contact li a:hover {
  color: var(--text);
}

.footer__sifaris-cta {
  margin-top: 20px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__credit a {
  color: var(--accent);
  transition: var(--transition);
}

.footer__credit a:hover {
  text-shadow: 0 0 12px rgba(255, 45, 120, 0.5);
}

/* ── Scroll to top ───────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(176, 38, 255, 0.85);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
  cursor: pointer;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(176, 38, 255, 1);
  box-shadow: var(--glow-purple);
}

/* ═══════════════════════════════════════════════════════════════
   AGENTIM PAGE
═══════════════════════════════════════════════════════════════ */
.ai-gradient-text {
  background: linear-gradient(135deg, #3b82f6, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* btn--ai */
.btn--ai {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  border: none;
}
.btn--ai:hover {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  transform: translateY(-2px);
}
.btn--ai.btn--glow {
  box-shadow: 0 0 20px rgba(99,102,241,0.4), 0 0 60px rgba(59,130,246,0.2);
}
.btn--ai.btn--glow:hover {
  box-shadow: 0 0 30px rgba(99,102,241,0.6), 0 0 80px rgba(59,130,246,0.3);
}

/* AgentinAI Hero */
.agentim-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
  text-align: center;
}
.agentim-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.agentim-hero__orb--1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
  top: -200px; left: -100px;
  filter: blur(80px);
  animation: orb-float 10s ease-in-out infinite;
}
.agentim-hero__orb--2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.2), transparent 70%);
  bottom: -150px; right: -100px;
  filter: blur(80px);
  animation: orb-float 12s ease-in-out infinite reverse;
}
.agentim-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.agentim-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  transition: var(--transition);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.03);
}
.back-link:hover { color: var(--text); border-color: var(--text-muted); }
.agentim-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6366f1;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.agentim-hero__title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.agentim-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Hero Stats */
.ai-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  max-width: 540px;
  margin: 0 auto 40px;
}
.ai-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 100px;
}
.ai-hero-stat__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-hero-stat__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}
.ai-hero-stat-divider {
  width: 1px; height: 40px;
  background: rgba(99,102,241,0.25);
  flex-shrink: 0;
}
.agentim-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Tech Strip */
.ai-tech-strip {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.ai-tech-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ai-tech-strip__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.ai-tech-strip__item:hover { color: #6366f1; }

/* 3 Pillars */
.ai-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .ai-pillars__grid { grid-template-columns: repeat(3, 1fr); }
}
.ai-pillar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.ai-pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.04), rgba(139,92,246,0.04));
  opacity: 0;
  transition: opacity 0.3s;
}
.ai-pillar:hover::before { opacity: 1; }
.ai-pillar:hover { transform: translateY(-4px); border-color: rgba(99,102,241,0.4); }
.ai-pillar__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15));
  border: 1px solid rgba(99,102,241,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #6366f1;
  position: relative;
  z-index: 1;
}
.ai-pillar__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.ai-pillar__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Use Cases */
.ai-usecases { background: rgba(255,255,255,0.01); }

/* Service Cards */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); }
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon--pink   { background:rgba(255,45,120,0.1);  color:var(--accent);    border:1px solid rgba(255,45,120,0.25); }
.service-card__icon--purple { background:rgba(176,38,255,0.1);  color:var(--primary);   border:1px solid rgba(176,38,255,0.25); }
.service-card__icon--cyan   { background:rgba(0,240,255,0.1);   color:var(--secondary); border:1px solid rgba(0,240,255,0.25); }
.service-card__title { font-size:1.05rem; font-weight:700; margin-bottom:12px; color:var(--text); }
.service-card__desc  { font-size:0.88rem; color:var(--text-muted); line-height:1.65; }
.service-card__glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover .service-card__glow { opacity: 1; }
.service-card__glow--pink   { background:var(--accent);    box-shadow:0 0 16px var(--accent); }
.service-card__glow--purple { background:var(--primary);   box-shadow:0 0 16px var(--primary); }
.service-card__glow--cyan   { background:var(--secondary); box-shadow:0 0 16px var(--secondary); }

/* Process Steps */
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  left: 27px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, #6366f1, rgba(99,102,241,0.1));
}
@media (min-width: 600px) { .process__steps::before { left: 31px; } }
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 40px 0;
}
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(99,102,241,0.1);
  border: 1.5px solid rgba(99,102,241,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 800;
  color: #6366f1;
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-step__num {
  background: rgba(99,102,241,0.2);
  box-shadow: 0 0 20px rgba(99,102,241,0.4);
}
.process-step__body h3 { font-size:1.05rem; font-weight:700; margin-bottom:8px; margin-top:14px; }
.process-step__body p  { font-size:0.9rem; color:var(--text-muted); line-height:1.65; }

/* FAQ */
.ai-faq__list {
  max-width: 760px;
  margin: 48px auto 0;
}
.ai-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--card-bg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.ai-faq__item[open] { border-color: rgba(99,102,241,0.4); }
.ai-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: color 0.2s;
}
.ai-faq__q::-webkit-details-marker { display: none; }
.ai-faq__q:hover { color: #6366f1; }
.ai-faq__arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.ai-faq__item[open] .ai-faq__arrow { transform: rotate(180deg); color: #6366f1; }
.ai-faq__a {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* AgentinAI CTA */
.agentim-cta__inner {
  text-align: center;
  background: linear-gradient(135deg, rgba(59,130,246,0.07), rgba(139,92,246,0.05));
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius-xl);
  padding: 80px 24px;
}
.agentim-cta__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15));
  border: 1px solid rgba(99,102,241,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  color: #6366f1;
}
.agentim-cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.agentim-cta__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}


.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
  }
}

/* Mobile: image shown below text, smaller */
.hero__visual {
  display: block;
  order: 2;
}

@media (max-width: 767px) {
  .hero__visual {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

.hero__img-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(176, 38, 255, 0.25), 0 16px 48px rgba(0,0,0,0.5);
}

@media (max-width: 767px) {
  .hero__img {
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(176, 38, 255, 0.2), 0 8px 24px rgba(0,0,0,0.4);
  }
}

.hero__img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  border: 1.5px dashed rgba(176, 38, 255, 0.35);
  background: rgba(176, 38, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.hero__img-placeholder-icon { color: rgba(176, 38, 255, 0.4); }

.hero__img-placeholder p {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.hero__img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(176, 38, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(19, 19, 31, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  white-space: nowrap;
  animation: float-card 4s ease-in-out infinite;
}

.hero__float-card--1 {
  bottom: 16px; left: -8px;
  animation-delay: 0s;
  border-color: rgba(176, 38, 255, 0.3);
}

.hero__float-card--2 {
  top: 16px; right: -8px;
  animation-delay: -2s;
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
}

@media (max-width: 480px) {
  .hero__float-card { display: none; }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero__float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
}

/* ═══════════════════════════════════════════════════════════════
   KEYFİYYƏT ZOLAĞI
═══════════════════════════════════════════════════════════════ */
.quality-strip {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.quality-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(176, 38, 255, 0.04) 50%, transparent);
  pointer-events: none;
}

.quality-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.quality-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 32px;
  flex: 1;
  min-width: 180px;
  max-width: 280px;
}

@media (max-width: 639px) {
  .quality-strip__item { min-width: 140px; padding: 10px 16px; }
}

.quality-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.quality-strip__item span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.quality-strip__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(176, 38, 255, 0.1);
  border: 1px solid rgba(176, 38, 255, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-strip__icon--cyan {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.2);
  color: var(--secondary);
}

.quality-strip__icon--pink {
  background: rgba(255, 45, 120, 0.1);
  border-color: rgba(255, 45, 120, 0.2);
  color: var(--accent);
}

.quality-strip__icon--purple {
  background: rgba(176, 38, 255, 0.1);
  border-color: rgba(176, 38, 255, 0.2);
  color: var(--primary);
}

.quality-strip__sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .quality-strip__sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   KATEQORİYA KART — PDF düyməsi
═══════════════════════════════════════════════════════════════ */
.category-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.category-card__pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  transition: var(--transition);
}

.category-card__pdf-btn:hover { color: var(--text); border-color: var(--text-muted); }

.category-card__pdf-soon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.55;
}

/* ═══════════════════════════════════════════════════════════════
   3 ADDIM
═══════════════════════════════════════════════════════════════ */
.steps--3 {
  max-width: 860px;
  margin: 0 auto 48px;
}

@media (min-width: 768px) {
  .steps--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   HAQQIMIZDA — Böyük statistikalar
═══════════════════════════════════════════════════════════════ */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  margin-bottom: 48px;
}

.stat-big {
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat-big:hover { border-color: var(--border-glow); transform: translateY(-4px); }

.stat-big--accent {
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.08), rgba(0, 240, 255, 0.05));
  border-color: rgba(176, 38, 255, 0.3);
}

.stat-big--glow {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.06), rgba(176, 38, 255, 0.06));
}

.stat-big__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-big--accent .stat-big__num,
.stat-big--glow .stat-big__num { color: var(--secondary); }

.stat-big__num--always {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--accent) !important;
}

.stat-big__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
}

.about__statement { max-width: 720px; margin: 0 auto; }

.about__statement-inner {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (min-width: 600px) {
  .about__statement-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.about__statement-inner p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  flex: 1;
}

.about__statement-inner p strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   RƏY PLACEHOLDER KARTLAR
═══════════════════════════════════════════════════════════════ */
.testimonials__grid--3 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .testimonials__grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.testi-card--placeholder {
  border-style: dashed;
  border-color: rgba(176, 38, 255, 0.2);
  background: rgba(176, 38, 255, 0.02);
}

.testi-card__placeholder-inner { display: flex; flex-direction: column; gap: 16px; }

.testi-card__placeholder-stars { display: flex; gap: 4px; }

.testi-placeholder-star {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.testi-card__placeholder-lines { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.testi-placeholder-line {
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  animation: shimmer 2s ease-in-out infinite;
}

.testi-placeholder-line--full  { width: 100%; }
.testi-placeholder-line--short { width: 65%; }
.testi-placeholder-line--name  { width: 100px; }
.testi-placeholder-line--role  { width: 60px; margin-top: 4px; opacity: 0.6; }

@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.7; }
}

.testi-card__placeholder-author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }

.testi-placeholder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(176, 38, 255, 0.1);
  border: 1.5px dashed rgba(176, 38, 255, 0.25);
  flex-shrink: 0;
}

.testi-card__coming-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY CAROUSEL — Nümunələrimiz
═══════════════════════════════════════════════════════════════ */
.gallery__carousel {
  position: relative;
  margin-top: 48px;
  /* side padding makes room for the arrow buttons */
  padding: 0 52px;
}

@media (max-width: 639px) {
  .gallery__carousel { padding: 0 40px; }
}

/* Viewport: clips the overflowing track */
.gallery__viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

/* Track: flexbox row — moves with transform */
.gallery__track {
  display: flex;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  /* Reset any stale translate */
  transform: translateX(0);
}

/* Slides — percentage width = 1/visible */
.gallery__slide {
  flex: 0 0 100%;       /* mobile: 1 per view */
  min-width: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .gallery__slide { flex: 0 0 50%; }   /* tablet: 2 per view */
}

@media (min-width: 1024px) {
  .gallery__slide { flex: 0 0 33.3333%; } /* desktop: 3 per view */
}

/* Card styling */
.gallery__card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery__card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 38, 255, 0.45);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(176,38,255,0.12);
}

.gallery__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0d0d1a;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.gallery__card:hover .gallery__img { transform: scale(1.06); }

.gallery__label {
  padding: 14px 16px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Arrow buttons — white rounded square style */
.gallery__btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(calc(-50% - 18px)) !important;
  z-index: 10 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  border: none !important;
  color: #111111 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
  animation: none !important;
  outline: none !important;
  padding: 0 !important;
}

.gallery__btn:hover {
  background: #f0f0f0 !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45) !important;
  transform: translateY(calc(-50% - 20px)) !important;
  color: #111111 !important;
}

.gallery__arrow {
  width: 20px;
  height: 20px;
  overflow: visible;
}

.gallery__btn--prev { left: 0; }
.gallery__btn--next { right: 0; }

.gallery__btn:disabled {
  opacity: 0.25;
  pointer-events: none;
}

.gallery__cta {
  text-align: center;
  margin-top: 44px;
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

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

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── Selection ───────────────────────────────────────────────────── */
::selection {
  background: rgba(176, 38, 255, 0.3);
  color: var(--text);
}

/* ── Scrollbar ───────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE — Şəkil vitrin (3b bölmə)
═══════════════════════════════════════════════════════════════ */
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .showcase__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.showcase__card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase__card:hover { transform: translateY(-5px); }

.showcase__card[data-color="purple"] { box-shadow: 0 0 0 1px rgba(176,38,255,0.3); }
.showcase__card[data-color="cyan"]   { box-shadow: 0 0 0 1px rgba(0,240,255,0.3); }
.showcase__card[data-color="pink"]   { box-shadow: 0 0 0 1px rgba(255,45,120,0.3); }

.showcase__card[data-color="purple"]:hover { box-shadow: 0 0 18px rgba(176,38,255,0.5), 0 0 0 1px rgba(176,38,255,0.7); }
.showcase__card[data-color="cyan"]:hover   { box-shadow: 0 0 18px rgba(0,240,255,0.5),   0 0 0 1px rgba(0,240,255,0.7); }
.showcase__card[data-color="pink"]:hover   { box-shadow: 0 0 18px rgba(255,45,120,0.5),  0 0 0 1px rgba(255,45,120,0.7); }

.showcase__link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.showcase__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.showcase__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.showcase__card:hover .showcase__img-wrap img { transform: scale(1.06); }

/* Tezliklə placeholder */
.showcase__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.showcase__card[data-color="purple"] .showcase__placeholder {
  background: linear-gradient(155deg, rgba(176,38,255,0.14) 0%, #07070f 100%);
  color: rgba(176,38,255,0.6);
}
.showcase__card[data-color="cyan"] .showcase__placeholder {
  background: linear-gradient(155deg, rgba(0,240,255,0.12) 0%, #07070f 100%);
  color: rgba(0,240,255,0.6);
}
.showcase__card[data-color="pink"] .showcase__placeholder {
  background: linear-gradient(155deg, rgba(255,45,120,0.14) 0%, #07070f 100%);
  color: rgba(255,45,120,0.6);
}

.showcase__placeholder span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* Label overlay at bottom */
.showcase__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 14px 14px;
  background: linear-gradient(to top, rgba(4,4,12,0.96) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.showcase__label strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.showcase__label small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.showcase__card[data-color="purple"] .showcase__label strong { color: rgba(210,160,255,0.95); }
.showcase__card[data-color="cyan"]   .showcase__label strong { color: rgba(120,240,255,0.95); }
.showcase__card[data-color="pink"]   .showcase__label strong { color: rgba(255,150,190,0.95); }



/* ═══════════════════════════════════════════════════════════════
   REVIEWS — WhatsApp üslubunda müştəri rəyləri
═══════════════════════════════════════════════════════════════ */
.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right,
    transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right,
    transparent, black 10%, black 90%, transparent);
  margin-top: 48px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  width: 300px;
  flex-shrink: 0;
}

.review-card {
  background: #13131f;
  border: 1px solid #2a2a3f;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 211, 102, 0.3);
}

.review-card__header {
  background: #0f1f0f;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(37, 211, 102, 0.18);
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #a2f7ff;
  flex-shrink: 0;
}

.review-card__info {
  flex: 1;
  min-width: 0;
}

.review-card__info strong {
  display: block;
  font-size: 0.88rem;
  color: #e8e8f0;
  font-weight: 600;
}

.review-card__info span {
  font-size: 0.73rem;
  color: #a2f7ff;
}

.review-card__wa {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: #a2f7ff;
  flex-shrink: 0;
}

.review-card__stars {
  padding: 8px 14px 0;
  font-size: 1.05rem;
  color: #f59e0b;
  letter-spacing: 2px;
}

.review-card__bubble {
  margin: 6px 10px 10px;
  background: #1e2d1e;
  color: #c8c8d8;
  border-radius: 0 12px 12px 12px;
  padding: 10px 12px;
  position: relative;
}

.review-card__bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border: 8px solid transparent;
  border-right-color: #122012;
  border-top-color: #122012;
}

.review-card__bubble p {
  font-size: 0.875rem;
  color: #c8c8d8;
  line-height: 1.6;
  margin: 0 0 6px;
}

.review-card__time {
  font-size: 0.68rem;
  color: #a2f7ff;
  display: block;
  text-align: right;
}




/* ═══════════════════════════════════════════════════════════════
   COMPARE v3 — SVG ikonlu 3-sütun dizayn
═══════════════════════════════════════════════════════════════ */.compare__left {
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
}.compare__header {
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}.compare__header--them {
  background: #2e2e2e;
  color: #888888;
  font-weight: 500;
}.compare__img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}.compare__rows {
  flex: 1;
  display: flex;
  flex-direction: column;
}.compare__row--them {
  color: #666666;
  font-weight: 400;
}.compare__middle-img-area {
  height: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
}.compare__badges {
  flex: 1;
  display: flex;
  flex-direction: column;
}@media (max-width: 768px) {
  .compare__wrap { grid-template-columns: 1fr 80px 1fr; }
  .compare__img-wrap img { height: 120px; }
  .compare__row { padding: 10px 10px; gap: 8px; font-size: 0.75rem; }
  .compare__middle-img-area { height: 134px; }
  .compare__header { font-size: 0.78rem; padding: 10px; }
  .compare__badge { font-size: 0.62rem; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPARE v4 — neon_difference_section
═══════════════════════════════════════════════════════════════ */.neon_cc_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.neon_brand_col,.neon_brand_col { background: #1a1a1a; }.neon_img_box {
  position: relative;
  overflow: hidden;
}.neon_img_box--them img {
  filter: grayscale(0.25) brightness(0.75);
}.neon_brand_title--them {
  background: #2e2e2e;
  color: #888888;
  font-weight: 500;
}.neon_vs_label span {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
}.neon_usp_row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  border-top: 1px solid #2a2a3f;
}.neon_usp_row--them p { color: #666666; }.neon_usp_icon svg { width: 28px; height: 28px; }.neon_diff_badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  border-top: 1px solid #2a2a3f;
}@media (max-width: 768px) {
  .neon_cc_grid { grid-template-columns: 1fr; gap: 16px; }
  .neon_img_box img { height: 160px; }
  .neon_usp_row { padding: 11px 14px; gap: 10px; }
  .neon_usp_row p { font-size: 0.8rem; }
  .neon_usp_icon { width: 30px; height: 30px; }
  .neon_usp_icon svg { width: 22px; height: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPARE v5 — 2 sütun + floating labels
═══════════════════════════════════════════════════════════════ */
.cmpv5-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.cmpv5-container {
  display: flex;
  gap: 0;
  position: relative;
  width: 100%;
}
.cmpv5-col {
  flex: 1;
  overflow: hidden;
}
.cmpv5-col--left {
  background: #111111;
  border-radius: 16px 0 0 16px;
}
.cmpv5-col--right {
  background: #1a1a1a;
  border-radius: 0 16px 16px 0;
}
.cmpv5-header {
  text-align: center;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.cmpv5-header--us {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #ffffff;
}
.cmpv5-header--them {
  background: #2a2a2a;
  color: #999999;
}
.cmpv5-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.cmpv5-img--them {
  position: relative;
}
.cmpv5-img--them::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  pointer-events: none;
}
.cmpv5-img--them img {
  filter: grayscale(40%) brightness(0.72);
}
.cmpv5-row {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 14px;
  min-height: 80px;
}
.cmpv5-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmpv5-icon svg { width: 36px; height: 36px; }
.cmpv5-icon--them svg { opacity: 0.45; }
.cmpv5-text p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #cccccc;
}
.cmpv5-text p strong { color: #ffffff; font-weight: 600; }
.cmpv5-row--them .cmpv5-text p { color: #777777; }

/* VS badge */
.cmpv5-vs {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 10;
  margin-top: 14px;
}
.cmpv5-vs-circle {
  width: 56px;
  height: 56px;
  background: #1a1a1a;
  border: 3px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Floating category labels */
.cmpv5-labels {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 100%;
  pointer-events: none;
  z-index: 20;
}
.cmpv5-label {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #ffffff;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 10px rgba(233,30,140,0.35);
}

@media (max-width: 640px) {
  .cmpv5-container { flex-direction: column; }
  .cmpv5-col--left { border-radius: 12px 12px 0 0; }
  .cmpv5-col--right { border-radius: 0 0 12px 12px; }
  .cmpv5-img img { height: 160px; }
  .cmpv5-row { padding: 13px 14px; min-height: 64px; }
  .cmpv5-icon { width: 34px; height: 34px; }
  .cmpv5-icon svg { width: 28px; height: 28px; }
  .cmpv5-text p { font-size: 0.8rem; }
  .cmpv5-labels { display: none; }
  .cmpv5-vs { top: 160px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPARE v6 — 2 kart + floating labels (JS)
═══════════════════════════════════════════════════════════════ */
.comp-wrap {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  position: relative;
}
.comp-wrap .card {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.comp-wrap .card-left { background: #111; }
.comp-wrap .card-right { background: #1c1c1c; }
.comp-wrap .card-head {
  text-align: center;
  padding: 14px 20px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.comp-wrap .card-left .card-head {
  background: linear-gradient(135deg, #e91e8c, #b8157a);
  color: #fff;
}
.comp-wrap .card-right .card-head {
  background: #2a2a2a;
  color: #888;
  font-weight: 600;
}
.comp-wrap .card-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}
.comp-wrap .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comp-wrap .card-right .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.15);
}
.comp-wrap .card-right .card-img img {
  filter: grayscale(30%) brightness(.85);
}
.comp-wrap .vs-float {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.comp-wrap .vs-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 2.5px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.comp-wrap .card-rows {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.comp-wrap .f-row {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  min-height: 72px;
}
.comp-wrap .f-row:last-child { border-bottom: none; }
.comp-wrap .f-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-wrap .f-icon svg { width: 34px; height: 34px; }
.comp-wrap .f-txt {
  font-size: 0.845rem;
  line-height: 1.5;
  color: #ccc;
}
.comp-wrap .f-txt strong { color: #fff; font-weight: 600; }
.comp-wrap .card-right .f-icon svg { opacity: .3; }
.comp-wrap .card-right .f-row { padding-left: 52px; }
.comp-wrap .card-right .f-txt { color: #666; }
.comp-wrap .center-labels {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  pointer-events: none;
  width: 120px;
}
.comp-wrap .c-label {
  background: linear-gradient(135deg, #e91e8c, #b8157a);
  color: #fff;
  padding: 5px 16px;
  border-radius: 18px;
  font-size: 0.69rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(233,30,140,.3);
  position: absolute;
}
@media (max-width: 700px) {
  .comp-wrap { flex-direction: column; gap: 20px; }
  .comp-wrap .center-labels,
  .comp-wrap .vs-float { display: none; }
  .comp-wrap .card { border-radius: 14px; }
  .comp-wrap .card-img { height: 170px; }
  .comp-wrap .f-row { padding: 14px 16px; min-height: 60px; }
  .comp-wrap .f-txt { font-size: 0.8rem; }
}

/* === GLOBAL BUTTON TEXT FIX === */
.btn,
.btn--primary,
.btn--pink,
.btn--glow,
.btn--block,
a.btn,
button.btn {
  color: #ffffff !important;
}
.btn svg,
.btn span,
.btn i {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* WhatsApp button — neon cyan, tünd mətn */
.btn--whatsapp svg,
.btn--whatsapp span,
.btn--whatsapp i {
  color: #0a0a0f !important;
  fill: #0a0a0f !important;
}
