/* =========================================================
   Tech Minimaa — Master Stylesheet
   Palette: pink / purple / white / black
   ========================================================= */

:root {
  --pink:        #ec4899;
  --pink-soft:   #f9a8d4;
  --pink-tint:   #fce7f3;
  --purple:      #8b5cf6;
  --purple-dark: #7c3aed;
  --purple-deep: #5b21b6;
  --black:       #0a0a0a;
  --ink:         #111111;
  --gray-900:    #1a1a1a;
  --gray-700:    #4a4a4a;
  --gray-500:    #8a8a8a;
  --gray-300:    #d4d4d4;
  --gray-100:    #f5f5f7;
  --white:       #ffffff;
  --gradient:        linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  --gradient-soft:   linear-gradient(135deg, #fce7f3 0%, #ede9fe 100%);
  --gradient-dark:   linear-gradient(135deg, #5b21b6 0%, #0a0a0a 100%);

  --shadow-sm: 0 2px 8px rgba(17,17,17,.06);
  --shadow-md: 0 8px 30px rgba(139,92,246,.12);
  --shadow-lg: 0 20px 60px rgba(236,72,153,.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1200px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--purple); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
section { position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p  { color: var(--gray-700); }
.lead { font-size: 1.15rem; color: var(--gray-700); }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pink-tint);
  margin-bottom: 18px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.7); }
.section-soft { background: var(--gradient-soft); }
.section-tint { background: var(--gray-100); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  color: var(--purple);
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--pink); transform: translateX(4px); }

.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 18px rgba(17,17,17,.06); }
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--black);
}
.brand-logo {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--gradient);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-size: .94rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 999px;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--purple);
}
.main-nav .has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  border: 1px solid rgba(0,0,0,.05);
}
@media (hover: hover) and (min-width: 769px) {
  .has-drop:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .9rem;
  color: var(--gray-700);
}
.dropdown a:hover {
  background: var(--gradient-soft);
  color: var(--purple-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta .btn { padding: 10px 20px; font-size: .88rem; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gray-100);
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 18px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s ease;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--header-h) + 70px) 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(252, 231, 243, 0.88) 0%,
      rgba(249, 168, 212, 0.72) 50%,
      rgba(237, 233, 254, 0.88) 100%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.30) 0%,
      rgba(255, 255, 255, 0.45) 100%);
}
/* Legacy blob fallback (kept so existing markup remains safe) */
.hero-bg-blobs {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-blobs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.hero-bg-blobs .b1 { width: 380px; height: 380px; background: var(--pink); top: -80px; left: -100px; }
.hero-bg-blobs .b2 { width: 460px; height: 460px; background: var(--purple); top: 120px; right: -120px; }
.hero-bg-blobs .b3 { width: 300px; height: 300px; background: var(--pink-soft); bottom: -100px; left: 30%; opacity: .35; }
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 650px; margin: 0 auto 32px; font-size: 1.2rem; }
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139,92,246,.08);
}
.hero-stats .stat { text-align: center; }
.hero-stats .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats .lbl {
  font-size: .85rem;
  color: var(--gray-700);
  margin-top: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- Page hero (smaller) ---------- */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 70px;
  text-align: center;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.page-hero .breadcrumb {
  color: var(--gray-700);
  font-size: .88rem;
  margin-top: 14px;
}
.page-hero .breadcrumb a:hover { color: var(--purple); }

/* ---------- Service cards ---------- */
.svc-grid {
  grid-template-columns: repeat(3, 1fr);
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--purple-dark);
  font-size: 1.4rem;
}
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { font-size: .95rem; margin-bottom: 18px; }
.svc-card .btn-ghost { font-size: .9rem; font-weight: 600; }

/* ---------- Feature / Why us ---------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.feature {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.feature h4 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { font-size: .92rem; }

/* ---------- Process steps ---------- */
.process-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  position: relative;
  padding: 28px 18px;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }

/* ---------- Portfolio / Past work ---------- */
.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}
.work-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--black);
  aspect-ratio: 4/5;
  transition: transform .35s ease;
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform .6s ease, opacity .35s ease;
}
.work-card:hover img { transform: scale(1.06); opacity: .55; }
.work-card .info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,.92) 100%);
  color: var(--white);
}
.work-card .info p { color: rgba(255,255,255,.85); }
.work-card .tag {
  display: inline-block;
  font-size: .72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gradient);
  margin-bottom: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.work-card h4 { color: var(--white); font-size: 1.2rem; }

/* ---------- Team ---------- */
.team-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: var(--gradient);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { color: var(--purple); font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.team-social {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 14px;
}
.team-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid; place-items: center;
  color: var(--gray-700);
  font-size: .85rem;
  transition: background .25s, color .25s, transform .25s;
}
.team-social a:hover {
  background: var(--gradient);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */
.testi-grid { grid-template-columns: repeat(3, 1fr); }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
}
.testi-card .stars {
  color: var(--pink);
  margin-bottom: 14px;
  font-size: .95rem;
  letter-spacing: 2px;
}
.testi-card blockquote {
  font-size: .98rem;
  color: var(--gray-700);
  margin-bottom: 22px;
  font-style: italic;
  line-height: 1.65;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700;
}
.testi-author .name { font-weight: 600; font-size: .92rem; color: var(--black); }
.testi-author .pos  { font-size: .8rem; color: var(--gray-500); }

