/* ═══════════════════════════════════════════════
   WORKVYNT — Premium Design System
   Dark-Tech Aesthetic | Electric Cyan + Deep Violet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── Variables ─────────────────────────────────── */
:root {
  --bg:         #05050f;
  --bg2:        #0c0c1d;
  --bg3:        #12122a;
  --surface:    rgba(255,255,255,0.04);
  --border:     rgba(255,255,255,0.08);
  --cyan:       #00e5ff;
  --cyan-dim:   rgba(0,229,255,0.12);
  --violet:     #7c3aed;
  --violet-dim: rgba(124,58,237,0.15);
  --rose:       #f43f5e;
  --text:       #eeeeff;
  --muted:      #8888aa;
  --nav-h:      72px;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow-glow: 0 0 40px rgba(0,229,255,0.15);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: default;
}

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

/* ── Typography ────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
p { line-height: 1.75; color: var(--muted); }
a { text-decoration: none; color: inherit; }

/* ── Layout ────────────────────────────────────── */
.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}
.section {
  padding: 100px 0;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-title span {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 17px;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── Noise Overlay ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── Navigation ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,5,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(90%, 1200px);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  /* gap: 11px; */
}
.nav-logo img { height: 38px; object-fit: contain; }
.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav-logo-text span { color: var(--cyan); }
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--cyan);
  color: #030308;
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(0,229,255,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
}
.btn-lg {
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 12px;
}
.btn-ghost {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--cyan);
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  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;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(5,5,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 10px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--cyan);
  background: var(--cyan-dim);
  border-color: rgba(0,229,255,0.2);
}

/* ── Cards ─────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover { border-color: rgba(0,229,255,0.2); transform: translateY(-4px); }
.card:hover::before { transform: scaleX(1); }

/* ── Grid ──────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Icon Box ───────────────────────────────────── */
.icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.icon-cyan { background: var(--cyan-dim); color: var(--cyan); }
.icon-violet { background: var(--violet-dim); color: #a78bfa; }
.icon-rose { background: rgba(244,63,94,0.12); color: var(--rose); }

/* ── Hero (index) ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 30%, rgba(0,229,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(124,58,237,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,0.25);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 6px var(--cyan); }
  50% { box-shadow: 0 0 16px var(--cyan); }
}
.hero h1 {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--cyan) 0%, #a78bfa 50%, var(--rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
}
.stat-num span { color: var(--cyan); }
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
/* Floating cards */
.hero-floats {
  position: absolute;
  right: 0; top: 0;
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-card {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}
.float-card:nth-child(1) { top: 22%; right: 8%; animation-delay: 0s; }
.float-card:nth-child(2) { top: 42%; right: 22%; animation-delay: 1.5s; }
.float-card:nth-child(3) { top: 62%; right: 6%; animation-delay: 0.8s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-label { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.float-value { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; }
.float-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 6px;
}
.badge-green { background: rgba(16,185,129,0.15); color: #10b981; }
.badge-cyan { background: var(--cyan-dim); color: var(--cyan); }

/* ── Services preview ───────────────────────────── */
.services-strip {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-title {
  font-size: 13px;
  text-align: center;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.strip-items {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.strip-item:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }
.strip-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ── Page Hero (inner pages) ────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0,229,255,0.05) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ── Divider ────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Process Steps ──────────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 24px; }
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
}
.step-item:hover {
  background: var(--surface);
  border-color: var(--border);
}
.step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.3;
  min-width: 48px;
  line-height: 1;
  transition: opacity var(--transition);
}
.step-item:hover .step-num { opacity: 1; }
.step-body h4 { font-size: 17px; margin-bottom: 6px; }
.step-body p { font-size: 14px; }

/* ── Team ───────────────────────────────────────── */
.team-card {
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--cyan-dim), var(--violet-dim));
  border: 2px solid var(--border);
  color: var(--cyan);
}
.team-name { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--muted); }

