/* =====================================================
   WEB AGENCY INDIA — DESIGN SYSTEM
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --bg-primary:    #080808;
  --bg-secondary:  #0F0F0F;
  --bg-tertiary:   #181818;
  --bg-glass:      rgba(255,255,255,0.03);
  --accent:        #E63946;
  --accent-2:      #FF6B6B;
  --accent-dark:   #B02030;
  --accent-glow:   rgba(230,57,70,0.25);
  --accent-glow-2: rgba(230,57,70,0.08);
  --text-primary:  #F0F0F0;
  --text-secondary:#8A8A9A;
  --text-muted:    #4A4A5A;
  --border:        rgba(255,255,255,0.06);
  --border-hover:  rgba(230,57,70,0.4);
  --border-red:    rgba(230,57,70,0.2);
  --success:       #10B981;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-pill:   999px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html {
  overflow-y: scroll;
  scrollbar-color: var(--accent) var(--bg-secondary);
  scrollbar-width: thin;
}
html::-webkit-scrollbar { width: 12px; }
html::-webkit-scrollbar-track { background: var(--bg-secondary); }
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  border: 3px solid var(--bg-secondary);
  border-radius: var(--radius-pill);
}
html::-webkit-scrollbar-thumb:hover { background: var(--accent-2); }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}
/* Custom cursor only on devices that support hover (not touch/embedded browsers) */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
/* Hidden on touch/embedded browsers (Instagram, Facebook WebView, mobile) */
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
}
.cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(230,57,70,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}
.cursor.hover { width: 20px; height: 20px; background: #fff; }
.cursor-ring.hover { width: 52px; height: 52px; border-color: var(--accent); }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  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='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── LOADING SCREEN ── */
#loader {
  position: fixed; inset: 0;
  background: var(--bg-primary);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  animation: loaderPulse 1s ease-in-out infinite alternate;
}
@keyframes loaderPulse {
  from { transform: scale(0.95); opacity: 0.8; }
  to   { transform: scale(1.05); opacity: 1; }
}
.loader-bar {
  width: 200px; height: 2px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: loaderFill 1.2s ease forwards;
}
@keyframes loaderFill {
  from { width: 0%; }
  to   { width: 100%; }
}
.loader-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInOut 1.2s ease infinite;
}
@keyframes fadeInOut {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}
.slide-up.visible { opacity: 1; transform: translateY(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ── TYPOGRAPHY ── */
.hero-title    { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(44px, 7vw, 88px); line-height: 1.02; }
.section-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(30px, 4.5vw, 52px); line-height: 1.1; }
.card-title    { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 20px; line-height: 1.3; }
.label         { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.body-large    { font-size: 19px; line-height: 1.75; color: var(--text-secondary); }
.body-regular  { font-size: 16px; line-height: 1.7; color: var(--text-secondary); }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #fff, var(--accent));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 64px;
  box-sizing: border-box;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label { margin-bottom: 12px; display: block; }
.section-header p { max-width: 560px; margin: 16px auto 0; }

/* ── DIVIDER ── */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), rgba(230,57,70,0.3), var(--border), transparent);
  margin: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 8px 40px rgba(230,57,70,0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  background: var(--accent-glow-2);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-glow-2); }

/* ── CARDS ── */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}
.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(230,57,70,0.12);
  transform: translateY(-6px);
}

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 32px var(--accent-glow); }