/* ---------- Contact / Forms ---------- */
.contact-grid {
  grid-template-columns: 5fr 6fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--gradient);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 14px; }
.contact-info-card p { color: rgba(255,255,255,.85); margin-bottom: 28px; }
.contact-info-list { display: grid; gap: 22px; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,.95);
  font-size: .95rem;
}
.contact-info-list .icn {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  display: grid; place-items: center;
  font-size: .95rem;
}
.contact-info-list strong { display: block; font-size: .8rem; opacity: .8; margin-bottom: 2px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.contact-info-list a { color: var(--white); }
.contact-info-list a:hover { color: var(--pink-tint); }

.form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  background: var(--white);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(139,92,246,.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form .btn-primary { width: 100%; justify-content: center; padding: 16px; }
.form .note {
  font-size: .8rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 14px;
}

/* ---------- CTA section ---------- */
.cta-block {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-block::before,
.cta-block::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.cta-block::before { width: 360px; height: 360px; background: var(--pink); top: -120px; left: -120px; }
.cta-block::after  { width: 360px; height: 360px; background: var(--purple); bottom: -120px; right: -120px; }
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: var(--white); margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-grid h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.footer-grid p { font-size: .92rem; color: rgba(255,255,255,.65); }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { font-size: .92rem; color: rgba(255,255,255,.7); }
.footer-grid ul a:hover { color: var(--pink-soft); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: var(--white);
  font-size: .9rem;
  transition: background .25s, transform .25s;
}
.footer-social a:hover { background: var(--gradient); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom span { color: rgba(255,255,255,.55); }
.footer-bottom span a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.25);
  text-underline-offset: 3px;
}
.footer-bottom span a:hover { color: var(--white); }
.footer-bottom .legal-links a { color: rgba(255,255,255,.65); }
.footer-bottom .legal-links a:hover { color: var(--white); }
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  z-index: 99;
  font-size: 1.5rem;
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { color: var(--white); transform: scale(1.06); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 10px 40px rgba(37,211,102,.65); }
}

/* ---------- Legal / Long content pages ---------- */
.prose {
  max-width: 820px;
  margin: 0 auto;
}
.prose h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.6rem;
}
.prose h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.prose p, .prose li {
  font-size: .98rem;
  color: var(--gray-700);
  margin-bottom: 14px;
}
.prose ul { padding-left: 22px; margin-bottom: 20px; }
.prose ul li { list-style: disc; }
.prose strong { color: var(--black); }
.prose a { color: var(--purple); text-decoration: underline; }

/* ---------- Career listing ---------- */
.job-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  padding: 26px 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,.06);
  margin-bottom: 16px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.job-card h4 { font-size: 1.15rem; margin-bottom: 6px; }
.job-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: .85rem;
  color: var(--gray-500);
}
.job-meta span::before {
  content: '•';
  margin-right: 6px;
  color: var(--pink);
}
.job-meta span:first-child::before { display: none; }

/* ---------- Service detail bullets ---------- */
.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-bullets li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .98rem;
  color: var(--gray-700);
}
.svc-bullets li:last-child { border-bottom: 0; }
.svc-bullets .check {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .75rem;
  margin-top: 2px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 30px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 18px;
}
.marquee-item::after {
  content: '✦';
  color: var(--pink);
  font-size: 1rem;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1024px) {
  .grid-4, .team-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .portfolio-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container { padding: 0 18px; }
  .menu-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
  .nav-cta .btn-primary { padding: 9px 14px; font-size: .82rem; white-space: nowrap; }
  .nav-cta .btn-primary .arrow { display: none; }
  .brand span:not(.brand-logo) { font-size: 1.1rem; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav a { padding: 14px 12px; font-size: 1rem; border-radius: 10px; }
  .main-nav a:hover, .main-nav a.active { background: var(--gradient-soft); }
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    min-width: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    width: 100%;
  }
  .has-drop.open .dropdown { display: block; }
  .has-drop > a::after {
    content: ' +';
    color: var(--purple);
    font-weight: 700;
    margin-left: 4px;
  }
  .has-drop.open > a::after { content: ' −'; }
  .dropdown a {
    padding: 12px;
    font-size: .94rem;
    border-radius: 10px;
    color: var(--gray-700);
  }
  .dropdown a:hover { background: var(--gradient-soft); color: var(--purple-dark); }

  .hero { padding: calc(var(--header-h) + 40px) 0 60px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
    margin-top: 50px;
  }
  .hero-stats .num { font-size: 1.8rem; }

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .grid-2, .grid-3, .grid-4,
  .svc-grid, .portfolio-grid, .testi-grid,
  .team-grid, .process-grid, .feature-list {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form { padding: 26px; }
  .contact-info-card { padding: 30px; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .job-card { padding: 20px; }
  .job-card .btn { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .btn { padding: 12px 22px; }
  .nav-cta .btn-primary { display: none; }
}

/* Accessibility focus */
:focus-visible {
  outline: 3px solid rgba(139,92,246,.35);
  outline-offset: 2px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
