/* ═══════════════════════════════════════════
   DRAGOBROS — STYLE.CSS
   Next-gen Digital Agency Template
═══════════════════════════════════════════ */

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

:root {
  --bg:          #050510;
  --bg-2:        #080820;
  --bg-card:     rgba(255,255,255,0.03);
  --border:      rgba(255,255,255,0.08);
  --border-h:    rgba(124,58,237,0.4);
  --purple:      #7c3aed;
  --purple-l:    #9f60ff;
  --cyan:        #06b6d4;
  --cyan-l:      #38d8f0;
  --white:       #ffffff;
  --white-60:    rgba(255,255,255,0.6);
  --white-30:    rgba(255,255,255,0.3);
  --white-10:    rgba(255,255,255,0.1);
  --grad:        linear-gradient(135deg, #7c3aed, #06b6d4);
  --grad-r:      linear-gradient(135deg, #06b6d4, #7c3aed);
  --font-main:   'Outfit', sans-serif;
  --font-alt:    'Space Grotesk', sans-serif;
  --radius:      16px;
  --radius-lg:   24px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }
button { border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 120px 0; }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION HEADER ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--grad);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #9f60ff, #38d8f0);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,0.4); }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--purple);
  background: rgba(124,58,237,0.1);
  transform: translateY(-2px);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--grad);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 100px;
  transition: var(--transition);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,0.4); }

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





/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(5,5,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--white);
  flex-shrink: 0;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-60);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--grad);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--white); }
.nav-link.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(5,5,16,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.mobile-menu.open { max-height: 400px; }
.mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-60);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--white); }

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 0%, var(--bg) 70%);
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white-60);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.03);
}
.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px #22c55e; }
  50% { box-shadow: 0 0 16px #22c55e, 0 0 32px rgba(34,197,94,0.4); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.typed-wrapper {
  display: inline-block;
  min-width: 320px;
}
.typed-cursor {
  display: inline-block;
  animation: blink 0.8s step-end infinite;
  color: var(--cyan);
  -webkit-text-fill-color: var(--cyan);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--white-60);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 40px;
  font-family: var(--font-alt);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-plus {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-60);
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid var(--white-30);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--white-60);
  border-radius: 2px;
  animation: scroll-anim 1.5s ease infinite;
}
@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
.scroll-indicator > span {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white-30);
  text-transform: uppercase;
}

/* ── MARQUEE ── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: rgba(124,58,237,0.04);
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-60);
}
.marquee-inner .dot {
  color: var(--purple);
  font-size: 10px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about-section { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left .section-tag { margin-bottom: 20px; }
.about-left .section-title { margin-bottom: 24px; }
.about-desc {
  color: var(--white-60);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-alt);
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.tag {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-60);
  background: var(--bg-card);
  transition: var(--transition);
}
.tag:hover { border-color: var(--purple); color: var(--white); }

.about-right { position: relative; }
.about-visual {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-orb {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, rgba(6,182,212,0.1) 50%, transparent 70%);
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.2);
  position: absolute;
  animation: orb-rotate 8s linear infinite;
}
@keyframes orb-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.about-circle-text {
  position: absolute;
  width: 280px; height: 280px;
  animation: circle-text-rotate 20s linear infinite;
}
.about-circle-text svg { width: 100%; height: 100%; }
.about-circle-text text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  fill: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.visual-card {
  position: absolute;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  animation: card-float 4s ease-in-out infinite;
}
.visual-card:hover { border-color: var(--purple); transform: scale(1.03); }
.card-1 { top: 20px; left: 0; animation-delay: 0s; }
.card-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1.5s; }
.card-3 { bottom: 20px; left: 0; animation-delay: 0.8s; }
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-2 { animation: card-float-2 4s ease-in-out infinite 1.5s; }
@keyframes card-float-2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}
.vc-icon { font-size: 1.5rem; }
.vc-text { display: flex; flex-direction: column; gap: 2px; }
.vc-text strong { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.vc-text span { font-size: 0.75rem; color: var(--white-60); }
@keyframes circle-text-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── SERVICES ── */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(124,58,237,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.service-card:hover { border-color: var(--border-h); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(124,58,237,0.15); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.08));
  border-color: rgba(124,58,237,0.3);
}
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--grad);
  border-radius: 100px;
  padding: 4px 12px;
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(124,58,237,0.2); transform: scale(1.05); }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--font-alt);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.service-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cyan);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 100px;
  padding: 3px 10px;
}
.service-arrow {
  font-size: 1.25rem;
  color: var(--white-30);
  transition: var(--transition);
}
.service-card:hover .service-arrow { color: var(--purple); transform: translateX(4px); }

