*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple: #7C3AED;
  --pink: #EC4899;
  --blue: #3B82F6;
  --dark: #0F0A2B;
  --dark2: #1E1B4B;
  --grad: linear-gradient(135deg, #7C3AED, #EC4899, #3B82F6);
  --grad2: linear-gradient(135deg, #7C3AED, #EC4899);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: #1a1a2e; background: #fff; overflow-x: hidden; }
.bg-light { background: #f8f9fa; }
.bg-violet { background: #f5f3ff; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: #7C3AED66; border-radius: 6px; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(124,58,237,0.08); padding: 12px 0;
}
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img {
  height: 42px;
  width: auto;
  display: block;
  transition: height .3s;
}
.navbar.scrolled .logo img {
  height: 38px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.9); transition: color .3s; }
.navbar.scrolled .nav-links a { color: #444; }
.nav-links a:hover { color: var(--purple) !important; }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: -12px;
  background: #fff; border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid #f0f0f5; min-width: 240px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 12px 16px; border-radius: 12px; font-size: 14px; font-weight: 600; color: #444 !important; transition: all .2s; }
.dropdown-menu a:hover { background: rgba(124,58,237,0.06); color: var(--purple) !important; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 14px; font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: all .3s; text-decoration: none; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 24px rgba(124,58,237,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(124,58,237,0.45); }
.btn-glass { background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.btn-glass:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--purple); }
.btn-white:hover { background: #f8f5ff; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.25); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.navbar.scrolled .hamburger span { background: #333; }
.mobile-nav { display: none; background: #fff; border-top: 1px solid #f0f0f5; padding: 16px 24px; flex-direction: column; gap: 8px; }
.mobile-nav a { display: block; padding: 12px; font-weight: 600; color: #333; border-radius: 10px; }
.mobile-nav a:hover { background: #f8f5ff; color: var(--purple); }
.mobile-nav .mob-services { padding-left: 16px; border-left: 3px solid #e5e7eb; }
.mobile-nav .mob-services a { font-size: 14px; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding-top: 80px;
  background: linear-gradient(135deg, #0F0A2B 0%, #1E1B4B 35%, #2D1B69 70%, #1a0533 100%);
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb1 { position: absolute; top: -20%; right: -15%; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.45) 0%, transparent 70%); filter: blur(120px); animation: pulse 5s ease-in-out infinite; }
.hero-orb2 { position: absolute; bottom: -20%; left: -15%; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, transparent 70%); filter: blur(110px); animation: pulse 5s ease-in-out infinite 2s; }
.hero-orb3 { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(236,72,153,0.25) 0%, transparent 70%); filter: blur(100px); animation: pulse 5s ease-in-out infinite 1s; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(1.05)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes countUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 50px; background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 600; margin-bottom: 28px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: ping 1.5s ease-in-out infinite; }
@keyframes ping { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.6} }
.hero h1 { font-size: clamp(2.5rem,5.5vw,4.5rem); font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 22px; animation: fadeUp .9s ease-out both; }
.text-grad { background: linear-gradient(135deg, #A78BFA, #EC4899, #60A5FA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 36px; max-width: 520px; animation: fadeUp .9s ease-out .15s both; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .9s ease-out .3s both; justify-content: center; margin-top: 10px;}
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 44px; animation: fadeUp .9s ease-out .45s both; }
.avatars { display: flex; }
.avatars .av { width: 44px; height: 44px; border-radius: 50%; border: 2.5px solid #1E1B4B; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #fff; margin-left: -12px; }
.avatars .av:first-child { margin-left: 0; }
.stars { color: #FBBF24; font-size: 18px; }
.trust-text { color: rgba(255,255,255,0.80); font-size: 13px; margin-top: 4px; font-weight: 600; }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-img-wrap { position: relative; animation: float 6s ease-in-out infinite; }
.hero-img-wrap img { width: 100%; max-width: 460px; filter: drop-shadow(0 20px 60px rgba(124,58,237,0.5)); }
.stat-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-radius: 18px; background: rgba(255,255,255,0.08); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.12); }
.stat-card.c1 { top: 8%; right: 5%; }
.stat-card.c2 { top: 50%; right: -4%; }
.stat-card.c3 { bottom: 12%; right: 8%; }
.stat-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.stat-val { font-weight: 800; font-size: 18px; color: #fff; line-height: 1; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 3px; }
.scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.scroll-hint span { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.scroll-line { width: 2px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); }

/* PAGE HERO (Services) */
.page-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #0F0A2B 0%, #1E1B4B 100%);
  position: relative; overflow: hidden; text-align: center; color: #fff;
}
.page-hero .orb1 { position: absolute; top: -50%; left: -10%; width: 500px; height: 500px; border-radius: 50%; background: rgba(124,58,237,0.15); filter: blur(80px); }
.page-hero .orb2 { position: absolute; bottom: -50%; right: -10%; width: 500px; height: 500px; border-radius: 50%; background: rgba(236,72,153,0.12); filter: blur(80px); }
.page-hero .breadcrumb { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-hero .page-hero-badge { display: inline-flex; padding: 6px 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 24px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 20px; line-height: 1.1; }
.page-hero p { max-width: 700px; margin: 0 auto; color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.6; }

/* SECTION COMMON */
section { padding: 90px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: 12px; }
.section-title { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.section-sub { font-size: 17px; color: #64748b; line-height: 1.7; max-width: 620px; margin: 0 auto 56px; }
.text-center { text-align: center; }

/* MARQUEE */
.marquee-section { padding: 40px 0; border-top: 1px solid #f0f0f5; border-bottom: 1px solid #f0f0f5; background: #fff; overflow: hidden; }
.marquee-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #94a3b8; margin-bottom: 28px; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; gap: 56px; align-items: center; }
.marquee-track .client-name { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: #1a1a2e; opacity: 0.22; transition: opacity .3s; white-space: nowrap; }
.marquee-track .client-name:hover { opacity: 0.7; }
.marquee-outer { position: relative; overflow: hidden; }
.marquee-fade-l { position: absolute; left: 0; top: 0; bottom: 0; width: 120px; background: linear-gradient(to right, #fff, transparent); z-index: 2; }
.marquee-fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 120px; background: linear-gradient(to left, #fff, transparent); z-index: 2; }

/* SERVICES GRID */
.services-section { background: #F8F7FF; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { background: #fff; border-radius: 24px; padding: 36px 32px; border: 1px solid #e8e5f5; box-shadow: 0 2px 20px rgba(124,58,237,0.04); transition: all .35s; cursor: pointer; position: relative; overflow: hidden; text-decoration: none; display: block; }
.service-card::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg,rgba(124,58,237,0.04),transparent); opacity:0; transition:opacity .4s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(124,58,237,0.13); border-color: rgba(124,58,237,0.2); }
.service-card:hover::before { opacity:1; }
.svc-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 24px; transition: transform .3s; }
.service-card:hover .svc-icon { transform: scale(1.1); }
.service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: #1a1a2e; transition: color .3s; }
.service-card:hover h3 { color: var(--purple); }
.service-card p { font-size: 15px; color: #64748b; line-height: 1.7; margin-bottom: 24px; }
.svc-link { font-size: 14px; font-weight: 700; color: var(--purple); display: flex; align-items: center; gap: 6px; transition: gap .3s; }
.service-card:hover .svc-link { gap: 12px; }

/* TECH GRID (Service Pages) */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.tech-card { background: #fff; border: 1px solid #f0f0f5; padding: 32px 24px; border-radius: 20px; text-align: center; transition: all .3s; }
.tech-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.2); }
.tech-icon { font-size: 38px; margin-bottom: 18px; }
.tech-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.tech-card p { font-size: 14px; color: #64748b; line-height: 1.6; }

/* PROCESS GRID */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; }
.step { position: relative; text-align: center; }
.step-num { 
  width: 54px; height: 54px; border-radius: 50%; background: var(--grad); color: #fff; 
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 20px;
  margin: 0 auto 16px; box-shadow: 0 8px 20px rgba(124,58,237,0.3);
}
.step h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 14px; color: #64748b; }

/* CONTACT PAGE SPECIFICS */
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; gap: 20px; align-items: center; background: #fff; padding: 24px; border-radius: 20px; border: 1px solid #f0f0f5; transition: all .3s; }
.contact-card:hover { transform: translateX(10px); background: #f8f7ff; }
.cc-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.cc-title { font-size: 12px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }
.cc-val { font-size: 16px; font-weight: 800; color: #1a1a2e; }
.form-box { background: #fff; padding: 48px; border-radius: 30px; box-shadow: 0 15px 50px rgba(0,0,0,0.06); border: 1px solid #f0f0f5; }
.form-box h3 { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.form-box .sub { font-size: 15px; color: #64748b; margin-bottom: 32px; }

/* QUICK CONTACT (Footer alternative) */
.quick-contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; padding-top: 60px; border-top: 1px solid #f0f0f5; }
.qc-card { background: #fff; padding: 28px; border-radius: 20px; text-align: center; border: 1px solid #f0f0f5; }
.qc-icon { font-size: 32px; margin-bottom: 12px; }
.qc-card a { font-weight: 800; color: var(--purple); font-size: 15px; }

/* STATS COUNTER */
.stats-section { background: var(--grad); position: relative; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1557683316-973673baf926?q=80&w=2000&auto=format&fit=crop') center/cover; opacity: 0.12; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 2; }
.stat-item { text-align: center; padding: 32px 16px; }
.stat-num { font-family: var(--font-head); font-size: clamp(2.5rem,5vw,4rem); font-weight: 900; color: #fff; margin-bottom: 8px; }
.stat-desc { color: rgba(255,255,255,0.82); font-weight: 600; font-size: 15px; }

/* PRIVACY & POLICY PAGE */
.policy-body { padding: 60px 0; background: #fff; }
.policy-box { max-width: 900px; margin: 0 auto; line-height: 1.8; color: #444; }
.policy-box h2 { font-size: 24px; font-weight: 800; color: #1a1a2e; margin: 40px 0 16px; border-bottom: 2px solid #f0f0f5; padding-bottom: 8px; }
.policy-box p { margin-bottom: 18px; font-size: 16px; }
.policy-box ul { margin-bottom: 24px; padding-left: 20px; }
.policy-box li { margin-bottom: 10px; font-size: 15px; }
.policy-box strong { color: #111; }
.policy-box a { color: var(--purple); font-weight: 600; }
.policy-box .updated { font-size: 13px; font-weight: 700; color: #94a3b8; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px; }

/* FAQ PAGE ADDITIONS */
.faq-section-title { font-size: 18px; font-weight: 800; color: var(--purple); margin: 32px 0 20px; display: flex; align-items: center; gap: 10px; }

/* PPC STATS */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 20px; }
.stats-row .stat-item { background: #fff; padding: 30px 20px; border-radius: 20px; border: 1px solid #f0f0f5; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.stats-row .stat-num { color: #1a1a2e; font-size: 32px; font-weight: 900; margin-bottom: 4px; display: block; }
.stats-row .stat-lbl { color: #64748b; font-size: 14px; font-weight: 600; }

/* SEO TYPES */
.seo-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.seo-type { background: #fff; padding: 32px; border-radius: 24px; border: 1px solid #f0f0f5; text-align: center; transition: all .3s; }
.seo-type:hover { transform: translateY(-7px); border-color: var(--purple); box-shadow: 0 15px 40px rgba(124,58,237,0.1); }
.seo-type .icon { font-size: 36px; margin-bottom: 16px; }
.seo-type h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }

/* UI/UX TOOLS */
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.tool-card { background: #fff; padding: 32px 24px; border-radius: 20px; border: 1px solid #f0f0f5; text-align: center; }
.tool-icon { font-size: 32px; margin-bottom: 12px; }
.tool-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }

/* UI/UX PROCESS ROW */
.process-row { display: flex; flex-direction: column; gap: 24px; max-width: 900px; margin: 40px auto 0; }
.process-item { display: flex; gap: 24px; align-items: flex-start; padding: 28px; background: #fff; border-radius: 24px; border: 1px solid #f0f0f5; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: transform .3s; }
.process-item:hover { transform: translateX(10px); border-color: var(--purple); }
.step-badge { width: 44px; height: 44px; border-radius: 50%; background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }

/* SOCIAL MEDIA PLATFORMS */
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.platform-card { background: #fff; padding: 32px; border-radius: 24px; border: 1px solid #f0f0f5; display: flex; gap: 20px; align-items: flex-start; transition: all .3s; }
.platform-card:hover { transform: translateY(-7px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); border-color: var(--purple); }
.pl-icon { width: 54px; height: 54px; border-radius: 16px; background: #f8f7ff; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.platform-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.platform-card p { font-size: 14px; color: #64748b; line-height: 1.6; }

/* CASE STUDIES / SUCCESS STORIES */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.case-card { background: #fff; border-radius: 28px; overflow: hidden; border: 1px solid #f0f0f5; transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer; }
.case-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-color: var(--purple); }
.case-img { width: 100%; height: 220px; background-size: cover; background-position: center; border-bottom: 5px solid var(--purple); }
.case-info { padding: 32px; }
.case-tag { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--purple); letter-spacing: 1.5px; margin-bottom: 12px; display: block; }
.case-info h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.case-info p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 24px; }
.case-stats { display: flex; gap: 20px; border-top: 1px solid #f1f5f9; padding-top: 20px; }
.cs-item { flex: 1; }
.cs-num { display: block; font-size: 18px; font-weight: 900; color: #1a1a2e; }
.cs-lbl { font-size: 11px; color: #94a3b8; text-transform: uppercase; font-weight: 700; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 40px; }
.testi-card { background: #fff; padding: 40px; border-radius: 30px; border: 1px solid #f0f0f5; position: relative; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.testi-quote { font-size: 16px; font-style: italic; color: #475569; line-height: 1.8; margin-bottom: 28px; position: relative; z-index: 2; }
.testi-user { display: flex; gap: 16px; align-items: center; }
.user-av { width: 48px; height: 48px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.user-info h4 { font-size: 16px; font-weight: 800; color: #1a1a2e; }
.user-info span { font-size: 13px; color: #94a3b8; }
.stars { color: #fbbf24; font-size: 14px; margin-bottom: 12px; }

/* INDUSTRIES */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.ind-card { padding: 24px; background: #fff; border-radius: 20px; border: 1px solid #f0f0f5; text-align: center; transition: all .3s; }
.ind-card:hover { transform: translateY(-5px); border-color: var(--purple); background: #f8f7ff; }
.ind-icon { font-size: 32px; margin-bottom: 12px; }
.ind-card h4 { font-size: 15px; font-weight: 800; color: #1a1a2e; }

/* ACCORDION FAQ (Home) */
.home-faq { max-width: 800px; margin: 40px auto 0; }
.h-faq-item { background: #fff; border-radius: 16px; border: 1px solid #f1f5f9; margin-bottom: 16px; overflow: hidden; }
.h-faq-q { padding: 20px 24px; font-weight: 800; font-size: 16px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all .3s; }
.h-faq-q:hover { color: var(--purple); background: #fafafa; }
.h-faq-q.open { background: #f8f7ff; color: var(--purple); }
.h-faq-a { max-height: 0; overflow: hidden; padding: 0 24px; transition: all .4s; font-size: 14px; color: #64748b; line-height: 1.7; }
.h-faq-a.open { max-height: 500px; padding: 0 24px 20px; border-top: 1px solid #f1f5f9; }

/* WHY CHOOSE / FEATURES SECTION */
.features-bg { background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.feat-card { background: #fff; padding: 40px 32px; border-radius: 24px; border: 1px solid #f0f0f5; transition: all .35s; }
.feat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); border-color: rgba(124,58,237,0.15); }
.feat-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
.feat-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: #1a1a2e; }
.feat-card p { font-size: 15px; color: #64748b; line-height: 1.65; }

/* WHY CHOOSE */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feat { display: flex; gap: 18px; }
.why-feat-icon { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg,rgba(124,58,237,.1),rgba(236,72,153,.1)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.why-feat h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.why-feat p { font-size: 15px; color: #64748b; line-height: 1.6; }
.why-img-wrap { position: relative; }
.why-img-wrap img { border-radius: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); width: 100%; }
.why-badge { position: absolute; background: #fff; border-radius: 18px; padding: 18px 22px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border: 1px solid #f0f0f5; display: flex; align-items: center; gap: 14px; }
.why-badge.b1 { bottom: -28px; left: -28px; }
.why-badge.b2 { top: -28px; right: -28px; }
.badge-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.badge-num { font-size: 22px; font-weight: 900; }
.badge-lbl { font-size: 12px; color: #64748b; }

/* CASE STUDIES */
.case-section { background: #F8F7FF; }
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.case-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: all .35s; }
.case-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(124,58,237,0.12); }
.case-img { position: relative; height: 200px; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.case-card:hover .case-img img { transform: scale(1.08); }
.case-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.6)); }
.case-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 50px; }
.case-name { color: #fff; font-weight: 800; font-size: 18px; margin-top: 6px; }
.case-body { padding: 22px; }
.case-body p { font-size: 14px; color: #64748b; line-height: 1.65; margin-bottom: 18px; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric { text-align: center; padding: 14px; border-radius: 14px; }
.metric.m1 { background: rgba(124,58,237,0.06); }
.metric.m2 { background: rgba(236,72,153,0.06); }
.metric-val { font-size: 22px; font-weight: 900; }
.metric.m1 .metric-val { color: var(--purple); }
.metric.m2 .metric-val { color: var(--pink); }
.metric-lbl { font-size: 11px; color: #94a3b8; margin-top: 4px; }

/* TESTIMONIALS */
.testi-section { background: linear-gradient(135deg,#0F0A2B,#1E1B4B); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testi-card { padding: 36px; border-radius: 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); transition: all .3s; }
.testi-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(167,139,250,0.3); }
.testi-stars { color: #FBBF24; font-size: 16px; margin-bottom: 16px; }
.testi-text { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: #fff; }
.testi-name { font-weight: 800; color: #fff; font-size: 15px; }
.testi-role { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* INDUSTRIES */
.ind-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.ind-card { background: #fff; border: 1px solid #ece9f5; border-radius: 18px; padding: 22px 14px; text-align: center; transition: all .3s; cursor: default; }
.ind-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.2); }
.ind-icon { font-size: 36px; margin-bottom: 10px; transition: transform .3s; }
.ind-card:hover .ind-icon { transform: scale(1.15); }
.ind-name { font-size: 13px; font-weight: 700; color: #374151; }

/* SEO PRICING */
.pricing-section { background: #F8F7FF; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: 960px; margin: 0 auto; align-items: start; }
.price-card { background: #fff; border-radius: 24px; padding: 36px 28px; border: 2px solid #e8e5f5; box-shadow: 0 4px 24px rgba(0,0,0,0.04); display: flex; flex-direction: column; transition: all .3s; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(124,58,237,0.1); }
.price-card.popular { border-color: var(--purple); box-shadow: 0 20px 60px rgba(124,58,237,0.2); transform: scale(1.04); position: relative; }
.popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; padding: 5px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; white-space: nowrap; box-shadow: 0 4px 16px rgba(124,58,237,0.4); }
.price-tier { font-size: 15px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.price-amount { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: #1a1a2e; }
.price-period { font-size: 16px; color: #94a3b8; font-weight: 500; }
.price-divider { border: none; border-top: 1px solid #f0f0f5; margin: 24px 0; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 14px; flex: 1; margin-bottom: 28px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #374151; }
.price-features li::before { content: '✓'; font-weight: 900; color: var(--purple); flex-shrink: 0; margin-top: 1px; }

/* CONTACT */
.contact-section { background: linear-gradient(135deg,#F8F7FF,#EEF2FF); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.contact-item { display: flex; gap: 16px; }
.contact-ico { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item h4 { font-weight: 800; font-size: 16px; margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 15px; color: #64748b; }
.contact-item a { color: var(--purple); }
.contact-form { background: #fff; border-radius: 28px; padding: 44px 36px; box-shadow: 0 8px 40px rgba(0,0,0,0.06); border: 1px solid #f0f0f5; }
.contact-form h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.contact-form .form-sub { font-size: 14px; color: #64748b; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 18px; border-radius: 14px; border: 1.5px solid #e5e7eb;
  font-family: var(--font-body); font-size: 14px; color: #1a1a2e; outline: none; transition: border .25s;
  background: #fafafa;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--purple); background: #fff; }
.form-field textarea { resize: none; height: 110px; }
.form-field select { color: #64748b; }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success .success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h4 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: #64748b; font-size: 15px; }

/* FAQ */
.faq-section { background: #fff; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-radius: 16px; border: 1.5px solid #e8e5f5; margin-bottom: 14px; overflow: hidden; }
.faq-q { padding: 22px 24px; font-weight: 700; font-size: 16px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; transition: background .25s, color .25s; user-select: none; }
.faq-q:hover { background: rgba(124,58,237,0.03); color: var(--purple); }
.faq-q.open { color: var(--purple); background: rgba(124,58,237,0.04); }
.faq-q .arr { font-size: 20px; transition: transform .3s; font-weight: 400; }
.faq-q.open .arr { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 22px; font-size: 15px; color: #64748b; line-height: 1.75; }
.faq-a.open { display: block; }

/* FOOTER CTA */
.cta-section { background: var(--grad); position: relative; overflow: hidden; text-align: center; padding: 80px 24px; }
.cta-section .orb1 { position: absolute; top: -50%; left: -10%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.12); filter: blur(80px); }
.cta-section .orb2 { position: absolute; bottom: -50%; right: -10%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.12); filter: blur(80px); }
.cta-section h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: #fff; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.82); margin-bottom: 40px; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* FOOTER */
footer { background: #0B061A; color: #fff; padding: 80px 0 40px; position: relative; overflow: hidden; }
footer .f-orb1 { position: absolute; top: -10%; left: 20%; width: 400px; height: 400px; border-radius: 50%; background: rgba(124,58,237,0.15); filter: blur(100px); }
footer .f-orb2 { position: absolute; bottom: -10%; right: 20%; width: 400px; height: 400px; border-radius: 50%; background: rgba(236,72,153,0.12); filter: blur(100px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 60px; position: relative; z-index: 2; }
.footer-about p { font-size: 15px; color: #94a3b8; line-height: 1.75; margin: 18px 0; }
.socials { display: flex; gap: 12px; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all .3s; text-decoration: none; }
.social-btn:hover { background: var(--purple); transform: translateY(-3px); }
.footer-col h3 { font-size: 16px; font-weight: 800; margin-bottom: 24px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: #94a3b8; transition: color .25s; }
.footer-col ul a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-item .icon { font-size: 16px; margin-top: 2px; color: var(--purple); }
.footer-contact-item span { font-size: 14px; color: #94a3b8; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 14px; color: #64748b; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 14px; color: #64748b; transition: color .25s; }
.footer-bottom-links a:hover { color: #fff; }

/* FLOATING BUTTONS */
.wa-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45); transition: all .3s; text-decoration: none;
}
.wa-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }
.wa-btn::before { content:''; position:absolute; inset:0; border-radius:50%; border:2px solid #25D366; animation: ping 1.5s ease-in-out infinite; }
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }
.wa-tooltip { position: absolute; right: calc(100% + 12px); background: #111; color: #fff; padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 700; white-space: nowrap; opacity: 0; transition: opacity .25s; pointer-events: none; }
.wa-btn:hover .wa-tooltip { opacity: 1; }
.scroll-top-btn {
  position: fixed; bottom: 100px; right: 24px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1.5px solid #e5e7eb;
  display: none; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); transition: all .3s; font-size: 18px;
}
.scroll-top-btn.show { display: flex; }
.scroll-top-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.quote-btn {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%) rotate(180deg); z-index: 999;
  writing-mode: vertical-rl; padding: 16px 10px; background: var(--grad2); color: #fff;
  font-weight: 800; font-size: 13px; border-radius: 12px 0 0 12px;
  cursor: pointer; border: none; box-shadow: -4px 0 24px rgba(124,58,237,0.3);
  transition: all .3s; letter-spacing: 1px;
}
.quote-btn:hover { padding-right: 14px; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0F0A2B; border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.3); flex-wrap: wrap;
}
.cookie-text { font-size: 14px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 10px; }
.cookie-text a { color: #A78BFA; text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; }
.cookie-decline { padding: 9px 20px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: rgba(255,255,255,0.6); font-size: 14px; cursor: pointer; font-weight: 600; transition: all .25s; }
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.cookie-accept { padding: 9px 22px; border-radius: 10px; background: var(--grad2); color: #fff; font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: all .25s; }
.cookie-accept:hover { transform: translateY(-1px); }

/* POPUP */
.popup-overlay { position: fixed; inset: 0; z-index: 9998; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 16px; }
.popup-overlay.open { display: flex; }
.popup-box { background: #fff; border-radius: 28px; max-width: 480px; width: 100%; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.25); animation: fadeUp .4s ease-out both; }
.popup-head { background: var(--grad2); padding: 24px 28px; position: relative; }
.popup-head h3 { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.popup-head p { color: rgba(255,255,255,0.75); font-size: 13px; }
.popup-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.2); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all .25s; }
.popup-close:hover { background: rgba(255,255,255,0.35); }
.popup-body { padding: 28px; }
.popup-body .form-field { margin-bottom: 14px; }
.popup-success { display: none; text-align: center; padding: 32px 20px; }
.popup-success .s-icon { font-size: 50px; margin-bottom: 14px; }
.popup-success h4 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.popup-success p { color: #64748b; font-size: 14px; }

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid, .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .stats-row { grid-template-columns: repeat(2,1fr); }
  .seo-types, .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { display: none; }
  .case-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(4,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .price-card.popular { transform: scale(1); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.active { display: flex; }
  .services-grid, .tech-grid, .tools-grid, .seo-types, .process-grid, .features-grid, .platforms-grid { grid-template-columns: 1fr; }
  .platform-card { flex-direction: column; text-align: center; align-items: center; }
  .process-item { flex-direction: column; text-align: center; align-items: center; }
  .case-grid { grid-template-columns: 1fr; }
  .stats-grid, .stats-row { grid-template-columns: 1fr; }
  .case-grid, .testi-grid, .ind-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
