/* ═══════════════════════════════════════════════════════
   WebDXP — Style Sheet  |  June 2026
   Palette: Navy #0A0F1E · Blue #2563EB · Cyan #00D4FF
   Fonts: Syne (display) · Inter (body) · Space Grotesk
   ═══════════════════════════════════════════════════════ */

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

:root {
  --navy:    #0A0F1E;
  --navy2:   #0f1729;
  --navy3:   #131d35;
  --blue:    #2563EB;
  --blue2:   #1d4ed8;
  --cyan:    #00D4FF;
  --cyan2:   #00b8d9;
  --white:   #F8FAFC;
  --slate:   #94A3B8;
  --slate2:  #64748B;
  --border:  rgba(255,255,255,0.08);
  --glass:   rgba(255,255,255,0.04);
  --glass2:  rgba(255,255,255,0.08);
  --shadow:  0 20px 60px rgba(0,0,0,0.5);
  --font-d:  'Plus Jakarta Sans', sans-serif;
  --font-b:  'Inter', sans-serif;
  --font-a:  'Space Grotesk', sans-serif;
  --r:       12px;
  --r2:      20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ─── Utilities ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-family: var(--font-d); font-size: clamp(2rem,4vw,3rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.section-header p { color: var(--slate); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.eyebrow { display: inline-block; font-family: var(--font-a); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff; padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-a); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,0.6); }
.btn-primary.full-width { width: 100%; justify-content: center; border-radius: var(--r); font-size: 1rem; padding: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--white); padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-a); font-weight: 500; font-size: 0.95rem;
  text-decoration: none; border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--cyan); background: var(--glass2); }

.btn-outline {
  display: block; text-align: center;
  color: var(--white); padding: 14px 24px; border-radius: var(--r);
  font-family: var(--font-a); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  margin-top: auto;
}
.btn-outline:hover { border-color: var(--blue); background: var(--glass); }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark svg, .logo-mark img { display: block; }
.logo-text { font-family: var(--font-d); font-size: 1.4rem; font-weight: 800; color: var(--white); }
.logo-accent { color: var(--cyan); }

.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  color: var(--slate); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: var(--glass); }
.nav-links .nav-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: 50px; padding: 9px 20px !important;
  font-family: var(--font-a); font-weight: 600;
}
.nav-links .nav-cta:hover { box-shadow: 0 4px 16px rgba(37,99,235,0.5); background: var(--glass) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.15; pointer-events: none;
}
.glow-1 { width: 600px; height: 600px; background: var(--blue); top: -200px; right: -100px; animation: driftA 12s ease-in-out infinite alternate; }
.glow-2 { width: 400px; height: 400px; background: var(--cyan); bottom: -100px; left: 10%; animation: driftB 15s ease-in-out infinite alternate; }

