
/* ============================================================
   SUPERSITE.PK — HOMEPAGE v3
   Premium agency design that sells the capability
   ============================================================ */
:root {
  --pink:       #E8175D;
  --pink-dark:  #C0104A;
  --pink-glow:  rgba(232,23,93,0.18);
  --black:      #080810;
  --dark:       #111120;
  --dark-2:     #181828;
  --dark-3:     #1e1e32;
  --dark-card:  #1a1a2e;
  --white:      #FFFFFF;
  --off-white:  #F7F7FB;
  --cta-bg:     #2d3a7a;
  --cta-grad:   #3b4a8c;
  --text-on-dark: rgba(255,255,255,0.65);
  --text-muted:   rgba(255,255,255,0.38);
  --text-dark:    #16162a;
  --text-gray:    #52526e;
  --border-dark:  rgba(255,255,255,0.07);
  --border-pink:  rgba(232,23,93,0.3);
  --font: 'Poppins', sans-serif;
  --container: 1160px;
  --r: 6px;
  --r-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.tc { text-align: center; }

h1,h2,h3,h4 { font-family: var(--font); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(50px, 8vw, 100px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; }
h2 { font-size: clamp(26px, 3vw, 38px); }
h3 { font-size: 18px; }

.label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}
.label--pink { color: var(--pink); }
.divider {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--pink);
  margin: 12px auto 36px;
}
.divider--left { margin-left: 0; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-pink {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: 0 4px 20px rgba(232,23,93,0.35);
}
.btn-pink:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  box-shadow: 0 6px 28px rgba(232,23,93,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline-pink:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,23,93,0.35);
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,8,16,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  gap: 24px;
}
/* LOGO — inline SVG scaled to fit */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo svg {
  height: 32px;
  width: auto;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 7px 13px;
  border-radius: var(--r);
  transition: all 0.18s;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-link.active { color: var(--pink); }

/* SERVICES MEGA-DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-toggle::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); opacity: 1; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  background: #0f0f22;
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, top 0.2s ease, visibility 0.2s;
  pointer-events: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 6px);
}

/* Two-column mega menu */
.nav-dd-col { padding: 20px; }
.nav-dd-col:first-child { border-right: 1px solid var(--border-dark); }
.nav-dd-col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding: 0 10px 10px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 8px;
}
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r);
  transition: background 0.18s;
}
.nav-dd-item:hover { background: rgba(232,23,93,0.08); }
.nav-dd-icon {
  width: 32px; height: 32px;
  border-radius: var(--r);
  background: rgba(232,23,93,0.08);
  border: 1px solid rgba(232,23,93,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-dd-icon svg { width: 15px; height: 15px; stroke: var(--pink); fill: none; stroke-width: 1.8; }

/* Platform icons use text logos */
.nav-dd-icon--text {
  font-size: 9px;
  font-weight: 900;
  color: var(--pink);
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
}
.nav-dd-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.82); margin-bottom: 1px; }
.nav-dd-desc { font-size: 11px; color: var(--text-muted); line-height: 1.3; }