/* ── WORK ── */
.work-section { background: var(--bg-2); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 24px;
}
.work-large { grid-column: span 2; }
.work-card { border-radius: var(--radius-lg); overflow: hidden; cursor: none; }
.work-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 300px;
}
.work-large .work-img-wrap { height: 340px; }
.work-img {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card:hover .work-img { transform: scale(1.05); }
.work-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.wp-icon { font-size: 3rem; opacity: 0.5; }
.wp-title { font-size: 1.5rem; font-weight: 800; letter-spacing: 3px; opacity: 0.6; }
.wp-sub { font-size: 0.75rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; opacity: 0.4; }
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,16,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--transition);
}
.work-card:hover .work-overlay { opacity: 1; }
.work-info { margin-bottom: 16px; }
.work-cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
}
.work-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.work-info p { font-size: 0.85rem; color: var(--white-60); line-height: 1.6; }
.work-link {
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  align-self: flex-end;
  transition: transform var(--transition);
}
.work-card:hover .work-link { transform: rotate(-45deg); }
.work-cta { text-align: center; margin-top: 48px; }

/* ── PROCESS ── */
.process-section { background: var(--bg); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 48px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
  z-index: 0;
}
.process-step {
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--purple);
  background: var(--bg);
  width: 48px; height: 48px;
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--grad);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 0 24px rgba(124,58,237,0.5);
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.step-content p {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.7;
  font-family: var(--font-alt);
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg-2); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  flex-shrink: 0;
}
.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.testimonial-card blockquote {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 32px;
  font-family: var(--font-alt);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.testimonial-author span { font-size: 0.8rem; color: var(--white-60); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { border-color: var(--purple); background: rgba(124,58,237,0.1); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  background: var(--white-30);
  border-radius: 50%;
  transition: var(--transition);
  border: none;
}
.dot.active { background: var(--grad); width: 24px; border-radius: 4px; }

/* ── CONTACT ── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { margin-bottom: 20px; }
.contact-desc {
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: var(--font-alt);
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.contact-item span { font-size: 0.875rem; color: var(--white-60); line-height: 1.6; }
.contact-item a { color: var(--white-60); transition: color var(--transition); }
.contact-item a:hover { color: var(--cyan); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white-60);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
  resize: vertical;
}
.form-group select { appearance: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-30); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: rgba(124,58,237,0.05);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px;
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
  font-family: var(--font-alt);
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--purple); color: var(--white); background: rgba(124,58,237,0.1); }
.footer-links-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group a,
.footer-links-group span {
  font-size: 0.875rem;
  color: var(--white-60);
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--white-60); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--white-60); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(124,58,237,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(124,58,237,0.5); }

/* ── AOS (Animate On Scroll) – custom ── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-down"] { transform: translateY(-20px); }
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="fade-down"].aos-animate { transform: translate(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-right { display: none; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-timeline::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 80px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); letter-spacing: -1px; }
  .typed-wrapper { min-width: 200px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-large { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 10px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .contact-form { padding: 24px 20px; }
}

/* ── SELECTION ── */
::selection { background: rgba(124,58,237,0.3); color: var(--white); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--grad); border-radius: 3px; }
