/* ==========================================================================
   Shree KP Kumar Graphics and Printing — Global Stylesheet
   Design language: CMYK "print registration" identity
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Core palette — process-ink derived */
  --ink-navy: #14141f;
  --ink-navy-soft: #1e1e2e;
  --paper: #f7f5ef;
  --paper-warm: #efeadf;
  --charcoal: #2b2b2b;
  --process-cyan: #00aeef;
  --process-magenta: #ec1e79;
  --process-yellow: #ffc800;
  --success-green: #1c9c62;
  --line: rgba(20, 20, 31, 0.12);
  --line-soft: rgba(247, 245, 239, 0.16);

  /* Type */
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Layout */
  --container: 1180px;
  --radius: 10px;
  --shadow: 0 12px 30px -12px rgba(20, 20, 31, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--process-cyan);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Eyebrow / section labels (registration-mark motif) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--process-magenta);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.eyebrow::after {
  content: '';
  position: absolute;
}

/* registration cross mark, reusable */
.regmark {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
.regmark::before, .regmark::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.regmark::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.regmark::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.regmark-circle {
  position: absolute; inset: 2px; border: 1.5px solid currentColor; border-radius: 50%;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink-navy);
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: #55555f;
  max-width: 620px;
  margin-bottom: 44px;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 64px 0; }
.section--dark {
  background: var(--ink-navy);
  color: var(--paper);
}
.section--dark .section-title { color: var(--paper); }
.section--dark .section-sub { color: #b9b8c8; }
.section--paper-warm { background: var(--paper-warm); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--process-magenta);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(236, 30, 121, 0.55);
}
.btn--primary:hover { background: #d81169; }

.btn--whatsapp {
  background: #1fb955;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(31, 185, 85, 0.5);
}
.btn--whatsapp:hover { background: #17a147; }

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--ink-navy);
  color: var(--ink-navy);
}
.section--dark .btn--outline { border-color: var(--paper); color: var(--paper); }
.btn--outline:hover { background: var(--ink-navy); color: var(--paper); }

.btn--sm { padding: 11px 20px; font-size: 14px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink-navy);
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--ink-navy);
  position: relative;
  flex-shrink: 0;
}
.brand-mark span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.brand-mark .c { background: var(--process-cyan); top: 8px; left: 8px; }
.brand-mark .m { background: var(--process-magenta); top: 8px; right: 8px; }
.brand-mark .y { background: var(--process-yellow); bottom: 7px; left: 13.5px; }

.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #6c6c78;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--process-magenta); }
.nav-links a.active { color: var(--process-magenta); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--process-magenta);
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink-navy); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 73px; left: 0; right: 0; bottom: 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 30px 24px; gap: 22px; font-size: 19px; transform: translateX(-100%); transition: transform 0.3s ease; overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .header-phone span.txt { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 76px 0 60px;
  background:
    radial-gradient(circle at 85% 15%, rgba(0,174,239,0.10), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(236,30,121,0.08), transparent 45%),
    var(--paper);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--process-magenta);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.hero-eyebrow .regmark { color: var(--process-magenta); }

/* misregistration headline effect */
.misreg {
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink-navy);
}
.misreg .layer {
  display: block;
}
.misreg span.k { position: relative; z-index: 3; color: var(--ink-navy); }
.misreg-word {
  position: relative;
  display: inline-block;
}
.misreg-word::before,
.misreg-word::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  z-index: 1;
  pointer-events: none;
}
.misreg-word::before { color: var(--process-cyan); transform: translate(-3px, 2px); opacity: 0.75; }
.misreg-word::after { color: var(--process-magenta); transform: translate(3px, -2px); opacity: 0.7; }

.hero-desc {
  margin-top: 24px;
  font-size: 18px;
  color: #4b4b56;
  max-width: 520px;
}

.hero-cta { margin-top: 34px; }

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink-navy);
  font-weight: 800;
}
.hero-stat span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #6c6c78;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero visual — print job ticket card */
.job-ticket {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  transform: rotate(2deg);
  border: 1px solid var(--line);
}
.job-ticket::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 100%; height: 100%;
  border: 2px dashed rgba(20,20,31,0.15);
  border-radius: 16px;
  z-index: -1;
  transform: rotate(-4deg);
}
.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.ticket-head b { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; color: #6c6c78; text-transform: uppercase; }
.ticket-head .status { font-family: var(--font-mono); font-size: 12px; background: rgba(28,156,98,0.12); color: var(--success-green); padding: 4px 10px; border-radius: 999px; font-weight: 700; }
.ticket-swatches { display: flex; gap: 10px; margin: 18px 0; }
.swatch { width: 44px; height: 44px; border-radius: 8px; }
.swatch.c { background: var(--process-cyan); }
.swatch.m { background: var(--process-magenta); }
.swatch.y { background: var(--process-yellow); }
.swatch.k { background: var(--ink-navy); }
.ticket-row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 13px; padding: 8px 0; border-bottom: 1px dotted var(--line); color: #4b4b56; }
.ticket-row b { color: var(--ink-navy); }
.ticket-foot { margin-top: 18px; display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--success-green); font-weight: 700; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .job-ticket { max-width: 380px; margin: 0 auto; transform: rotate(0); }
}

