/* =================================================================
   Experts InfoTech (Pvt) Ltd — Site stylesheet
   Modern, responsive, vanilla CSS (no external framework)
   Author: Mavis for expertspk.com
   ================================================================= */

:root {
  /* Brand palette */
  --brand-primary: #4b49ed;       /* main blue/violet */
  --brand-primary-700: #3a38c9;
  --brand-primary-100: #eef0ff;
  --brand-secondary: #0b1437;     /* deep navy */
  --brand-accent: #ff6b00;        /* warm orange */
  --brand-success: #16a34a;
  --brand-danger: #dc2626;
  --brand-whatsapp: #25d366;
  --brand-cyan: #06b6d4;
  --brand-pink: #ec4899;
  --brand-purple: #a855f7;

  /* Surface */
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --bg-tint: #eef0ff;
  --bg-dark: #0a0e27;
  --text: #0f172a;
  --text-muted: #475569;
  --text-soft: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --shadow-md: 0 6px 18px -8px rgba(15,23,42,.18), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 20px 50px -20px rgba(15,23,42,.25), 0 8px 18px -8px rgba(15,23,42,.12);
  --shadow-glow: 0 0 0 4px rgba(75,73,237,.18);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Type */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Layout */
  --container: 1200px;
  --header-h: 72px;

  /* Motion */
  --t-fast: 150ms cubic-bezier(.2,.7,.3,1);
  --t-base: 240ms cubic-bezier(.2,.7,.3,1);
}

