/* ==================================================
   Bullseye Technology — Enhanced v2
================================================== */

:root {
  --primary: #00C2FF;
  --secondary: #00E6A8;
  --accent: #7B5CF5;
  --dark: #050816;
  --dark2: #0B1223;
  --dark3: #0f1a2e;
  --white: #ffffff;
  --text: #8FA3BF;
  --text-light: #C8D4E3;
  --border: rgba(255,255,255,.08);
  --border-hover: rgba(0,194,255,.35);
  --glass: rgba(255,255,255,.04);
  --glass-hover: rgba(255,255,255,.07);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-primary: 0 20px 50px rgba(0,194,255,.2);
  --shadow-card: 0 8px 32px rgba(0,0,0,.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* ==========================================
   Gradient Text
========================================== */
.gradient-text {
  background: linear-gradient(90deg, #00C2FF, #00E6A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   Background
========================================== */
.background {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, #050816, #07111F);
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.bg-orb-1 {
  width: 600px; height: 600px;
  top: -150px; left: -150px;
  background: rgba(0, 100, 200, 0.15);
}

.bg-orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: rgba(0, 180, 150, 0.12);
}

.bg-orb-3 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(123, 92, 245, 0.06);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.background span {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .2;
  animation: float 20s linear infinite;
}
.background span:nth-child(1) { top: 12%; left: 18%; }
.background span:nth-child(2) { top: 72%; left: 12%; animation-duration: 16s; }
.background span:nth-child(3) { top: 25%; right: 15%; animation-duration: 23s; }
.background span:nth-child(4) { bottom: 10%; right: 10%; animation-duration: 19s; }
.background span:nth-child(5) { top: 45%; left: 35%; animation-duration: 25s; }
.background span:nth-child(6) { top: 60%; right: 30%; animation-duration: 18s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-50px) scale(1.3); }
}

/* ==========================================
   Header
========================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(5, 8, 22, .85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(5, 8, 22, .95);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.logo img { height: 90px; }

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav ul li a {
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
  color: var(--text-light);
}

nav ul li a:hover, nav ul li a.active { color: var(--primary); }

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: .3s;
}

nav ul li a:hover::after,
nav ul li a.active::after { width: 100%; }

.navButton {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00C2FF, #008DFF);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.navButton:hover { transform: translateY(-3px); box-shadow: 0 25px 50px rgba(0,194,255,.3); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.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); }

/* ==========================================
   Section Common
========================================== */
section { padding: 110px 0; }

.sectionLabel {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.sectionTitle { text-align: center; margin-bottom: 70px; }
.sectionTitle .sectionLabel { display: block; }
.sectionTitle h2 { font-size: 46px; font-weight: 800; margin-bottom: 18px; line-height: 1.15; }
.sectionTitle p { color: var(--text); max-width: 680px; margin: auto; font-size: 17px; }

/* ==========================================
   Hero
========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0, 194, 255, .1);
  border: 1px solid rgba(0, 194, 255, .25);
  border-radius: 999px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(0.8); }
}

.hero h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 26px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 42px;
  max-width: 600px;
  line-height: 1.8;
}

.heroButtons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.primaryButton, .secondaryButton {
  padding: 16px 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}

.primaryButton {
  background: linear-gradient(90deg, #00C2FF, #0078FF);
  box-shadow: 0 8px 30px rgba(0,194,255,.25);
}

.primaryButton:hover { transform: translateY(-4px); box-shadow: var(--shadow-primary); }

.secondaryButton {
  border: 1px solid var(--border);
  color: var(--text-light);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.secondaryButton:hover { background: var(--glass-hover); border-color: rgba(255,255,255,.15); color: var(--white); }

.heroTrust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trustItem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.trustItem i { color: var(--primary); }

.heroImage { display: flex; justify-content: center; align-items: center; }

.heroImageWrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.heroImage img {
  width: 420px;
  filter: drop-shadow(0 0 30px rgba(0,194,255,.5)) drop-shadow(0 0 80px rgba(0,194,255,.2));
  animation: logoFloat 5s ease-in-out infinite;
}

.heroPing {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border: 1px solid rgba(0,194,255,.15);
  border-radius: 50%;
  animation: pingExpand 3s ease-out infinite;
  pointer-events: none;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pingExpand {
  0% { transform: translate(-50%,-50%) scale(0.8); opacity: .6; }
  100% { transform: translate(-50%,-50%) scale(1.6); opacity: 0; }
}

.heroScroll {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.heroScroll span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 12px;
  position: relative;
}

.heroScroll span::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ==========================================
   Cards (Services & Why Us)
========================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0,194,255,.12);
  background: var(--glass-hover);
}

.card:hover::before { opacity: 1; }

.card--highlight {
  border-color: rgba(0, 194, 255, .25);
  background: rgba(0, 194, 255, .06);
}

.card--new {
  border-color: rgba(0, 230, 168, .25);
  background: rgba(0, 230, 168, .04);
}

.cardBadge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(90deg, #00E6A8, #00C2FF);
  color: #050816;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.cardIcon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0, 194, 255, .12);
  border: 1px solid rgba(0, 194, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.card:hover .cardIcon {
  background: rgba(0, 194, 255, .2);
  border-color: rgba(0, 194, 255, .4);
}

.cardIcon i {
  font-size: 24px;
  color: var(--primary);
}

.card--new .cardIcon { background: rgba(0, 230, 168, .12); border-color: rgba(0, 230, 168, .2); }
.card--new .cardIcon i { color: var(--secondary); }

.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }

.card p { color: var(--text); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }

.cardList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cardList li {
  font-size: 13px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.cardList li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.card--new .cardList li::before { background: var(--secondary); }

.text-center { text-align: center; }
.text-center .cardIcon { margin-left: auto; margin-right: auto; }

/* ==========================================
   Web Design Section
========================================== */
.webdesign-section {
  background: rgba(255,255,255,.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.webdesign-content h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.webdesign-content p {
  color: var(--text-light);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.webdesign-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
}

.webdesign-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light);
}

.webdesign-features i { color: var(--secondary); font-size: 16px; flex-shrink: 0; }

/* Browser mockup */
.webdesign-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.browser-mockup {
  flex: 1;
  background: #0d1829;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: mockFloat 6s ease-in-out infinite;
}

@keyframes mockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.browser-bar {
  background: #111d33;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.browser-dots { display: flex; gap: 7px; }
.browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text);
  flex: 1;
  text-align: center;
}

.browser-content { padding: 24px; }

.mock-hero {
  background: linear-gradient(135deg, rgba(0,194,255,.1), rgba(0,230,168,.05));
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
}

.mock-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #00C2FF, #00E6A8);
  border-radius: 8px;
  margin-bottom: 16px;
}

.mock-headline {
  height: 10px;
  background: rgba(255,255,255,.3);
  border-radius: 5px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.mock-headline.short { width: 60%; }

.mock-btn-row { display: flex; gap: 10px; margin-top: 16px; }

.mock-btn {
  height: 28px; width: 80px;
  background: linear-gradient(90deg, #00C2FF, #00E6A8);
  border-radius: 14px;
  opacity: .8;
}

.mock-btn.outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-card {
  height: 50px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
}

/* Phone mockup */
.phone-mockup {
  width: 110px;
  background: #0d1829;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  animation: mockFloat 6s ease-in-out infinite;
  animation-delay: .5s;
}

.phone-screen { padding: 16px 12px; }

.phone-content {
  background: linear-gradient(135deg, rgba(0,194,255,.1), rgba(0,230,168,.05));
  border-radius: 10px;
  padding: 14px;
}

.phone-logo {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #00C2FF, #00E6A8);
  border-radius: 5px;
  margin-bottom: 10px;
}

.phone-line {
  height: 5px;
  background: rgba(255,255,255,.25);
  border-radius: 3px;
  margin-bottom: 6px;
}

.phone-line.short { width: 60%; }

.phone-btn {
  height: 16px;
  background: linear-gradient(90deg, #00C2FF, #00E6A8);
  border-radius: 8px;
  margin-top: 10px;
  opacity: .7;
}

/* ==========================================
   Technologies
========================================== */
.techGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.techGrid div {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.techGrid div i { font-size: 22px; color: var(--primary); }

.techGrid div:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--glass-hover);
  box-shadow: 0 12px 30px rgba(0,194,255,.12);
  color: var(--primary);
}

/* ==========================================
   About
========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .sectionLabel { display: block; margin-bottom: 18px; }

.about-content h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-content .primaryButton { margin-top: 12px; }

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

.statCard {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.statCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,194,255,.06), transparent);
  opacity: 0;
  transition: var(--transition);
}

.statCard:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.statCard:hover::before { opacity: 1; }

.statNumber {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  display: inline;
  line-height: 1;
}

.statPlus {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary);
  display: inline;
  line-height: 1;
}

.statLabel {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.statCard p { color: var(--text); font-size: 14px; font-weight: 600; margin-top: 10px; }

/* ==========================================
   Process
========================================== */
#process { background: rgba(255,255,255,.015); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.processGrid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 20px;
}

.processStep {
  flex: 1;
  text-align: center;
  padding: 40px 30px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.processStep:hover {
  border-color: var(--border-hover);
  background: var(--glass-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.processNum {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,194,255,.4);
  margin-bottom: 16px;
  line-height: 1;
}

.processStep h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.processStep p { font-size: 14px; color: var(--text); line-height: 1.7; }

.processArrow {
  font-size: 20px;
  color: rgba(0,194,255,.4);
  padding: 0 16px;
  flex-shrink: 0;
}

/* ==========================================
   Contact
========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-info .sectionLabel { display: block; margin-bottom: 18px; }

.contact-info h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contactItem {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contactItem:hover {
  border-color: var(--border-hover);
  background: var(--glass-hover);
  transform: translateX(6px);
}

.contactIcon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(0,194,255,.12);
  border: 1px solid rgba(0,194,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--primary);
}

.contactIcon.whatsapp-icon { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.2); color: #25D366; }

.contactItem div:last-child { display: flex; flex-direction: column; }
.contactItem strong { font-size: 14px; color: var(--white); margin-bottom: 2px; }
.contactItem span { font-size: 14px; color: var(--text); }
a.contactItem span { color: var(--primary); }

/* CTA Box */
.contact-box {
  background: linear-gradient(145deg, #0b1223, #111b31);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: sticky;
  top: 110px;
}

.contact-box h3 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.contact-box p { color: var(--text-light); font-size: 15px; margin-bottom: 28px; line-height: 1.7; }

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.contact-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37,211,102,.25); }

.contact-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-light);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 32px;
  transition: var(--transition);
  background: var(--glass);
}

.contact-btn-secondary:hover { border-color: var(--border-hover); color: var(--white); background: var(--glass-hover); }

.contact-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.contact-services span {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  background: rgba(0,194,255,.08);
  border: 1px solid rgba(0,194,255,.2);
  border-radius: 999px;
  color: var(--primary);
}

/* ==========================================
   Footer
========================================== */
footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .footerLogo {
  height: 100px;
  margin-bottom: 20px;
}

.footer-brand h3 { font-size: 22px; margin-bottom: 10px; }
.footer-brand p { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--border-hover); color: var(--primary); background: rgba(0,194,255,.08); }