/* =====================================================
   NAVIGATION
   ===================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Animated SVG Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-svg { flex-shrink: 0; }
.logo-w-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawW 1.5s ease forwards 0.3s;
}
@keyframes drawW {
  to { stroke-dashoffset: 0; }
}
.logo-dot {
  animation: dotPulse 2s ease-in-out infinite;
}
.logo-dot:nth-child(2) { animation-delay: 0.3s; }
.logo-dot:nth-child(3) { animation-delay: 0.6s; }
.logo-dot:nth-child(4) { animation-delay: 0.9s; }
.logo-dot:nth-child(5) { animation-delay: 1.2s; }
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.3; transform: scale(1.5); }
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

/* WhatsApp nav button */
.nav-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  position: relative;
}
.nav-wa::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-wa:hover::before { opacity: 0.6; }
.nav-wa:hover { transform: translateY(-1px); }
.wa-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: waDot 1.5s ease-in-out infinite;
}
@keyframes waDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 100%);
  height: 100vh;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(32px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 48px 48px;
  gap: 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border);
}
.mobile-menu.open { right: 0; }
.mobile-menu .nav-link {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}
.mobile-menu .nav-link::after { height: 2px; }
.mobile-menu .nav-wa { align-self: flex-start; }
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.menu-overlay.open { opacity: 1; visibility: visible; }

/* =====================================================
   HERO SECTION
   ===================================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230,57,70,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,57,70,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.12), transparent 70%);
  top: -100px; left: -200px;
  animation: heroFloat 8s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.08), transparent 70%);
  bottom: -100px; right: -100px;
  animation: heroFloat 10s ease-in-out infinite reverse;
}
@keyframes heroFloat {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.05); }
  66%      { transform: translate(-20px, 20px) scale(0.97); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border-red);
  border-radius: var(--radius-pill);
  background: var(--accent-glow-2);
  font-size: 13px;
  color: var(--accent-2);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: badgePulse 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}
.hero-title { margin-bottom: 24px; }
.hero-sub {
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}
.trust-check {
  width: 18px; height: 18px;
  background: var(--accent-glow-2);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero visual — floating browser mockups */
.hero-visual {
  position: relative;
  height: 520px;
}
.browser-mockup {
  position: absolute;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transition: all var(--transition);
}
.browser-mockup:hover { transform: scale(1.02); }
.browser-mockup-1 {
  width: 340px;
  top: 0; right: 0;
  animation: float1 6s ease-in-out infinite;
  z-index: 3;
}
.browser-mockup-2 {
  width: 280px;
  bottom: 40px; left: 0;
  animation: float2 7s ease-in-out infinite;
  z-index: 2;
  opacity: 0.85;
}
.browser-mockup-3 {
  width: 200px;
  top: 120px; left: 40px;
  animation: float3 8s ease-in-out infinite;
  z-index: 1;
  opacity: 0.6;
}
@keyframes float1 {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(0.5deg); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-0.5deg); }
}
@keyframes float3 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 8px; height: 8px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FEBC2E; }
.browser-dot:nth-child(3) { background: #28C840; }
.browser-url {
  flex: 1;
  height: 20px;
  background: var(--bg-primary);
  border-radius: 4px;
  margin-left: 8px;
}
.browser-content {
  position: relative;
  overflow: hidden;
}
.browser-content img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* =====================================================
   MARQUEE (Social Proof Strip)
   ===================================================== */
.marquee-section {
  padding: 20px 0;
  background: rgba(230,57,70,0.05);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border-red);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
}
.marquee-star { color: var(--accent); }
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--border-hover);
  border-radius: 50%;
}

/* =====================================================
   STATS STRIP
   ===================================================== */
#stats {
  padding: 96px 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-secondary);
  padding: 48px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow-2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-item:hover::before { opacity: 1; }
.stat-item:hover { background: var(--bg-tertiary); }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =====================================================
   MARKETS SECTION
   ===================================================== */
#markets {
  padding: 96px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
#markets::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(230,57,70,0.05), transparent);
}
.markets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.market-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  transition: all var(--transition);
  cursor: default;
}
.market-chip:hover {
  border-color: var(--border-hover);
  background: var(--accent-glow-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(230,57,70,0.1);
}
.market-flag { font-size: 24px; }
.market-name { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.markets-copy {
  text-align: center;
  margin-top: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
}

/* =====================================================
   TEMPLATES SECTION
   ===================================================== */
#templates { padding: 96px 0; }
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--text-primary); }
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.template-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.4s ease forwards;
}
.template-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(230,57,70,0.15);
}
.template-card.hidden { display: none; }
.template-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-tertiary);
}
.template-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.template-card:hover .template-thumb img { transform: scale(1.06); }
.template-badge-cat {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.template-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.template-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
}
.template-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.template-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
  align-self: flex-start;
  text-decoration: none;
}
.template-preview-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow-2);
}