/* ── Values ─────────────────────────────────────── */
.value-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ── Services page ──────────────────────────────── */
.service-card {
  padding: 36px;
}
.service-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 15px; }
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ── Pricing ────────────────────────────────────── */
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(124,58,237,0.08));
  border-color: rgba(0,229,255,0.3);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px; right: -30px;
  background: var(--cyan);
  color: #030308;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
}
.price-plan { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.price-amount { font-family: 'Poppins', sans-serif; font-size: 42px; font-weight: 800; margin-bottom: 4px; }
.price-amount sup { font-size: 20px; vertical-align: top; margin-top: 10px; display: inline-block; color: var(--muted); }
.price-amount span { font-size: 16px; color: var(--muted); font-weight: 400; }
.price-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.price-features li::before { content: '✓'; font-size: 13px; font-weight: 700; color: var(--cyan); background: var(--cyan-dim); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── Career ─────────────────────────────────────── */
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.job-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); background: var(--cyan-dim); border: 1px solid rgba(0,229,255,0.2); padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; display: inline-block; }
.job-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.job-meta span { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.job-meta i {color: var(--text); font-weight: bold;}
.perk-card { text-align: center; }
.perk-icon { font-size: 32px; margin-bottom: 14px; display: block; color: var(--muted);}
.perk-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }

/* ── Contact ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
  margin-bottom: 16px;
}
.contact-info-card:hover { border-color: rgba(0,229,255,0.2); }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--cyan-dim); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-label { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 500; }
/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg2); }
.form-submit { width: 100%; }

/* ── CTA Banner ─────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(124,58,237,0.12));
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.cta-banner h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 14px; }
.cta-banner p { font-size: 17px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-brand p { font-size: 14px; line-height: 1.8; margin: 14px 0 20px; }
.footer-logo { display: flex; align-items: center;  }
.footer-logo img { height: 38px; }
.footer-logo-text { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 18px; }
.footer-logo-text span { color: var(--cyan); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }
.footer-col h5 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 18px; color: var(--text); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--text); }

/* ── Testimonials ───────────────────────────────── */
.testimonial-card { padding: 32px; }
.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--violet-dim); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #a78bfa; font-family: 'Poppins', sans-serif; }
.testi-name { font-size: 15px; font-weight: 700; }
.testi-co { font-size: 12px; color: var(--muted); }

/* ── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utilities ──────────────────────────────────── */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.gap-between { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.space { height: 60px; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — Mobile-First, Every Breakpoint Covered
   ══════════════════════════════════════════════════ */

/* ── Tablet: 1024px ────────────────────────────── */
@media (max-width: 1024px) {
  /* Grids */
  .grid-3  { grid-template-columns: repeat(2, 1fr); }
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Hero */
  .hero-floats { display: none; }
  .hero h1 { font-size: clamp(32px, 5.5vw, 58px); }

  /* About story grid */
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Services pricing */
  .pricing-card.featured::before { display: none; }
}

/* ── Large mobile / Small tablet: 768px ─────────── */
@media (max-width: 768px) {

  /* ── Nav ── */
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  :root { --nav-h: 64px; }

  /* ── Section spacing ── */
  .section { padding: 60px 0; }
  .mb-60 { margin-bottom: 36px; }
  .space { height: 36px; }

  /* ── Typography scale ── */
  .section-title { font-size: clamp(24px, 6vw, 36px); }
  .section-desc  { font-size: 15px; }
  .page-hero h1  { font-size: clamp(28px, 8vw, 48px); letter-spacing: -0.5px; }
  .page-hero p   { font-size: 16px; }

  /* ── Page hero padding ── */
  .page-hero { padding: 130px 0 60px; }

  /* ── Grids → single column ── */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }

  /* ── Hero ── */
  .hero { min-height: auto; padding: 120px 0 64px; }
  .hero h1 { font-size: clamp(30px, 8vw, 48px); letter-spacing: -1px; margin-bottom: 18px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 22px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 28px;
  }
  .stat-num { font-size: 26px; }

  /* ── Buttons ── */
  .btn-lg { font-size: 15px; padding: 13px 24px; }

  /* ── Services strip ── */
  .services-strip { padding: 48px 0; }
  .strip-items { gap: 10px; }
  .strip-item { font-size: 13px; padding: 10px 16px; }

  /* ── Cards ── */
  .card { padding: 24px; }
  .service-card { padding: 26px; }
  .service-icon { font-size: 32px; }

  /* ── Pricing ── */
  .pricing-card { padding: 28px; }
  .price-amount { font-size: 34px; }

  /* ── Form ── */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 28px 22px; }

  /* ── Contact info ── */
  .contact-info-card { padding: 16px; }
  .contact-icon { width: 40px; height: 40px; font-size: 16px; }

  /* ── CTA banner ── */
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: clamp(22px, 5vw, 32px); }
  .cta-banner p { font-size: 15px; margin-bottom: 24px; }
  .cta-actions { flex-direction: column; gap: 12px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* ── Job cards ── */
  .job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .job-card .btn { width: 100%; justify-content: center; }
  .job-title { font-size: 17px; }
  .job-meta { flex-wrap: wrap; gap: 10px; }

  /* ── Perk cards ── */
  .perk-icon { font-size: 28px; }
  .perk-title { font-size: 15px; }

  /* ── Footer ── */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* ── Step list ── */
  .step-item { padding: 18px; gap: 14px; }
  .step-num { font-size: 26px; min-width: 38px; }

  /* ── Team ── */
  .team-avatar { width: 68px; height: 68px; font-size: 24px; }

  /* ── Testimonials ── */
  .testimonial-card { padding: 24px; }

  /* ── Process + stats home grid override ── */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:64px"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* ── Gap-between stacks ── */
  .gap-between { flex-direction: column; align-items: flex-start; }
  .gap-between .btn { width: 100%; justify-content: center; }

  /* ── About action buttons ── */
  [style*="display:flex"][style*="gap:16px"][style*="margin-top:32px"] {
    flex-direction: column !important;
    gap: 12px !important;
  }
  [style*="display:flex"][style*="gap:16px"][style*="margin-top:32px"] .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Small phones: 480px ────────────────────────── */
@media (max-width: 480px) {
  .container { width: 94%; }

  /* Hero */
  .hero h1 { font-size: clamp(26px, 9vw, 38px); }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 11px; }

  /* Section tag */
  .section-tag { font-size: 11px; padding: 5px 12px; letter-spacing: 2px; }

  /* Cards */
  .card { padding: 20px; border-radius: 16px; }
  .icon-box { width: 44px; height: 44px; font-size: 18px; border-radius: 12px; }

  /* Pricing */
  .price-amount { font-size: 30px; }
  .price-amount sup { font-size: 16px; }

  /* Team grid → 2 cols */
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team-avatar { width: 56px; height: 56px; font-size: 18px; }
  .team-name { font-size: 14px; }
  .team-role { font-size: 12px; }

  /* Mobile menu */
  .mobile-menu { padding: 16px; gap: 4px; }
  .mobile-menu a { font-size: 15px; padding: 10px 14px; }

  /* Footer socials */
  .footer-socials { flex-wrap: wrap; }

  /* Form */
  .form-card { padding: 20px 16px; }
  .form-group label { font-size: 12px; }
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 14px; padding: 11px 14px; }

  /* Page hero */
  .page-hero { padding: 120px 0 48px; }
  .page-hero p { font-size: 15px; }

  /* Strip */
  .strip-items { gap: 8px; }
  .strip-item { font-size: 12px; padding: 9px 14px; }

  /* CTA */
  .cta-banner { padding: 32px 18px; border-radius: 16px; }
  .cta-banner h2 { font-size: clamp(20px, 6vw, 28px); }

  /* Footer */
  .footer-logo-text { font-size: 17px; }
  .footer-col h5 { margin-bottom: 12px; }

  /* Job meta wraps tighter */
  .job-meta span { font-size: 12px; }
  .job-tag { font-size: 10px; }

  /* Section spacing */
  .section { padding: 48px 0; }
  .mb-60 { margin-bottom: 28px; }
}

/* ── Named grid classes (responsive overrides for inline grids) ── */
.about-story-grid,
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-story-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Touch / tap target safety ── */
@media (max-width: 768px) {
  .btn, .nav-links a, .footer-links a,
  .mobile-menu a, .social-btn, .strip-item,
  .apply-btn { min-height: 36px; }
  .apply-btn { display: flex; align-items: center; justify-content: center; }
}