@keyframes driftA { from { transform: translate(0,0); } to { transform: translate(-60px, 40px); } }
@keyframes driftB { from { transform: translate(0,0); } to { transform: translate(40px, -30px); } }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 600px; min-width: 0; flex: 1 1 480px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass2); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 50px;
  font-family: var(--font-a); font-size: 0.8rem; font-weight: 500; color: var(--cyan);
  margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero-h1 {
  font-family: var(--font-d); font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 700; line-height: 1.08; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub { font-size: 1.1rem; color: var(--slate); max-width: 480px; margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.hs-item { text-align: left; }
.hs-num { display: block; font-family: var(--font-d); font-size: 1.8rem; font-weight: 800; color: var(--white); }
.hs-label { font-size: 0.8rem; color: var(--slate); }
.hs-div { width: 1px; height: 40px; background: var(--border); margin: 0 28px; }

/* Floating Store Cards */
.floating-stores {
  position: relative; flex-shrink: 0;
  width: 320px; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.store-card {
  background: var(--glass2); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 18px;
  backdrop-filter: blur(20px);
}
.fc1 { animation: floatA 4s ease-in-out infinite; }
.fc2 { animation: floatB 5s ease-in-out infinite 0.5s; }
.fc3 { animation: floatA 4.5s ease-in-out infinite 1s; }
.fc4 { animation: floatB 5.5s ease-in-out infinite 0.2s; }

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(6px)} }

.sc-top { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.sc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sc-dot.green { background: #10b981; box-shadow: 0 0 6px #10b981; }
.sc-dot.cyan { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.sc-dot.blue { background: var(--blue); box-shadow: 0 0 6px var(--blue); }
.sc-dot.orange { background: #f59e0b; box-shadow: 0 0 6px #f59e0b; }
.sc-label { font-size: 0.72rem; color: var(--slate); font-weight: 500; }
.sc-stat { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.sc-stat span { font-size: 0.7rem; color: var(--slate); font-family: var(--font-b); font-weight: 400; }
.sc-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.sc-bar div { height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 2px; }

/* ═══════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════ */
.marquee-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--glass);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 32px; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-a); font-size: 0.85rem; font-weight: 500;
  color: var(--slate); white-space: nowrap;
}
.marquee-track span:nth-child(even) { color: var(--cyan); font-weight: 700; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.service-card.featured {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(0,212,255,0.05));
  border-color: rgba(37,99,235,0.4);
}
.sc-icon { font-size: 2rem; }
.service-card h3 { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; }
.service-card p { color: var(--slate); font-size: 0.9rem; line-height: 1.6; flex: 1; }
.sc-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sc-features li { font-size: 0.85rem; color: var(--slate); padding-left: 14px; position: relative; }
.sc-features li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); }
.sc-link { color: var(--cyan); font-family: var(--font-a); font-size: 0.88rem; font-weight: 600; text-decoration: none; margin-top: auto; }
.sc-link:hover { color: var(--white); }
.card-glow {
  position: absolute; bottom: -40px; right: -40px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--blue); filter: blur(60px); opacity: 0.2; pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   NICHES
   ═══════════════════════════════════════════════════════ */
.niches-section { background: var(--navy2); }
.niches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.niche-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px; text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  scroll-margin-top: 100px;
}
.niche-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.niche-card:target {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.25), 0 8px 30px rgba(0,212,255,0.15);
  animation: nicheFlash 1.8s ease-out;
}
@keyframes nicheFlash {
  0% { background: rgba(0,212,255,0.12); }
  100% { background: var(--glass); }
}
.niche-emoji { font-size: 2.5rem; margin-bottom: 14px; }
.niche-card h4 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.niche-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════ */
.process-timeline { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.process-step { display: flex; gap: 28px; position: relative; }
.ps-num {
  flex-shrink: 0; width: 56px; height: 56px;
  border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 0.85rem; font-weight: 800; color: #fff;
  position: relative; z-index: 1;
}
.ps-content { padding-bottom: 48px; }
.ps-content h3 { font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; margin-top: 12px; }
.ps-content p { color: var(--slate); font-size: 0.95rem; line-height: 1.6; }
.ps-line {
  position: absolute; left: 27px; top: 56px; width: 2px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  height: calc(100% - 56px);
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════════ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.portfolio-stats {
  display: flex; align-items: center; justify-content: center;
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 28px 20px; margin-bottom: 40px; flex-wrap: wrap; gap: 12px;
}
.pfs-item { text-align: center; padding: 0 8px; }
.pfs-num { display: block; font-family: var(--font-d); font-size: 1.7rem; font-weight: 800; }
.pfs-label { font-size: 0.78rem; color: var(--slate); }
.pfs-div { width: 1px; height: 36px; background: var(--border); }

.portfolio-card {
  display: block; text-decoration: none; color: inherit;
  border-radius: var(--r2); overflow: hidden;
  border: 1px solid var(--border); background: var(--glass);
  transition: transform 0.3s, border-color 0.3s;
}
.portfolio-card:hover { transform: translateY(-6px); border-color: var(--blue); }
.pc-preview { height: 200px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--navy2); }
.pc-preview img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.4s;
}
.portfolio-card:hover .pc-preview img { transform: scale(1.05); }
.pc-preview::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,15,30,0.5) 100%);
  pointer-events: none;
}
.pc-visit {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(10,15,30,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  font-family: var(--font-a); font-size: 0.75rem; font-weight: 600;
  padding: 6px 12px; border-radius: 20px;
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s;
}
.portfolio-card:hover .pc-visit { opacity: 1; transform: translateY(0); }
.pc-info { padding: 24px; }
.pc-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600; font-family: var(--font-a);
  color: var(--cyan); background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.pc-info h4 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.pc-info p { font-size: 0.88rem; color: var(--slate); margin-bottom: 12px; line-height: 1.5; }
.pc-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.pc-meta span { font-size: 0.78rem; color: var(--slate2); }

/* Portfolio CTA card (4th slot) */
.portfolio-card-cta {
  border: 1.5px dashed rgba(0,212,255,0.35);
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(0,212,255,0.04));
  display: flex; align-items: center; justify-content: center;
  min-height: 100%;
}
.pc-cta-inner { padding: 40px 28px; text-align: center; }
.pc-cta-icon {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.6rem; font-weight: 800; color: #fff;
}
.pc-cta-inner h4 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.pc-cta-inner p { font-size: 0.88rem; color: var(--slate); margin-bottom: 16px; line-height: 1.55; }
.pc-cta-link { color: var(--cyan); font-family: var(--font-a); font-size: 0.88rem; font-weight: 600; }
.portfolio-cta { text-align: center; margin-top: 40px; font-size: 1rem; color: var(--slate); }
.portfolio-cta a { color: var(--cyan); font-weight: 600; text-decoration: none; }

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(0,212,255,0.05));
  border-color: rgba(37,99,235,0.5);
  transform: scale(1.03);
}
.pr-badge {
  font-family: var(--font-a); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate);
}
.pr-badge.popular {
  display: inline-block; color: var(--cyan);
  background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.25);
  padding: 4px 12px; border-radius: 20px;
}
.pr-price { font-family: var(--font-d); font-size: 2.8rem; font-weight: 800; line-height: 1; }
.pr-price span { font-size: 0.9rem; font-weight: 400; color: var(--slate); font-family: var(--font-b); }
.pr-desc { font-size: 0.88rem; color: var(--slate); line-height: 1.5; }
.pr-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pr-features li { font-size: 0.88rem; color: var(--slate); padding-left: 4px; }
.pr-features li:not([style]) { color: var(--white); }
.pr-features li { color: var(--white); }
.pricing-note { text-align: center; margin-top: 36px; font-size: 0.9rem; color: var(--slate); }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-section { background: var(--navy2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 32px; display: flex; flex-direction: column; gap: 16px;
}
.testi-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.testi-card p { color: var(--slate); font-size: 0.92rem; line-height: 1.7; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 700; font-size: 0.85rem; color: #fff;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testi-author span { display: block; font-size: 0.78rem; color: var(--slate); }

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-left h2 { font-family: var(--font-d); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 700; line-height: 1.15; margin: 12px 0 20px; }
.about-left p { color: var(--slate); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.about-links { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--white); font-family: var(--font-a); font-size: 0.88rem; font-weight: 500;
  text-decoration: none; background: var(--glass2); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: 50px; transition: border-color 0.2s, background 0.2s;
  width: fit-content;
}
.social-pill svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--cyan); }
.social-pill:hover { border-color: var(--cyan); background: rgba(0,212,255,0.06); }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.asg-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px; text-align: center;
}
.asg-num { display: block; font-family: var(--font-d); font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.asg-label { display: block; font-size: 0.82rem; color: var(--slate); }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq-section { background: var(--navy2); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font-a); font-size: 0.95rem; font-weight: 600; color: var(--white);
  text-align: left; gap: 12px;
}
.faq-q span { flex-shrink: 0; font-size: 1.2rem; color: var(--cyan); transition: transform 0.3s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--slate); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact-section { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-left h2 { font-family: var(--font-d); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; line-height: 1.15; margin: 12px 0 20px; }
.contact-left p { color: var(--slate); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.ci-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--slate); font-size: 0.9rem; text-decoration: none;
  transition: color 0.2s;
}
.ci-item:hover { color: var(--cyan); }
.ci-icon { width: 19px; height: 19px; flex-shrink: 0; color: var(--cyan); display: inline-flex; }
.ci-icon svg { width: 100%; height: 100%; }
.contact-trust { display: flex; flex-direction: column; gap: 8px; }
.contact-trust span { font-size: 0.85rem; color: var(--slate); font-family: var(--font-a); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; font-family: var(--font-a); color: var(--slate); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--glass2); border: 1px solid var(--border); border-radius: var(--r);
  color: var(--white); padding: 12px 16px; font-family: var(--font-b); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--slate2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group input.field-error { border-color: #f87171; background: rgba(248,113,113,0.06); }
.form-group input.field-error:focus { border-color: #f87171; }
.form-group select option { background: var(--navy2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--slate); margin-top: -4px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { background: var(--navy2); border-top: 1px solid var(--border); padding-top: 60px; padding-bottom: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand p { font-size: 0.88rem; color: var(--slate); margin-top: 16px; line-height: 1.6; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass2); border: 1px solid var(--border);
  color: var(--slate); text-decoration: none;
  transition: transform 0.2s, color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-socials a svg { width: 17px; height: 17px; display: block; flex-shrink: 0; }
.footer-socials a:hover { transform: translateY(-3px); color: var(--cyan); border-color: var(--cyan); background: rgba(0,212,255,0.08); }
.footer-col h5 { font-family: var(--font-a); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--slate); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--slate2); }
.footer-bottom a { color: var(--slate); text-decoration: none; }
.footer-bottom a:hover { color: var(--cyan); }

/* ─── Back to top ─── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border: none; color: #fff; font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { box-shadow: 0 8px 24px rgba(37,99,235,0.6); }

/* ─── WhatsApp Floating Button ─── */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 99;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(37,211,102,0.7); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 18px rgba(37,211,102,0.5), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ─── Skip link (accessibility + SEO) ─── */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 1000;
  background: var(--blue); color: #fff; padding: 12px 20px;
  border-radius: var(--r); text-decoration: none;
  font-family: var(--font-a); font-weight: 600; font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS — scroll reveal
   ═══════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .floating-stores { display: none; }
  .hero-inner { justify-content: center; }
  .hero-content { max-width: 680px; text-align: left; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; gap: 4px; position: fixed; top: 64px; left: 0; right: 0; background: rgba(10,15,30,0.98); backdrop-filter: blur(20px); padding: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--r); }
  .hamburger { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-content { max-width: 100%; width: 100%; }
  .hero-h1 { font-size: 2.6rem; }
  .hero-stats { gap: 0; }
  .hs-div { margin: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.1rem; }
  .hero-btns { flex-direction: column; }
  .niches-grid { grid-template-columns: 1fr; }
  .hero-stats .hs-div { margin: 0 10px; }
  .whatsapp-float { width: 48px; height: 48px; bottom: 20px; left: 20px; }
  .back-to-top { width: 40px; height: 40px; bottom: 20px; right: 20px; }
  .pfs-div { display: none; }
  .pfs-item { width: 45%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