/* ----- Reset ----- */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: var(--brand-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand-primary-700); }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; color: var(--text-muted); }
ul, ol { color: var(--text-muted); }
hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }
::selection { background: rgba(75,73,237,.18); color: var(--text); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; padding: 8px 14px;
  background: var(--brand-primary); color: #fff; z-index: 9999; border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 1.75rem; } }

/* ====== Top bar (announcement) ====== */
.topbar {
  background: linear-gradient(90deg, var(--brand-secondary), #1a2356);
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  padding: .5rem 0;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: nowrap;
}
.topbar a, .topbar span { color: #fff; opacity: .9; display: inline-flex; align-items: center; white-space: nowrap; vertical-align: middle; }
.topbar a:hover { opacity: 1; color: #fff; }
.topbar .topbar__left, .topbar .topbar__right { display: flex; gap: 1.25rem; align-items: center; flex-wrap: nowrap; }
.topbar svg { width: 14px; height: 14px; flex-shrink: 0; margin-right: 6px; }
@media (max-width: 600px) {
  .topbar { font-size: .78rem; }
  .topbar__inner { flex-wrap: wrap; row-gap: .5rem; justify-content: center; }
  .topbar .topbar__left, .topbar .topbar__right { flex-wrap: wrap; justify-content: center; row-gap: .35rem; }
}

/* ====== Header / Nav ====== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.nav__brand { display: inline-flex; align-items: center; gap: .6rem; }
.nav__brand img { width: 156px; height: auto; }
.nav__brand-text { display: none; }
.nav__list { display: none; gap: .25rem; list-style: none; padding: 0; margin: 0; }
.nav__list > li { position: relative; }
.nav__list > li > a {
  display: inline-block; padding: .55rem .9rem; font-weight: 500; color: var(--text);
  border-radius: var(--r-md); transition: all var(--t-fast);
}
.nav__list > li > a:hover, .nav__list > li > a.is-active {
  background: var(--bg-soft); color: var(--brand-primary);
}
.nav__list .has-mega > a::after {
  content: "▾"; font-size: .7em; margin-left: 4px; opacity: .6;
}
/* Mega-menu */
.mega {
  position: absolute; top: 100%; left: 0; min-width: 720px; max-width: 90vw;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  display: none;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { display: grid; }
.mega h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-primary); margin-bottom: .8rem; }
.mega ul { list-style: none; padding: 0; margin: 0; }
.mega ul li a {
  display: block; padding: .5rem .6rem; border-radius: var(--r-sm);
  color: var(--text); font-size: .92rem;
}
.mega ul li a:hover { background: var(--bg-soft); color: var(--brand-primary); }
.mega p { font-size: .85rem; color: var(--text-soft); }

.nav__cta { display: flex; gap: .5rem; align-items: center; }
.nav__burger {
  display: inline-flex; background: transparent; border: 1px solid var(--border);
  width: 42px; height: 42px; border-radius: var(--r-md); align-items: center; justify-content: center;
  color: var(--text);
}
.nav__burger span, .nav__burger::before, .nav__burger::after {
  content: ""; display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform var(--t-base);
}
.nav__burger { position: relative; }
.nav__burger::before, .nav__burger::after { position: absolute; left: 11px; }
.nav__burger::before { top: 13px; }
.nav__burger::after  { top: 25px; }
.nav__burger span { position: absolute; left: 11px; top: 19px; }
.nav__burger[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"]::after  { transform: translateY(-6px) rotate(-45deg); }
.nav__burger[aria-expanded="true"] span { opacity: 0; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 90vw); background: #fff;
  z-index: 200; transform: translateX(100%); transition: transform var(--t-base);
  box-shadow: -20px 0 40px rgba(0,0,0,.15);
  display: flex; flex-direction: column;
  padding: 1.25rem;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.mobile-drawer__head img { width: 140px; }
.mobile-drawer__close { background: transparent; border: 0; font-size: 1.5rem; color: var(--text); }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer ul li a { display: block; padding: .75rem 0; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-drawer ul li a:hover { color: var(--brand-primary); }
.mobile-drawer .btn { margin-top: 1rem; }
.backdrop { position: fixed; inset: 0; background: rgba(15,23,42,.45); z-index: 150; opacity: 0; pointer-events: none; transition: opacity var(--t-base); }
.backdrop.is-open { opacity: 1; pointer-events: auto; }

@media (min-width: 1024px) {
  .nav__list { display: flex; }
  .nav__burger { display: none; }
  .nav__brand-text { display: none; }
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .65rem 1.1rem; font-weight: 600; font-size: .95rem;
  border-radius: var(--r-md); border: 1px solid transparent;
  transition: all var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: none; box-shadow: var(--shadow-glow); }
.btn--primary { background: var(--brand-primary); color: #fff; }
.btn--primary:hover { background: var(--brand-primary-700); color: #fff; transform: translateY(-1px); }
.btn--secondary { background: var(--bg-soft); color: var(--text); border-color: var(--border); }
.btn--secondary:hover { background: var(--border); color: var(--text); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { background: var(--bg-soft); color: var(--brand-primary); border-color: var(--brand-primary); }
.btn--accent { background: var(--brand-accent); color: #fff; }
.btn--accent:hover { background: #e25e00; color: #fff; }
.btn--whatsapp { background: var(--brand-whatsapp); color: #fff; }
.btn--whatsapp:hover { background: #1ebd5a; color: #fff; }
.btn--dark { background: var(--brand-secondary); color: #fff; }
.btn--dark:hover { background: #050a1a; color: #fff; }
.btn--lg { padding: .85rem 1.4rem; font-size: 1rem; }
.btn--sm { padding: .45rem .85rem; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(75,73,237,.12), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(255,107,0,.07), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, #fff 100%);
}
.hero__grid {
  display: grid; gap: 2.5rem; align-items: center;
  grid-template-columns: 1fr;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--brand-primary-100); color: var(--brand-primary);
  padding: .35rem .8rem; border-radius: var(--r-pill); font-size: .8rem; font-weight: 600;
  margin-bottom: 1.1rem;
}
.hero__eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--brand-primary); border-radius: 50%; }
.hero__title { margin: 0 0 1rem; }
.hero__title .grad {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { font-size: 1.1rem; max-width: 60ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero__bullets { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: 1rem; font-size: .9rem; color: var(--text-muted); }
.hero__bullets li { display: inline-flex; align-items: center; gap: .35rem; }
.hero__bullets li::before { content: "✓"; color: var(--brand-success); font-weight: 700; }
.hero__visual {
  position: relative;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-cyan));
  border-radius: var(--r-xl);
  padding: 1.25rem;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  overflow: hidden;
}
.hero__visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,107,0,.18), transparent 50%);
}
.hero__visual-card {
  position: relative; z-index: 1; color: #fff; text-align: center; max-width: 320px;
}
.hero__visual-card .badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.18); color: #fff; padding: .25rem .7rem;
  border-radius: var(--r-pill); font-size: .8rem; font-weight: 600;
  margin-bottom: .75rem; backdrop-filter: blur(6px);
}
.hero__visual-card h3 { color: #fff; font-size: 1.5rem; margin: 0 0 .5rem; }
.hero__visual-card p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }

@media (min-width: 900px) {
  .hero { padding: 6rem 0 5rem; }
  .hero__grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
}

/* ====== Sections ====== */
section { padding: 4rem 0; }
.section-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow {
  display: inline-block; color: var(--brand-primary); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .8rem;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section--soft { background: var(--bg-soft); }
.section--dark {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #1a2356 100%);
  color: rgba(255,255,255,.92);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.7); }

/* ====== Cards / Grids ====== */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.5rem; transition: all var(--t-base);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--brand-primary-100); color: var(--brand-primary);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin: 0 0 .5rem; }
.card p { font-size: .92rem; margin: 0; }
.card--feature { padding: 1.75rem; }

.card--product {
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
  border-color: var(--border);
}
.card--product .card__top {
  padding: 1.25rem 1.5rem 1.1rem;
  background: linear-gradient(135deg, var(--brand-primary-100), #fff);
  display: flex; flex-direction: column; align-items: stretch; gap: .8rem;
  border-bottom: 1px solid var(--border);
}
.card--product .card__logo {
  width: 100%; height: 64px; border-radius: var(--r-sm);
  object-fit: contain; flex-shrink: 0;
  background: #fff; padding: 8px 12px;
  display: block;
}
@media (min-width: 600px) {
  .card--product .card__logo { height: 80px; padding: 10px 14px; }
}
.card--product .card__top h3 { font-size: 1.1rem; margin: 0; }
.card--product .card__top small { color: var(--text-soft); font-size: .8rem; }
.card--product .card__body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card--product .card__body p { font-size: .9rem; flex: 1; }
.card--product .card__foot {
  padding: 1rem 1.5rem; border-top: 1px solid var(--border);
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.card--product .card__foot a {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .85rem; font-weight: 600;
}

/* ====== Stats ====== */
.stat-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem; text-align: center;
}
.stat { padding: 1.5rem 1rem; }
.stat__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: var(--brand-primary);
  letter-spacing: -0.02em; line-height: 1.1;
}
.stat--dark .stat__num { color: #fff; }
.stat__label { color: var(--text-muted); font-size: .9rem; margin-top: .25rem; }
.stat--dark .stat__label { color: rgba(255,255,255,.7); }

/* ====== Page header (interior pages) ====== */
.page-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
  text-align: center;
}
.page-hero .eyebrow {
  display: inline-block; color: var(--brand-primary); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .8rem;
}
.page-hero p { max-width: 760px; margin: 0 auto; font-size: 1.05rem; }
.page-hero .breadcrumbs {
  display: flex; justify-content: center; gap: .5rem; font-size: .85rem;
  color: var(--text-soft); margin-bottom: 1.5rem;
}
.page-hero .breadcrumbs a { color: var(--text-soft); }
.page-hero .breadcrumbs a:hover { color: var(--brand-primary); }

/* ====== Two-col ====== */
.two-col {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col--reverse > :first-child { order: 2; }
@media (min-width: 900px) { .two-col--reverse > :first-child { order: 1; } }

.feature-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.feature-list li { display: flex; gap: .6rem; align-items: flex-start; padding: .4rem 0; color: var(--text-muted); }
.feature-list li::before {
  content: ""; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  background: var(--brand-primary-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b49ed' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
  margin-top: 2px;
}

/* ====== Trust logos / product strip ====== */
.logo-strip { padding: 2rem 0; background: var(--bg-soft); }
.logo-strip__label { text-align: center; color: var(--text-soft); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; }
.logo-strip__row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem; align-items: center; justify-items: center;
}
.logo-strip__row a, .logo-strip__row span {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--text-muted); font-size: .95rem;
  opacity: .7; transition: opacity var(--t-fast);
}
.logo-strip__row a:hover { opacity: 1; color: var(--brand-primary); }
.logo-strip__row img { max-height: 36px; width: auto; }

/* ====== CTA strip ====== */
.cta-strip {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-cyan));
  color: #fff; border-radius: var(--r-xl);
  padding: 2.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 0% 100%, rgba(255,255,255,.15), transparent 50%);
}
.cta-strip > * { position: relative; }
.cta-strip h2 { color: #fff; margin-bottom: .8rem; }
.cta-strip p { color: rgba(255,255,255,.85); max-width: 60ch; margin: 0 auto 1.5rem; }
.cta-strip .btn--accent { color: var(--brand-primary); }

/* ====== Forms ====== */
.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form label { display: block; font-weight: 500; font-size: .9rem; color: var(--text); margin-bottom: .35rem; }
.form input, .form select, .form textarea {
  width: 100%; padding: .7rem .85rem; border: 1px solid var(--border-strong);
  border-radius: var(--r-md); background: #fff; transition: all var(--t-fast);
  font-size: .95rem;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(75,73,237,.18);
}
.form textarea { min-height: 120px; resize: vertical; }
.form__check { display: flex; gap: .5rem; align-items: flex-start; font-size: .85rem; color: var(--text-muted); }
.form__check input { width: auto; margin-top: 3px; }
.form__msg { padding: 1rem; border-radius: var(--r-md); font-size: .9rem; display: none; }
.form__msg.is-success { display: block; background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.form__msg.is-error { display: block; background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }

/* ====== Job / Internship cards ====== */
.job-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.75rem; display: grid; gap: 1rem;
  transition: all var(--t-base);
}
.job-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job-card__head { display: flex; align-items: flex-start; gap: 1rem; justify-content: space-between; flex-wrap: wrap; }
.job-card h3 { margin: 0 0 .25rem; }
.job-card__meta { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--text-soft); font-size: .85rem; }
.job-card__meta span { display: inline-flex; align-items: center; gap: .3rem; }
.job-card__meta svg { width: 14px; height: 14px; }
.job-card__body { color: var(--text-muted); font-size: .92rem; }
.job-card ul { list-style: none; padding: 0; margin: .75rem 0 0; display: grid; gap: .35rem; font-size: .9rem; }
.job-card ul li::before { content: "•"; color: var(--brand-primary); margin-right: .5rem; font-weight: 700; }
.job-card__foot { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .65rem; border-radius: var(--r-pill);
  font-size: .75rem; font-weight: 600; background: var(--bg-soft); color: var(--text-muted);
}
.badge--internship { background: #fef3c7; color: #92400e; }
.badge--fulltime { background: var(--brand-primary-100); color: var(--brand-primary); }
.badge--parttime { background: #dbeafe; color: #1e40af; }
.badge--remote { background: #dcfce7; color: #15803d; }

/* ====== Tabs (for forms: job vs internship) ====== */
.tabs {
  display: flex; gap: .25rem; background: var(--bg-soft);
  padding: .35rem; border-radius: var(--r-pill);
  max-width: max-content; margin: 0 auto 2rem;
}
.tabs button {
  background: transparent; border: 0; padding: .55rem 1.25rem;
  border-radius: var(--r-pill); font-weight: 600; font-size: .9rem;
  color: var(--text-muted); transition: all var(--t-fast);
}
.tabs button.is-active { background: #fff; color: var(--brand-primary); box-shadow: var(--shadow-sm); }

/* ====== Footer ====== */
.site-footer {
  background: var(--brand-secondary);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-brand img { width: 180px; height: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .9rem; max-width: 36ch; }
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-social a {
  display: grid; place-items: center; width: 36px; height: 36px;
  border-radius: var(--r-md); background: rgba(255,255,255,.08); color: #fff;
  transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--brand-primary); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: .25rem 0; font-size: .9rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }

/* Floating WhatsApp */
.float-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: grid; place-items: center; width: 56px; height: 56px;
  background: var(--brand-whatsapp); color: #fff; border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform var(--t-base);
}
.float-wa:hover { transform: scale(1.08); color: #fff; }
.float-wa svg { width: 26px; height: 26px; }

/* ====== Tables ====== */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.table th { font-weight: 600; color: var(--text); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.table tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff; }

/* ====== Pills / chips ====== */
.chip {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .7rem; border-radius: var(--r-pill);
  background: var(--bg-soft); color: var(--text-muted);
  font-size: .8rem; font-weight: 500;
}

/* ====== FAQ ====== */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 0; margin-bottom: .75rem; overflow: hidden;
  transition: all var(--t-fast);
}
.faq details[open] { border-color: var(--brand-primary); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--brand-primary);
  transition: transform var(--t-fast); flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq details > :not(summary) { padding: 0 1.25rem 1.1rem; color: var(--text-muted); }

/* ====== Quote ====== */
.quote {
  background: #fff; border-left: 4px solid var(--brand-primary);
  padding: 1.5rem 1.75rem; border-radius: var(--r-md);
  font-size: 1.05rem; color: var(--text);
}
.quote cite { display: block; margin-top: 1rem; font-style: normal; color: var(--text-muted); font-size: .9rem; }

/* ====== Utility ====== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.muted { color: var(--text-muted); }
.small { font-size: .85rem; }
.hidden { display: none; }

/* ====== Animations ====== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(20px); transition: all .6s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .1s; }
.reveal--d2 { transition-delay: .2s; }
.reveal--d3 { transition-delay: .3s; }

/* ====== Print ====== */
@media print {
  .site-header, .site-footer, .float-wa, .topbar { display: none; }
  body { color: #000; background: #fff; }
}

/* ====== Reduced motion ====== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   Photos & media (added Aug 2026)
   Use existing design tokens; new component classes for service
   hero photos, portfolio galleries, parallax sections, and figure
   captions. Works with the lazy-loaded WebP files in
   new/images/photos/.
   ================================================================= */

/* ----- Inline figure (image + caption) ----- */
figure.fig {
  margin: 0 0 1.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
figure.fig img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
figure.fig figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #fff;
  border-top: 1px solid var(--border);
}
figure.fig--borderless { border: 0; box-shadow: none; background: transparent; }
figure.fig--borderless figcaption { background: transparent; border-top: 0; padding-left: 0; padding-right: 0; }

/* ----- Two-column image + text ----- */
.image-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .image-pair { grid-template-columns: 1fr 1fr; }
  .image-pair--reverse > :first-child { order: 2; }
}
.image-pair__caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ----- Photo card (used in product/service hero strips) ----- */
.photo-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.photo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 10;
}
.photo-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(0deg, rgba(10,14,39,0.85) 0%, rgba(10,14,39,0.4) 70%, transparent 100%);
  color: #fff;
}
.photo-card__body h3 {
  color: #fff;
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
}
.photo-card__body p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin: 0;
}

/* ----- Photo card grid (3 cols on desktop) ----- */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }

/* ----- Gallery grid (masonry-ish via varied spans) ----- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery__item {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.gallery__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall img { aspect-ratio: 3 / 4; }
@media (max-width: 700px) { .gallery__item--wide { grid-column: span 1; } }

.gallery__cap {
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #fff;
  border-top: 1px solid var(--border);
}

/* ----- Parallax section (full-bleed image with overlay text) ----- */
.parallax {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
@media (max-width: 800px) {
  .parallax { background-attachment: scroll; padding: 3.5rem 0; }
}
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,39,0.78) 0%, rgba(75,73,237,0.65) 100%);
}
.parallax__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.parallax h2 { color: #fff; }
.parallax p { color: rgba(255,255,255,0.92); font-size: 1.1rem; }
.parallax .btn { margin-top: 1rem; }

/* ----- Hero with side image (for service pages) ----- */
.page-hero--with-image {
  padding-bottom: 0;
  position: relative;
}
.page-hero__media {
  margin: 2rem 0 -3rem;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 0;
}
.page-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 21 / 7;
  object-fit: cover;
}

/* ----- Cover banner (top of service page) ----- */
.cover-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 1.5rem 0 0;
  aspect-ratio: 21 / 7;
  background: var(--bg-soft);
}
.cover-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cover-banner__caption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(10,14,39,0.65);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
}

/* ----- Captioned screenshot mockup (for product pages) ----- */
.screenshot {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #0e1a2e, #142a47);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
}
.screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--r-lg) - 4px);
}
.screenshot--plain {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 0;
  box-shadow: var(--shadow-md);
}
.screenshot--plain img { border-radius: var(--r-lg); }

/* ----- Sticker / badge (small label sitting on a photo) ----- */
.photo-badge {
  position: absolute;
  left: 1rem; top: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.photo-badge--brand { background: var(--brand-primary); color: #fff; }