/* Category colors */
.cat-home     { background: rgba(249,115,22,0.15); color: #F97316; }
.cat-pro      { background: rgba(59,130,246,0.15); color: #3B82F6; }
.cat-health   { background: rgba(16,185,129,0.15); color: #10B981; }
.cat-beauty   { background: rgba(236,72,153,0.15); color: #EC4899; }
.cat-hosp     { background: rgba(245,158,11,0.15); color: #F59E0B; }
.cat-realestate { background: rgba(20,184,166,0.15); color: #14B8A6; }
.cat-edu      { background: rgba(139,92,246,0.15); color: #8B5CF6; }
.cat-auto     { background: rgba(239,68,68,0.15); color: #EF4444; }
.cat-b2b      { background: rgba(100,116,139,0.15); color: #94A3B8; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
#process {
  padding: 96px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%;
  width: 75%; height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-glow-2), var(--accent), transparent);
  z-index: 0;
}
.process-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 80px; height: 80px;
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--accent);
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.process-step:hover .process-num {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 12px var(--accent-glow-2), 0 8px 32px var(--accent-glow);
}
.process-icon { font-size: 28px; margin-bottom: 12px; }
.process-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.process-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================================================
   WHY US
   ===================================================== */
#why { padding: 96px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.why-card:hover::before { height: 100%; }
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(230,57,70,0.1);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--accent-glow-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.why-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.why-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
#testimonials {
  padding: 96px 0;
  background: var(--bg-secondary);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(230,57,70,0.1);
}
.quote-icon {
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}
.author-biz { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.stars { color: #F59E0B; font-size: 14px; margin-bottom: 4px; letter-spacing: 2px; }

/* =====================================================
   PRICING
   ===================================================== */
#pricing { padding: 96px 0; overflow: visible; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  overflow: visible;
}
.pricing-card {
  padding: 40px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  background: linear-gradient(135deg, var(--bg-tertiary), rgba(230,57,70,0.05));
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 0 0 1px var(--accent), 0 32px 80px rgba(230,57,70,0.2);
}
.pricing-card:hover:not(.featured) {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 24px;
  vertical-align: super;
  font-weight: 600;
}
.pricing-period { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--accent-glow-2);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}

/* =====================================================
   FAQ
   ===================================================== */
#faq { padding: 96px 0; background: var(--bg-secondary); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-item.open .faq-q { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--accent-glow-2);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* =====================================================
   CONTACT
   ===================================================== */
#contact {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(230,57,70,0.07), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.contact-card {
  padding: 48px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  background: var(--accent-glow-2);
}
.contact-card:hover::before { opacity: 1; }
.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(230,57,70,0.12);
}
.contact-icon {
  font-size: 52px;
  margin-bottom: 16px;
  display: block;
  position: relative;
}
.contact-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-primary);
  position: relative;
}
.contact-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  position: relative;
}
.contact-card .btn { position: relative; }
.developer-note {
  text-align: center;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.developer-note p { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.developer-note a { color: var(--accent); transition: color var(--transition); }
.developer-note a:hover { color: var(--accent-2); }

/* =====================================================
   FOOTER
   ===================================================== */
#footer {
  background: var(--bg-secondary);
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--border), rgba(230,57,70,0.3), var(--border), transparent) 1;
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom a { color: var(--accent); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { height: 340px; display: none; }
  .hero-visual .browser-mockup { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .contact-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .hero-visual .browser-mockup { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .templates-grid { grid-template-columns: 1fr; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: 13px; }
  #navbar .nav-wa span { display: none; }
  .hero-title { font-size: clamp(36px, 10vw, 52px); }
  .section-title { font-size: clamp(26px, 7vw, 36px); }
  .pricing-price { font-size: 42px; }
}