/* NAV CTA — no phone, just button */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  background: #0d0d20;
  border-top: 1px solid var(--border-dark);
  padding: 16px 32px 24px;
}
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color 0.18s;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: block; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
/* animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,23,93,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,23,93,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* radial glow behind heading */
.hero-glow {
  position: absolute;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(232,23,93,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
/* bg image overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.supersite.pk/assets/img/supersite-social-image.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 32px 100px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,23,93,0.08);
  border: 1px solid rgba(232,23,93,0.2);
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:0.4; transform: scale(0.6); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 6px;
  line-height: 0.88;
}
.hero h1 em {
  color: var(--pink);
  font-style: normal;
  display: block;
}
.hero-location {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 18px;
  margin-bottom: 28px;
}
.hero-tagline {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border-dark);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}
.hero-trust-item svg { width: 16px; height: 16px; stroke: var(--pink); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════ */
.stats {
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border-dark);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-num em { color: var(--pink); font-style: normal; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   ABOUT (white section)
══════════════════════════════════════════════════════════ */
.about { background: var(--white); padding: 88px 0; }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-left h2 { color: var(--text-dark); margin-bottom: 8px; }
.about-left p { font-size: 14px; color: var(--text-gray); line-height: 1.9; margin-bottom: 14px; }
.about-left p:last-child { margin-bottom: 0; }
.about-left strong { font-size: 14px; font-weight: 700; color: var(--text-dark); display: block; margin: 18px 0 4px; }
.about-left strong:first-of-type { margin-top: 20px; }
.about-right { display: flex; flex-direction: column; gap: 16px; }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--r-lg);
  border: 1px solid #ebebf5;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-point:hover { border-color: rgba(232,23,93,0.25); box-shadow: 0 4px 20px rgba(232,23,93,0.06); }
.about-point-icon {
  width: 42px; height: 42px; border-radius: var(--r);
  background: rgba(232,23,93,0.08);
  border: 1px solid rgba(232,23,93,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-point-icon svg { width: 20px; height: 20px; stroke: var(--pink); fill: none; stroke-width: 1.8; }
.about-point-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.about-point-text  { font-size: 13px; color: var(--text-gray); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   SERVICES (off-white)
══════════════════════════════════════════════════════════ */
.services { background: var(--off-white); padding: 88px 0; }
.services h2 { color: var(--text-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scard {
  background: var(--white);
  border: 1px solid #e8e8f0;
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.scard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.scard:hover {
  border-color: rgba(232,23,93,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.scard:hover::after { transform: scaleX(1); }
.scard-icon {
  width: 50px; height: 50px;
  background: rgba(232,23,93,0.07);
  border: 1px solid rgba(232,23,93,0.15);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.scard-icon svg { width: 24px; height: 24px; stroke: var(--pink); fill: none; stroke-width: 1.8; }
.scard h3 { font-size: 17px; color: var(--text-dark); margin-bottom: 8px; }
.scard p  { font-size: 13px; color: var(--text-gray); line-height: 1.8; flex: 1; margin-bottom: 18px; }
.scard-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
  margin-top: auto;
}
.scard-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════════
   WHY US (dark)
══════════════════════════════════════════════════════════ */
.why { background: var(--dark); padding: 88px 0; }
.why h2 { color: var(--white); }
.why-intro { font-size: 15px; color: var(--text-on-dark); line-height: 1.9; max-width: 680px; margin: 0 auto 56px; }
.why-highlight { font-size: 19px; font-weight: 700; color: var(--pink); margin: 0 auto 14px; display: block; text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-dark); border: 1px solid var(--border-dark); border-radius: var(--r-lg); overflow: hidden; }
.why-item {
  background: var(--dark-2);
  padding: 36px 24px;
  text-align: center;
  transition: background 0.22s;
}
.why-item:hover { background: var(--dark-3); }
.why-item-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(232,23,93,0.08);
  border: 1px solid rgba(232,23,93,0.15);
  display: flex; align-items: center; justify-content: center;
}
.why-item-icon svg { width: 26px; height: 26px; stroke: var(--pink); fill: none; stroke-width: 1.6; }
.why-item h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.why-item p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════
   TECH
══════════════════════════════════════════════════════════ */
.tech { background: var(--dark-2); border-top: 1px solid var(--border-dark); padding: 88px 0; }
.tech h2 { color: var(--white); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.tech-item {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 28px 16px 22px;
  text-align: center;
  transition: all 0.22s;
}
.tech-item:hover {
  border-color: rgba(232,23,93,0.25);
  background: rgba(232,23,93,0.05);
  transform: translateY(-3px);
}
.tech-logo {
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  transition: color 0.22s;
}
.tech-item:hover .tech-logo { color: rgba(232,23,93,0.5); }
.tech-item h3 { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.tech-item p  { font-size: 11px; color: var(--text-muted); line-height: 1.7; display: none; }

/* ══════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════ */
.process { background: var(--dark); border-top: 1px solid var(--border-dark); padding: 88px 0; }
.process h2 { color: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(to right, var(--pink), rgba(232,23,93,0.15));
  z-index: 0;
}
.pstep {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.pstep-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 2px solid var(--pink);
  box-shadow: 0 0 0 6px rgba(232,23,93,0.06);
  color: var(--pink);
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.pstep h3 { font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.pstep p  { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testi { background: var(--dark-2); border-top: 1px solid var(--border-dark); padding: 88px 0; }
.testi h2 { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard {
  background: var(--dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: border-color 0.22s;
}
.tcard:hover { border-color: rgba(232,23,93,0.2); }
.tcard-stars { color: var(--pink); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard-quote { font-size: 24px; color: var(--pink); opacity: 0.3; font-family: Georgia, serif; line-height: 1; margin-bottom: 6px; }
.tcard-text  { font-size: 14px; color: var(--text-on-dark); line-height: 1.85; margin-bottom: 22px; }
.tcard-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border-dark); }
.tcard-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(232,23,93,0.1);
  border: 1.5px solid rgba(232,23,93,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--pink);
  flex-shrink: 0;
}
.tcard-name { font-size: 13px; font-weight: 600; color: var(--white); }
.tcard-role { font-size: 11px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   CLIENTS
══════════════════════════════════════════════════════════ */
.clients { background: var(--white); padding: 64px 0; }
.clients h2 { color: var(--text-dark); }
.clients-logos { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.clogo {
  height: 56px; min-width: 130px;
  border: 1px solid #e8e8f0;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px;
  transition: all 0.2s;
}
.clogo:hover { border-color: rgba(232,23,93,0.3); box-shadow: 0 4px 16px rgba(232,23,93,0.08); }
.clogo img { max-height: 34px; width: auto; filter: grayscale(100%); opacity: 0.5; transition: all 0.22s; }
.clogo:hover img { filter: none; opacity: 1; }

/* ══════════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════════ */
.blog { background: var(--off-white); padding: 88px 0; }
.blog h2 { color: var(--text-dark); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bcard {
  background: var(--white);
  border: 1px solid #e8e8f0;
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.bcard:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.bcard-img {
  height: 190px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,0.12);
  letter-spacing: 0.12em; text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.bcard-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(8,8,16,0.6), transparent);
}
.bcard-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.bcard-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.bcard h3  { font-size: 15px; color: var(--text-dark); line-height: 1.45; margin-bottom: 8px; }
.bcard p   { font-size: 13px; color: var(--text-gray); line-height: 1.75; flex: 1; }
.bcard-link { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); margin-top: 14px; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.bcard-link:hover { gap: 9px; }

/* ══════════════════════════════════════════════════════════
   CTA / CONTACT FORM
══════════════════════════════════════════════════════════ */
.cta {
  background: var(--cta-bg);
  background-image: radial-gradient(ellipse 80% 80% at 0% 50%, rgba(232,23,93,0.12) 0%, transparent 60%);
  padding: 88px 0;
  text-align: center;
}
.cta h2 { color: var(--white); font-size: clamp(22px, 3.5vw, 36px); line-height: 1.3; margin-bottom: 6px; }
.cta-sub  { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 4px; }
.cta-micro { font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 36px; }
.cta-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fi {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--r);
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.fi::placeholder { color: rgba(255,255,255,0.32); text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; }
.fi:focus { border-color: rgba(232,23,93,0.5); background: rgba(232,23,93,0.04); }
select.fi { cursor: pointer; }
select.fi option { background: var(--cta-grad); color: var(--white); }
textarea.fi { resize: vertical; min-height: 88px; }
.cta-submit {
  width: 100%;
  padding: 15px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: var(--r);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(232,23,93,0.4);
}
.cta-submit:hover { background: var(--pink-dark); box-shadow: 0 6px 28px rgba(232,23,93,0.55); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer { background: var(--black); border-top: 1px solid var(--border-dark); padding: 68px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand svg { height: 30px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.9; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 8px; }
.fsoc {
  width: 36px; height: 36px; border-radius: var(--r);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
  transition: all 0.18s; font-weight: 700;
}
.fsoc:hover { background: rgba(232,23,93,0.15); border-color: rgba(232,23,93,0.3); color: var(--pink); }
.fcol-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
}
.flinks li { margin-bottom: 10px; }
.flinks a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.18s; }
.flinks a:hover { color: var(--pink); }
.fcontact { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.fcontact a { color: rgba(255,255,255,0.45); transition: color 0.18s; }
.fcontact a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 32px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.18s; }
.footer-bottom a:hover { color: var(--pink); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .tech-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  h1 { font-size: 52px; }
  .about-wrap     { grid-template-columns: 1fr; gap: 36px; }
  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .process-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-grid::before { display: none; }
  .stats-inner    { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .tech-grid      { grid-template-columns: 1fr 1fr 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .cta-row        { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom  { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .why-grid    { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-inner  { grid-template-columns: 1fr 1fr; }
  .tech-grid    { grid-template-columns: 1fr 1fr; }
}


/* ========================================================
   SUPERSITE FIXES — applied over the original design system
   ======================================================== */

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.bcard { background: var(--card-bg, #181828); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.bcard:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.bcard-img { height: 180px; background: #111120; display: flex; align-items: center; justify-content: center; font-size: 40px; overflow: hidden; color: rgba(255,255,255,0.3); text-decoration: none; }
.bcard-img img { width: 100%; height: 100%; object-fit: cover; }
.bcard-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.bcard-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.bcard h3 { font-size: 16px; font-weight: 700; color: #ffffff; margin-bottom: 8px; line-height: 1.4; }
.bcard h3 a { color: inherit; text-decoration: none; }
.bcard h3 a:hover { color: var(--pink); }
.bcard p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; flex: 1; margin-bottom: 12px; }
.bcard-link { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pink); margin-top: auto; display: inline-flex; align-items: center; gap: 4px; text-decoration: none; }
.bcard-skeleton { background: linear-gradient(90deg, #1e1e32 25%, #2a2a42 50%, #1e1e32 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* Flash messages */
.flash { padding: 14px 20px; border-radius: 6px; font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.flash--success { background: rgba(23,168,101,0.12); border: 1px solid rgba(23,168,101,0.3); color: #3de8a0; }
.flash--error { background: rgba(232,23,93,0.12); border: 1px solid rgba(232,23,93,0.3); color: #ff6b8a; }

/* Pricing contrast fixes */
.save { background: rgba(46,204,135,0.2) !important; color: #3de8a0 !important; border: 1px solid rgba(46,204,135,0.3) !important; }
.pc-feat, .pc-features li { color: rgba(255,255,255,0.8) !important; }
.pc-type { color: rgba(255,255,255,0.6) !important; }
.pc-price-main, .pc-price { color: #ffffff !important; }
.plan-card { background: #12121f !important; border-color: rgba(255,255,255,0.1) !important; }
.plan-card.featured { background: #1a1a2e !important; border-color: var(--pink) !important; }
.plan-card h3, .plan-card .pc-name { color: rgba(255,255,255,0.7) !important; }

/* Footer — 5 columns matching design */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; padding: 56px 0 40px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; display: block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; margin: 12px 0 16px; max-width: 280px; }
.footer-contact-info { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-contact-info a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-contact-info a:hover { color: #fff; }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom-bar p, .footer-bottom-bar a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom-bar a:hover { color: rgba(255,255,255,0.6); }
.footer-legal { display: flex; gap: 20px; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: all .25s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none !important; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 8px; text-align: center; }
  .footer-legal { justify-content: center; }
}