/* ==========================================================================
   TRUST / STATS STRIP
   ========================================================================== */
.trust-strip {
  background: var(--ink-navy);
  color: var(--paper);
  padding: 34px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
}
.trust-item span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b9b8c8;
}
.trust-item b.cy { color: var(--process-cyan); }
.trust-item b.ma { color: var(--process-magenta); }
.trust-item b.ye { color: var(--process-yellow); }
@media (max-width: 700px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--process-magenta);
  margin-bottom: 14px;
  display: block;
}
.service-card h3 { font-size: 21px; margin-bottom: 8px; font-weight: 700; }
.service-card p { font-size: 14.5px; color: #5c5c68; }
.service-card .icon-dot {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 20px;
}
.service-card:nth-child(4n+1) .icon-dot { background: rgba(0,174,239,0.12); }
.service-card:nth-child(4n+2) .icon-dot { background: rgba(236,30,121,0.12); }
.service-card:nth-child(4n+3) .icon-dot { background: rgba(255,200,0,0.18); }
.service-card:nth-child(4n+4) .icon-dot { background: rgba(20,20,31,0.08); }

.service-link { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--ink-navy); }
.service-card:hover .service-link { color: var(--process-magenta); }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.feature-row {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .fnum {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--process-cyan);
  min-width: 34px;
}
.feature-row h4 { font-size: 18px; margin-bottom: 6px; }
.feature-row p { font-size: 14.5px; color: #5c5c68; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi-stars { color: var(--process-yellow); letter-spacing: 2px; font-size: 15px; }
.testi-card p.quote { font-size: 15px; color: #3a3a44; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 16px;
}
.testi-person b { display: block; font-size: 14px; }
.testi-person span { font-family: var(--font-mono); font-size: 11.5px; color: #6c6c78; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: var(--ink-navy);
  border-radius: 20px;
  padding: 56px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(0,174,239,0.25), transparent 70%);
}
.cta-band h2 { color: var(--paper); font-size: clamp(26px, 3.4vw, 36px); max-width: 480px; }
.cta-band p { color: #b9b8c8; margin-top: 10px; max-width: 460px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink-navy);
  color: #d8d7e2;
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand .brand { color: var(--paper); margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: #a5a4b4; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--process-magenta); border-color: var(--process-magenta); }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--process-cyan);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; font-size: 14.5px; }
.footer-col ul li a:hover { color: var(--process-magenta); }
.footer-col address { font-style: normal; font-size: 14.5px; line-height: 1.8; color: #d8d7e2; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: #8b8a9a;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--paper); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   PAGE HEADER (interior pages)
   ========================================================================== */
.page-header {
  background: var(--ink-navy);
  color: var(--paper);
  padding: 64px 0 54px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  right: -40px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,30,121,0.25), transparent 70%);
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #b9b8c8;
  margin-bottom: 14px;
}
.breadcrumb a:hover { color: var(--process-cyan); }
.page-header h1 { color: var(--paper); font-size: clamp(32px, 4.5vw, 48px); }
.page-header p { color: #b9b8c8; margin-top: 12px; max-width: 560px; font-size: 16px; }

/* ==========================================================================
   FORMS (contact)
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--ink-navy); }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--process-cyan);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: #6c6c78; margin-top: 6px; }
.form-msg { padding: 14px 16px; border-radius: 8px; font-size: 14.5px; margin-bottom: 20px; font-weight: 600; }
.form-msg.success { background: rgba(28,156,98,0.12); color: var(--success-green); }
.form-msg.error { background: rgba(236,30,121,0.1); color: var(--process-magenta); }

.contact-info-card {
  background: var(--ink-navy);
  color: var(--paper);
  border-radius: 16px;
  padding: 34px;
}
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,174,239,0.18); color: var(--process-cyan);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px;
}
.contact-info-row b { display: block; font-size: 14.5px; margin-bottom: 3px; }
.contact-info-row span, .contact-info-row a { font-size: 13.5px; color: #b9b8c8; }

.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); margin-top: 24px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.gallery-filter button {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  transition: all 0.15s ease;
}
.gallery-filter button.active, .gallery-filter button:hover {
  background: var(--ink-navy);
  border-color: var(--ink-navy);
  color: var(--paper);
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-tile {
  aspect-ratio: 4/5;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
  color: #fff;
}
.gallery-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,20,31,0.75) 100%);
}
.gallery-tile b { position: relative; z-index: 2; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.03em; }
.gallery-tile .tag { position: relative; z-index: 2; font-size: 11px; opacity: 0.85; }

/* ==========================================================================
   TEAM (about page)
   ========================================================================== */
.team-card { text-align: center; }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 30px; font-weight: 800; color: #fff;
}
.team-card h4 { font-size: 17px; margin-bottom: 4px; }
.team-card span { font-family: var(--font-mono); font-size: 12px; color: var(--process-magenta); }

/* ==========================================================================
   FAQ (contact/services support)
   ========================================================================== */
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item summary { font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--ink-navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--process-magenta); transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; font-size: 14.5px; color: #5c5c68; }

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #1fb955;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  box-shadow: 0 10px 26px -6px rgba(31,185,85,0.6);
  z-index: 90;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* Utility */
.mt-0 { margin-top: 0; }
.text-muted { color: #6c6c78; }