.footer-links h4 { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li { font-size: 14px; color: var(--text); transition: var(--transition); }
.footer-links ul li a { color: var(--text); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 13px; color: var(--text); }
.footer-bottom a { color: var(--primary); }

/* ==========================================
   WhatsApp
========================================== */
.whatsapp {
  position: fixed;
  right: 28px; bottom: 28px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  z-index: 998;
  transition: var(--transition);
}

.whatsapp:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,.5); }

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2.5s ease-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================
   Back to Top
========================================== */
.topButton {
  position: fixed;
  right: 28px; bottom: 106px;
  width: 52px; height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C2FF, #0078FF);
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 998;
  box-shadow: 0 6px 20px rgba(0,194,255,.3);
}

.topButton.visible { opacity: 1; visibility: visible; }
.topButton:hover { transform: translateY(-3px); }

/* ==========================================
   Animations
========================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: .8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.show { opacity: 1; transform: translateY(0); }

/* ==========================================
   Responsive
========================================== */
@media (max-width: 1100px) {
  .heroGrid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .heroButtons { justify-content: center; }
  .heroTrust { justify-content: center; }
  .heroImage { margin-top: 50px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .techGrid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .webdesign-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .processGrid { flex-direction: column; gap: 16px; }
  .processArrow { transform: rotate(90deg); }
  .processStep { width: 100%; }
}

@media (max-width: 768px) {
  header { position: sticky; }

  .hamburger { display: flex; }

  nav ul {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5,8,22,.97);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 0;
    backdrop-filter: blur(24px);
  }

  nav ul.open { display: flex; }

  nav ul li { border-bottom: 1px solid var(--border); }
  nav ul li:last-child { border-bottom: none; }
  nav ul li a { display: block; padding: 14px 0; font-size: 16px; }

  nav { flex-wrap: wrap; position: relative; }
  .navButton { order: 3; }

  .hero { padding-top: 90px; }
  .hero h1 { font-size: 44px; }
  .sectionTitle h2 { font-size: 34px; }
  .cards { grid-template-columns: 1fr; }
  .techGrid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .webdesign-visual { flex-direction: column; align-items: center; }
  .phone-mockup { width: 100%; max-width: 200px; }
}

@media (max-width: 576px) {
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .primaryButton, .secondaryButton { width: 100%; }
  .techGrid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .contact-box { padding: 36px 24px; }
  .contact-info h2 { font-size: 32px; }
  .webdesign-content h2 { font-size: 32px; }
  .statNumber { font-size: 40px; }
  .navButton { padding: 11px 18px; font-size: 13px; }
}

/* ==========================================
   Scrollbar
========================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #07111F; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #00C2FF, #00E6A8); border-radius: 8px; }

/* ==========================================
   Selection
========================================== */
::selection { background: rgba(0,194,255,.3); color: var(--white); }
