/* =========================================================================
   Webnotics — hand-written CSS design system (replaces Tailwind)
   Organized by section; component sections mirror components/*.tsx names.
   ========================================================================= */

/* ---------- Design tokens -------------------------------------------- */
:root {
  --brand-50: #fef2f2;
  --brand-100: #fee2e2;
  --brand-200: #fecdcd;
  --brand-300: #fca5a5;
  --brand-400: #f87171;
  --brand-500: #f43f3f;
  --brand-600: #e6322b;
  --brand-700: #c31d17;
  --brand-800: #a01812;
  --brand-900: #841a15;
  --brand-950: #480a07;

  --accent-400: #f87171;
  --accent-500: #ef4444;
  --accent-600: #dc2626;

  --saffron: #ff9933;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-400: #34d399;
  --emerald-600: #059669;

  --amber-400: #fbbf24;
  --red-600: #dc2626;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.04), 0 1px 3px rgba(17, 24, 39, 0.03);
  --shadow-md: 0 4px 10px -2px rgba(17, 24, 39, 0.05), 0 12px 28px -10px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 10px 24px -6px rgba(17, 24, 39, 0.08), 0 20px 48px -16px rgba(17, 24, 39, 0.10);
  --shadow-xl: 0 24px 56px -14px rgba(17, 24, 39, 0.16);
  --shadow-red: 0 18px 44px -14px rgba(230, 50, 43, 0.38);

  /* Premium neutral border — warmer and lighter than slate-200 */
  --border: #ececec;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
}

/* ---------- Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }

body {
  font-family: var(--font-sans);
  background: #fff;
  color: var(--slate-900);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.01em; color: var(--slate-900); }

.overflow-x-auto { overflow-x: auto; }

/* ---------- Shared utility classes -------------------------------------- */
.container-page {
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 640px) {
  .container-page { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .container-page { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--brand-200);
  background: var(--brand-50);
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-700);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, var(--brand-500), var(--brand-600));
  padding: 0.95rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  box-shadow: var(--shadow-red);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  border: none;
}
.btn-primary:hover { background: linear-gradient(180deg, var(--brand-600), var(--brand-700)); box-shadow: 0 22px 50px -14px rgba(230, 50, 43, 0.5); color: #fff; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0) scale(0.99); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary--on-dark { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; box-shadow: none; }
.btn-primary--on-dark:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.08); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.95rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-800);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.btn-secondary:hover { border-color: var(--brand-300); color: var(--brand-700); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-secondary:active { transform: translateY(0) scale(0.99); }
.btn-secondary--on-dark { border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.05); color: #fff; }
.btn-secondary--on-dark:hover { border-color: rgba(255, 255, 255, 0.4); color: #fff; }

.card-surface {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card-surface:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #e2e2e2;
}

.text-gradient {
  background: linear-gradient(90deg, #e6322b 0%, #b3140d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grid-slate-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 60%, transparent 100%);
}

.print-hidden { }
@media print {
  .print-hidden { display: none !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Keyframes --------------------------------------------------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}
@keyframes bounce-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.animate-blob { animation: blob 12s infinite; }
.animate-blob--delay { animation-delay: 3s; }
.animate-float { animation: float 6s ease-in-out infinite; }

/* =========================================================================
   Logo
   ========================================================================= */
/* The wordmark and tagline are part of the logo artwork itself, so there is
   no separate text node to style — see partials/logo.php. */
.logo { display: inline-flex; align-items: center; }
.logo__img { display: block; height: 40px; width: auto; transition: transform 0.15s ease; }
.logo:hover .logo__img { transform: scale(1.03); }

/* =========================================================================
   Header / Nav
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--slate-600); transition: color 0.15s ease; }
.nav-link:hover { color: var(--brand-600); }

.nav-dropdown { position: relative; }
.nav-dropdown__trigger { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--slate-600); transition: color 0.15s ease; }
.nav-dropdown__trigger:hover { color: var(--brand-600); }
.nav-dropdown__chevron { transition: transform 0.15s ease; }
.nav-dropdown:hover .nav-dropdown__chevron { transform: rotate(180deg); }
.nav-dropdown__panel {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 50;
  width: 18rem;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.nav-dropdown:hover .nav-dropdown__panel { visibility: visible; opacity: 1; }
.nav-dropdown__panel-inner {
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 0.5rem;
  box-shadow: var(--shadow-xl);
}
.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-700);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown__item:hover { background: var(--brand-50); color: var(--brand-700); }
.nav-dropdown__hub {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid var(--slate-100);
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-600);
}
.nav-dropdown__hub:hover { background: var(--brand-50); }

.header-actions { display: none; align-items: center; gap: 0.75rem; }
/* Replaced the header phone link — chat is the primary channel now. */
.header-chat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.15s ease;
}
.header-chat:hover { color: var(--brand-600); }

/* An inline button that reads as a link (used in the FAQ intro). */
.link-button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--brand-600);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--slate-700);
}

.mobile-menu {
  display: none;
  max-height: calc(100vh - 4.5rem);
  overflow-y: auto;
  border-top: 1px solid var(--slate-200);
  background: #fff;
  padding: 0.5rem 1.25rem 1.5rem;
}
.mobile-menu.is-open { display: block; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav__link {
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}
.mobile-nav__link:hover { background: var(--brand-50); color: var(--brand-700); }
.mobile-nav .btn-primary { margin-top: 0.75rem; width: 100%; }

.mobile-dropdown__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}
.mobile-dropdown__trigger:hover { background: var(--brand-50); color: var(--brand-700); }
.mobile-dropdown__chevron { transition: transform 0.15s ease; }
.mobile-dropdown__chevron.is-open { transform: rotate(180deg); }
.mobile-dropdown__panel {
  display: none;
  margin-left: 0.75rem;
  flex-direction: column;
  gap: 0.125rem;
  border-left: 1px solid var(--slate-100);
  padding-left: 0.75rem;
}
.mobile-dropdown__panel.is-open { display: flex; }
.mobile-dropdown__item { border-radius: 0.5rem; padding: 0.5rem 0.75rem; font-size: 0.875rem; color: var(--slate-600); }
.mobile-dropdown__item:hover { background: var(--brand-50); color: var(--brand-700); }
.mobile-dropdown__hub { border-radius: 0.5rem; padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--brand-600); }
.mobile-dropdown__hub:hover { background: var(--brand-50); }

@media (min-width: 1024px) {
  .nav-desktop, .header-actions { display: flex; }
  .mobile-toggle, .mobile-menu { display: none !important; }
}

/* =========================================================================
   Hero / PageHero (dark band with grid bg + blobs)
   ========================================================================= */
.hero, .page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero { background: var(--slate-950); }

/* Homepage hero — light, with the device banner as a right-anchored image.
   The left gradient keeps the heading readable over any part of the artwork
   that reaches under the text column. */
.hero {
  background-color: #fff;
  background-image:
    linear-gradient(90deg, #ffffff 0%, #ffffff 30%, rgba(255,255,255,0.82) 46%, rgba(255,255,255,0) 60%),
    url('/images/banner.jpg');
  background-repeat: no-repeat, no-repeat;
  background-position: center center, right center;
  background-size: cover, auto 100%;
  padding: 4.5rem 0;
}
.page-hero { padding: 5rem 0; }
@media (min-width: 640px) {
  .hero { padding: 5.5rem 0; }
  .page-hero { padding: 6rem 0; }
}
@media (min-width: 1024px) {
  .hero { padding: 5rem 0; }
}
/* Below the two-column width the device would crowd the copy, so it drops to
   the bottom of the section behind a soft white veil. */
@media (max-width: 991px) {
  .hero {
    background-image:
      linear-gradient(180deg, #ffffff 0%, #ffffff 44%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0) 84%),
      url('/images/banner.jpg');
    background-position: center top, center bottom;
    background-size: cover, 130% auto;
    padding-bottom: 16rem;
  }
}
@media (max-width: 560px) {
  .hero {
    background-size: cover, 180% auto;
    padding-bottom: 12rem;
  }
  .hero__title { font-size: 1.85rem; }
}
.hero__blob, .page-hero__blob {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(80px);
}
.hero__blob--1, .page-hero__blob--1 { top: -6rem; left: 25%; background: rgba(230, 50, 43, 0.3); }
.hero__blob--2, .page-hero__blob--2 { top: 2.5rem; right: 2.5rem; background: rgba(230, 50, 43, 0.16); animation-delay: 3s; }

.hero__inner, .page-hero__inner { position: relative; }
.hero__content { position: relative; z-index: 2; max-width: 36rem; text-align: left; }
@media (min-width: 992px) { .hero__content { max-width: 40rem; } }
.hero__badge {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--brand-200);
  background: var(--brand-50);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-700);
}
.hero__badge-icon { color: var(--brand-600); }
.hero__badge-dot { display: flex; width: 0.5rem; height: 0.5rem; border-radius: 999px; background: var(--brand-500); }
.hero__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  overflow-wrap: break-word;
}
@media (min-width: 640px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.5rem; } }
.hero__desc { max-width: 34rem; margin: 1.5rem 0 0; font-size: 1.0625rem; line-height: 1.7; color: var(--slate-600); }
.hero__cta-row { margin-top: 2.25rem; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 1rem; }
@media (min-width: 480px) { .hero__cta-row { flex-direction: row; align-items: center; } }
.hero__cta-row .btn-primary, .hero__cta-row .btn-secondary { width: 100%; }
@media (min-width: 480px) { .hero__cta-row .btn-primary, .hero__cta-row .btn-secondary { width: auto; } }
.hero__trust-row {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}
.hero__trust-item { display: flex; align-items: center; gap: 0.375rem; }
.hero__divider { display: none; height: 1rem; width: 1px; background: var(--slate-200); }
@media (min-width: 640px) { .hero__divider { display: block; } }
.star-row { display: flex; color: var(--amber-400); gap: 1px; }
.text-accent { color: var(--brand-600); }

.page-hero__content { position: relative; text-align: center; }
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  backdrop-filter: blur(6px);
}
.page-hero__title {
  margin: 1.25rem auto 0;
  max-width: 48rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (min-width: 640px) { .page-hero__title { font-size: 3rem; } }
.page-hero__desc { margin: 1rem auto 0; max-width: 42rem; font-size: 1.125rem; color: var(--slate-300); }

/* =========================================================================
   TrustBar
   ========================================================================= */
.trust-bar { border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); background: #fff; padding: 2.5rem 0; }
.trust-bar__label { margin-bottom: 1.75rem; text-align: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate-400); }
/* Auto-scrolling marquee — the logo set is rendered twice and the track slides
   by exactly half its width, so the loop is seamless. */
.trust-bar__viewport { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.trust-bar__fade { display: none; }
.trust-bar__viewport--second { margin-top: 3rem; }
.trust-bar__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 3.5rem;
  animation: marquee 70s linear infinite;
}
/* Design row runs the opposite way (left-to-right). */
.trust-bar__track--reverse { animation-duration: 42s; animation-direction: reverse; }
.trust-bar__viewport:hover .trust-bar__track { animation-play-state: paused; }
.trust-bar__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  color: var(--slate-700);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.trust-bar__logo:hover { opacity: 1; }
.trust-bar__logo img { width: 2.1rem; height: 2.1rem; object-fit: contain; }
.trust-bar__logo-name { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .trust-bar__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* =========================================================================
   StatsBand — headline figures
   ========================================================================= */
.stats-band { background: #fff; padding: 3rem 0; }
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--slate-200);
  border: 1px solid var(--slate-200);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .stats-band__grid { grid-template-columns: repeat(4, 1fr); } }
.stats-band__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  padding: 1.5rem 1.25rem;
}
@media (min-width: 640px) { .stats-band__item { justify-content: center; } }
.stats-band__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: var(--brand-50);
  color: var(--brand-600);
}
.stats-band__value { font-size: 1.75rem; font-weight: 800; line-height: 1.1; color: var(--slate-900); letter-spacing: -0.02em; }
.stats-band__label { font-size: 0.85rem; font-weight: 500; color: var(--slate-500); margin-top: 0.15rem; }

/* =========================================================================
   AboutBand
   ========================================================================= */
.about-band { background: #fff; padding: 5rem 0; }
@media (min-width: 640px) { .about-band { padding: 5rem 0; } }
.about-band__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-band__grid { grid-template-columns: 1fr 1fr; } }
.about-band__image-wrap { position: relative; aspect-ratio: 4 / 3; width: 100%; overflow: hidden; border-radius: 1.5rem; }
.about-band__image { width: 100%; height: 100%; object-fit: cover; }
.about-band__title { margin-top: 1rem; font-size: 1.875rem; font-weight: 700; letter-spacing: -0.01em; }
@media (min-width: 640px) { .about-band__title { font-size: 2.25rem; } }
.about-band__desc { margin-top: 1rem; color: var(--slate-600); }
.about-band__points { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-band__point { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--slate-700); }
.icon-badge {
  margin-top: 0.125rem;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--emerald-50);
  color: var(--emerald-600);
}

/* =========================================================================
   Section heading helper (Services / Industry / WhyUs / Process / Portfolio / Pricing / FAQ)
   ========================================================================= */
.section-head { max-width: 44rem; margin: 0 auto; text-align: center; }
.section-head__title { margin-top: 1.1rem; font-size: 2rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
@media (min-width: 640px) { .section-head__title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .section-head__title { font-size: 2.75rem; } }
.section-head__desc { margin-top: 1.1rem; font-size: 1.0625rem; line-height: 1.7; color: var(--slate-500); }
.view-all-row { margin-top: 3rem; text-align: center; }

/* =========================================================================
   Services grid
   ========================================================================= */
.services-section { background: #fff; padding: 5rem 0; }
@media (min-width: 640px) { .services-section { padding: 5rem 0; } }
.services-grid { display: grid; gap: 1.75rem; margin-top: 4rem; }
.services-grid--flush { margin-top: 0; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { display: block; padding: 2rem; overflow: hidden; }
/* Premium red accent line that grows in on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 0;
  border-radius: 0 0 3px 0;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
  transition: width 0.3s ease;
}
.service-card:hover::before { width: 100%; }
.service-card__icon {
  margin-bottom: 1.5rem;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--brand-50);
  color: var(--brand-600);
  box-shadow: inset 0 0 0 1px var(--brand-100);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover .service-card__icon { background: var(--brand-600); color: #fff; transform: scale(1.08) rotate(-3deg); box-shadow: var(--shadow-red); }
.service-card__title { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
.service-card__desc { margin-top: 0.6rem; font-size: 0.9rem; line-height: 1.65; color: var(--slate-500); }
.service-card__cta {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-600);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-card:hover .service-card__cta { opacity: 1; transform: translateX(0); }

/* =========================================================================
   Industry / Software grid
   ========================================================================= */
.industry-section { background: #fff; padding: 5rem 0; }
@media (min-width: 640px) { .industry-section { padding: 5rem 0; } }
.industry-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
.industry-grid--flush { margin-top: 0; }
@media (min-width: 640px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industry-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-card { display: block; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.industry-card__image-wrap { position: relative; height: 10rem; width: 100%; overflow: hidden; }
.industry-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.industry-card:hover .industry-card__image { transform: scale(1.05); }
.industry-card__body { padding: 1.25rem; }
.industry-card__title { font-size: 0.875rem; font-weight: 600; }
.industry-card__desc { margin-top: 0.375rem; font-size: 0.75rem; line-height: 1.6; color: var(--slate-600); }
.industry-card__features { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.375rem; border-top: 1px solid var(--slate-100); padding-top: 0.75rem; }
.industry-card__feature { display: flex; align-items: flex-start; gap: 0.375rem; font-size: 0.75rem; color: var(--slate-600); }
.industry-card__feature svg { margin-top: 0.125rem; flex-shrink: 0; color: var(--emerald-600); }
.industry-card__cta {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-600);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.industry-card:hover .industry-card__cta { opacity: 1; }

.cross-link-band { background: var(--slate-50); padding: 4rem 0; text-align: center; }
.cross-link-band p { color: var(--slate-600); }
.cross-link-band .btn-secondary { margin-top: 1rem; }

/* =========================================================================
   Tech stack
   ========================================================================= */
.tech-section { background: #fff; padding: 5rem 0; }
.tech-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tech-grid { grid-template-columns: repeat(4, 1fr); } }
.tech-card { position: relative; padding: 1.6rem 1.5rem; overflow: hidden; }
.tech-card::before {
  content: "";
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
}
.tech-card__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.4rem; }
.tech-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-600);
  box-shadow: inset 0 0 0 1px var(--brand-100);
}
.tech-card__title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
.tech-card__title::after { content: ""; display: block; width: 1.75rem; height: 2px; margin-top: 0.4rem; border-radius: 2px; background: var(--brand-500); }
.tech-card__list { display: flex; flex-direction: column; gap: 0.6rem; }
.tech-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.tech-item:hover { border-color: var(--brand-200); background: var(--brand-50); transform: translateX(3px); }
.tech-item__icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 1.4rem; height: 1.4rem; color: var(--slate-500); }
.tech-item__icon img { width: 1.25rem; height: 1.25rem; object-fit: contain; }
.tech-item__name { font-size: 0.9rem; font-weight: 500; color: var(--slate-700); }

/* =========================================================================
   WhyUs
   ========================================================================= */
.why-us-section { background: var(--slate-50); padding: 5rem 0; }
@media (min-width: 640px) { .why-us-section { padding: 5rem 0; } }
.why-us__grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .why-us__grid { grid-template-columns: 0.82fr 2fr; align-items: center; gap: 3.5rem; } }
.why-us__title { margin-top: 1rem; font-size: 1.875rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
@media (min-width: 640px) { .why-us__title { font-size: 2.25rem; } }
.why-us__desc { margin-top: 1rem; color: var(--slate-500); line-height: 1.7; }
.why-us__bottom { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2.5rem; }
.why-us__checklist { display: flex; flex-direction: column; gap: 0.85rem; }
.why-us__check { display: flex; align-items: center; gap: 0.6rem; font-size: 0.925rem; font-weight: 500; color: var(--slate-700); }
.why-us__check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-600);
  box-shadow: inset 0 0 0 1px var(--brand-100);
}
.why-us__years-value { font-size: 2.75rem; font-weight: 800; line-height: 1; color: var(--brand-600); letter-spacing: -0.02em; }
.why-us__years-label { margin-top: 0.35rem; font-size: 0.85rem; color: var(--slate-500); }
.reason-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .reason-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reason-grid { grid-template-columns: repeat(3, 1fr); } }
.reason-card { padding: 1.9rem 1.6rem; }
.reason-card__icon {
  margin-bottom: 0.85rem;
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: var(--brand-50);
  color: var(--brand-600);
  box-shadow: inset 0 0 0 1px var(--brand-100);
  transition: background 0.25s ease, color 0.25s ease;
}
.reason-card:hover .reason-card__icon { background: var(--brand-600); color: #fff; }
.reason-card__title { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.reason-card__desc { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.65; color: var(--slate-500); }

/* =========================================================================
   Process
   ========================================================================= */
.process-section { background: #fff; padding: 5rem 0; }
@media (min-width: 640px) { .process-section { padding: 5rem 0; } }
.process-grid { position: relative; margin-top: 4rem; display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-line { display: none; }
@media (min-width: 1024px) {
  .process-line { display: block; pointer-events: none; position: absolute; left: 0; right: 0; top: 2rem; height: 2px; background: linear-gradient(90deg, var(--brand-200), var(--brand-400), var(--brand-200)); }
}
.process-step { position: relative; }
.process-step__number {
  margin-bottom: 1.25rem;
  display: flex;
  height: 4.25rem;
  width: 4.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-500), var(--brand-600));
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--shadow-red), 0 0 0 6px #fff, 0 0 0 7px var(--brand-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover .process-step__number { transform: translateY(-4px) scale(1.05); box-shadow: 0 22px 44px -12px rgba(230,50,43,0.55), 0 0 0 6px #fff, 0 0 0 7px var(--brand-200); }
.process-step__body { display: flex; align-items: flex-start; gap: 0.75rem; }
.process-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--brand-50);
  color: var(--brand-600);
  box-shadow: inset 0 0 0 1px var(--brand-100);
}
.process-step__title { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
.process-step__desc { margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.65; color: var(--slate-500); }

/* =========================================================================
   Portfolio
   ========================================================================= */
.portfolio-section { background: var(--slate-50); padding: 5rem 0; }
@media (min-width: 640px) { .portfolio-section { padding: 5rem 0; } }
.portfolio-grid { display: grid; gap: 1.75rem; margin-top: 4rem; }
.portfolio-grid--flush { margin-top: 0; }
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }
/* Not a link — see partials/portfolio-grid.php for why. */
.portfolio-card { display: block; overflow: hidden; }
.portfolio-card:hover { box-shadow: var(--shadow-xl); }
/* Holds a screenshot of the live client site. object-position: top so the
   card shows the header/hero rather than a slice from the middle. */
.portfolio-card__cover { height: 12rem; overflow: hidden; background: var(--slate-100); }
@media (min-width: 1024px) { .portfolio-card__cover { height: 11rem; } }
.portfolio-card__shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-card__shot { transform: scale(1.07); }
.portfolio-card__body { padding: 1.5rem; }
.portfolio-card__name { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; color: var(--slate-900); }
.portfolio-card__category { margin-top: 0.25rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand-600); }
.portfolio-footnote { margin-top: 2.5rem; text-align: center; font-size: 0.875rem; color: var(--slate-500); }
.portfolio-footnote a { font-weight: 600; color: var(--brand-600); }
.portfolio-footnote a:hover { text-decoration: underline; }

/* Gradient map, mirroring Tailwind `from-x to-y` combos used in content.php */
.grad-emerald-teal { background: linear-gradient(135deg, #34d399, #14b8a6); }
.grad-sky-blue { background: linear-gradient(135deg, #38bdf8, #3b82f6); }
.grad-orange-rose { background: linear-gradient(135deg, #fb923c, #f43f5e); }
.grad-violet-indigo { background: linear-gradient(135deg, #f87171, #e6322b); }
.grad-amber-orange { background: linear-gradient(135deg, #fbbf24, #f97316); }
.grad-fuchsia-pink { background: linear-gradient(135deg, #e879f9, #ec4899); }

/* =========================================================================
   Pricing
   ========================================================================= */
.pricing-section { background: #fff; padding: 5rem 0; }
@media (min-width: 640px) { .pricing-section { padding: 5rem 0; } }
.pricing-grid { display: grid; gap: 2rem; margin-top: 3.5rem; }
.pricing-grid--flush { margin-top: 0; }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { position: relative; border-radius: 1.5rem; padding: 2.25rem; }
.pricing-card--highlight {
  border: 2px solid var(--brand-600);
  background: #fff;
  box-shadow: 0 30px 60px -20px rgba(230, 50, 43, 0.3), 0 0 0 1px rgba(230,50,43,0.06);
}
/* Soft red glow behind the highlighted plan */
.pricing-card--highlight::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  box-shadow: 0 0 70px -12px rgba(230, 50, 43, 0.3);
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 1024px) { .pricing-card--highlight { transform: translateY(-1.25rem); } }
.pricing-card__badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--brand-600);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}
.pricing-card__name { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; color: var(--slate-900); }
.pricing-card__desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--slate-500); }
.pricing-card__price-row { margin-top: 1.5rem; display: flex; align-items: baseline; gap: 0.5rem; }
.pricing-card__price { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; }
.pricing-card__period { color: var(--slate-500); }
.pricing-card__features { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.pricing-card__feature { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--slate-700); }
.pricing-card__feature svg { margin-top: 0.125rem; flex-shrink: 0; color: var(--brand-600); }
.pricing-card__cta {
  margin-top: 2rem;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  background: var(--brand-600);
  color: #fff;
}
.pricing-card__cta:hover { background: var(--brand-700); box-shadow: var(--shadow-red); }
/* Non-highlighted plans use an outline CTA so the popular plan's solid red stands out */
.pricing-card.card-surface .pricing-card__cta { background: #fff; color: var(--brand-600); border: 1px solid var(--brand-200); }
.pricing-card.card-surface .pricing-card__cta:hover { background: var(--brand-50); box-shadow: none; }
.pricing-footnote { margin-top: 2rem; text-align: center; font-size: 0.875rem; color: var(--slate-500); }
.pricing-footnote a { font-weight: 600; color: var(--brand-600); }
.pricing-footnote a:hover { text-decoration: underline; }

/* Add-ons table (pricing.php) */
.addons-section { background: var(--slate-50); padding: 5rem 0; }
@media (min-width: 640px) { .addons-section { padding: 5rem 0; } }
.addons-table-wrap { max-width: 42rem; margin: 3rem auto 0; overflow: hidden; border-radius: 1rem; border: 1px solid var(--slate-200); background: #fff; }
.addons-table td { padding: 1rem 1.5rem; font-size: 0.875rem; border-top: 1px solid var(--slate-100); }
.addons-table tr:first-child td { border-top: none; }
.addons-table td:first-child { color: var(--slate-700); }
.addons-table td:last-child { text-align: right; font-weight: 600; color: var(--slate-900); }
.addons-note { margin-top: 1.5rem; text-align: center; font-size: 0.875rem; color: var(--slate-500); }
.addons-note a { font-weight: 600; color: var(--brand-600); }

/* =========================================================================
   Testimonials
   ========================================================================= */
.testimonials-section { background: var(--slate-50); padding: 5rem 0; }
@media (min-width: 640px) { .testimonials-section { padding: 5rem 0; } }
/* Google reviews badge in the section header */
.google-reviews-badge {
  margin: 1.5rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.google-reviews-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.google-reviews-badge__logo { width: 2.1rem; height: 2.1rem; flex-shrink: 0; }
.google-reviews-badge__rating { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--slate-900); letter-spacing: -0.02em; }
.google-reviews-badge__meta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.google-reviews-badge__stars { display: flex; gap: 1px; color: var(--amber-400); }
.google-reviews-badge__label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-500); }

.testimonials-grid { display: grid; gap: 1.75rem; margin-top: 4rem; }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-6px); border-color: #e2e2e2; box-shadow: var(--shadow-lg); }
/* Oversized decorative quote mark */
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem; right: 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--brand-500);
  opacity: 0.16;
  pointer-events: none;
}
.testimonial-card__stars { position: relative; display: flex; color: var(--amber-400); gap: 2px; }
/* Clamp long reviews so every card collapses to the same height; the JS-shown
   "Read more" button lifts the clamp. */
.testimonial-card__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--slate-600);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  /* Reserve 7 lines even for short reviews so the divider and author sit at
     the same height on every card (7 × 1.7 × 0.875rem). */
  min-height: 10.4rem;
}
.testimonial-card__text.is-expanded { -webkit-line-clamp: unset; overflow: visible; min-height: 0; }
.testimonial-card__more {
  margin-top: 0.6rem;
  align-self: flex-start;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-600);
  background: none;
  border: 0;
  cursor: pointer;
}
.testimonial-card__more:hover { color: var(--brand-700); text-decoration: underline; }
/* Author sits a fixed distance below the reserved text + button, so the divider
   line is at the same height on every card. */
.testimonial-card__author { margin-top: 1.25rem; padding-top: 1.1rem; border-top: 1px solid var(--slate-100); display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.testimonial-card__author-text { min-width: 0; }
.testimonial-card__name { font-size: 0.9rem; font-weight: 700; color: var(--slate-900); }
/* Reserve two lines for the role so single-line roles don't ride up — keeps
   every card's name on the same baseline. */
.testimonial-card__role { font-size: 0.75rem; line-height: 1.4; color: var(--slate-500); min-height: 2.1em; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-section { background: var(--slate-50); padding: 5rem 0; }
@media (min-width: 640px) { .faq-section { padding: 5rem 0; } }
/* Two-column layout: accordion + support panel */
.faq-layout { margin-top: 3.5rem; display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .faq-layout { grid-template-columns: 1.5fr 1fr; gap: 2.5rem; } }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
/* Accordion rows shouldn't lift like the other cards — neutralise the shared
   card-surface hover and let the row highlight in place instead. */
.faq-item { overflow: hidden; border-left: 3px solid transparent; }
.faq-item:hover { transform: none; box-shadow: var(--shadow-sm); }
.faq-item.is-open { border-color: var(--border); border-left-color: var(--brand-600); box-shadow: var(--shadow-md); }
.faq-item__question {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.9rem;
  padding: 1.25rem 1.4rem;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--slate-900);
  transition: color 0.2s ease;
}
.faq-item__question:hover { color: var(--brand-600); }
.faq-item__q-text { flex: 1; }
/* Left +/- badge, drawn with two bars so it flips to a minus when open */
.faq-item__plus {
  position: relative;
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-600);
  transition: background 0.25s ease, color 0.25s ease;
}
.faq-item__plus::before, .faq-item__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.faq-item__plus::before { width: 0.85rem; height: 2px; }
.faq-item__plus::after  { width: 2px; height: 0.85rem; }
.faq-item.is-open .faq-item__plus { background: var(--brand-600); color: #fff; }
.faq-item.is-open .faq-item__plus::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
/* Right chevron */
.faq-item__chevron { flex-shrink: 0; color: var(--slate-400); transition: transform 0.3s ease, color 0.2s ease; }
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); color: var(--brand-600); }
/* Smooth open/close via max-height rather than a display toggle. */
.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 1.4rem 0 4.3rem;
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--slate-500);
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 30rem; opacity: 1; padding: 0 1.4rem 1.4rem 4.3rem; }

/* ---- Support panel (right column) ---- */
.faq-support { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-support__media { position: relative; border-radius: 1.25rem; overflow: hidden; background: radial-gradient(circle at 60% 40%, var(--brand-50), #fff 70%); }
.faq-support__img { width: 100%; height: auto; display: block; }
.faq-support__bubble {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  background: #fff;
  border-radius: 0.9rem;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-md);
  max-width: 11rem;
}
.faq-support__bubble strong { display: block; font-size: 0.95rem; color: var(--brand-600); }
.faq-support__bubble span { font-size: 0.8rem; color: var(--slate-600); line-height: 1.4; }
.faq-support__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding: 1.25rem 0.75rem; text-align: center; }
.faq-support__feature { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; padding: 0 0.35rem; }
.faq-support__feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 999px; border: 1.5px solid var(--brand-200); color: var(--brand-600); }
.faq-support__feature-title { font-size: 0.85rem; font-weight: 700; color: var(--slate-900); }
.faq-support__feature-desc { font-size: 0.72rem; line-height: 1.4; color: var(--slate-500); }

.faq-bottom-cta { margin-top: 2.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.95rem; color: var(--slate-600); }
.faq-bottom-cta__icon { color: var(--brand-600); flex-shrink: 0; }

/* =========================================================================
   Contact section / form
   ========================================================================= */
.contact-section { background: #fff; padding: 5rem 0; }
@media (min-width: 640px) { .contact-section { padding: 5rem 0; } }
.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 3rem;
  border-radius: 1.75rem;
  background:
    radial-gradient(120% 90% at 90% 0%, rgba(230,50,43,0.06), transparent 55%),
    var(--slate-50);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .contact-panel { padding: 3rem; } }
@media (min-width: 1024px) { .contact-panel { grid-template-columns: 1fr 1fr; padding: 3.5rem; align-items: center; } }
.contact-info__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--brand-200);
  background: var(--brand-50);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-700);
}
.contact-info__title { margin-top: 1.25rem; font-size: 1.875rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--slate-900); }
@media (min-width: 640px) { .contact-info__title { font-size: 2.25rem; } }
.contact-info__desc { margin-top: 1rem; color: var(--slate-500); line-height: 1.7; }
.contact-info__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
/* Rendered as <button> until clicked (click-to-reveal), so the link styling
   has to be reset off the button defaults. */
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  color: var(--slate-600);
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease;
}
.contact-info__item:hover { color: var(--brand-600); }
.contact-info__item--static { cursor: default; }
.contact-info__item--primary { font-weight: 600; color: var(--slate-900); }
.contact-info__icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: var(--brand-50);
  color: var(--brand-600);
  box-shadow: inset 0 0 0 1px var(--brand-100);
}

.contact-form-wrap { position: relative; border-radius: 1.25rem; background: #fff; padding: 1.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
@media (min-width: 640px) { .contact-form-wrap { padding: 2.25rem; } }
/* The HTML `hidden` attribute must win over component `display` rules.
   Without this, e.g. `.form-grid { display: grid }` overrode `[hidden]`, so
   JS setting `form.hidden = true` on submit success never actually hid the
   form — the "Sending..." button stayed on screen and the thank-you never
   appeared. This one line makes the hidden attribute authoritative everywhere. */
[hidden] { display: none !important; }

.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-field--full { grid-column: 1 / -1; }
.form-label { margin-bottom: 0.375rem; display: block; font-size: 0.875rem; font-weight: 500; color: var(--slate-700); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  background: var(--slate-50);
  padding: 0.8rem 1.05rem;
  font-size: 0.9rem;
  color: var(--slate-800);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: var(--slate-300); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px var(--brand-100);
}
.form-textarea { resize: vertical; }
.form-error { margin-top: 1rem; font-size: 0.875rem; color: var(--red-600); }
.contact-form .btn-primary { margin-top: 1.5rem; width: 100%; }
.form-note { margin-top: 0.75rem; text-align: center; font-size: 0.75rem; color: var(--slate-400); }

.contact-success {
  /* Visible state. It carries the `hidden` attribute in the HTML and the
     global `[hidden]` rule above keeps it hidden until the JS removes the
     attribute on a successful submit — so the thank-you actually appears. */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: #fff;
  padding: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .contact-success { padding: 2rem; } }
.contact-success__icon {
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--emerald-100);
  color: var(--emerald-600);
}
.contact-success__title { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 700; }
.contact-success__desc { margin-top: 0.5rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.6; color: var(--slate-600); }
.contact-success .btn-primary { margin-top: 1.5rem; }
.contact-success__reset { margin-top: 0.75rem; font-size: 0.75rem; font-weight: 500; color: var(--slate-400); }
.contact-success__reset:hover { color: var(--slate-600); }

/* =========================================================================
   WhatsApp floating button
   ========================================================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 15px 30px -8px rgba(6, 95, 70, 0.4);
  transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.05); }

/* =========================================================================
   Chat widget
   ========================================================================= */
.chat-toggle-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 4rem;
  padding: 0;
  border-radius: 999px;
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 15px 30px -8px rgba(230, 50, 43, 0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: chat-pulse 2.4s ease-in-out infinite;
}
.chat-toggle-btn:hover { transform: scale(1.06); box-shadow: 0 20px 40px -10px rgba(230, 50, 43, 0.6); }
/* Agent photo fills the button when closed; the JS swaps in a white X when open */
.chat-toggle-btn__avatar {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background-size: cover;
  background-position: center top;
  border: 3px solid #fff;
  box-sizing: border-box;
}
.chat-toggle-btn__badge {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: #22c55e;
  border: 2px solid #fff;
  z-index: 2;
}
@keyframes chat-pulse {
  0%, 100% { box-shadow: 0 15px 30px -8px rgba(230,50,43,0.5), 0 0 0 0 rgba(230,50,43,0.4); }
  50% { box-shadow: 0 15px 30px -8px rgba(230,50,43,0.5), 0 0 0 10px rgba(230,50,43,0); }
}

.chat-panel {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  height: 30rem;
  width: 22rem;
  max-width: calc(100vw - 2rem);
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.chat-panel.is-open { transform: scale(1); opacity: 1; pointer-events: auto; }

.chat-panel__header { display: flex; align-items: center; justify-content: space-between; background: var(--slate-950); padding: 0.875rem 1rem; }
.chat-panel__bot { display: flex; align-items: center; gap: 0.625rem; }
.chat-panel__avatar {
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.chat-panel__bot-name { font-size: 0.875rem; font-weight: 600; color: #fff; }
.chat-panel__bot-name span { font-weight: 400; color: var(--slate-400); }
.chat-panel__status { font-size: 0.75rem; color: var(--emerald-400); }
.chat-panel__controls { display: flex; align-items: center; gap: 0.5rem; }
.chat-lang-toggle { display: flex; overflow: hidden; border-radius: 0.5rem; border: 1px solid rgba(255, 255, 255, 0.2); font-size: 0.75rem; }
.chat-lang-toggle__btn { padding: 0.25rem 0.5rem; font-weight: 500; color: var(--slate-300); }
.chat-lang-toggle__btn.is-active { background: #fff; color: var(--slate-900); }
.chat-panel__close { color: var(--slate-300); }
.chat-panel__close:hover { color: #fff; }

.chat-panel__messages { flex: 1; overflow-y: auto; background: var(--slate-50); padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.chat-message { display: flex; }
.chat-message--user { justify-content: flex-end; }
.chat-message--bot { justify-content: flex-start; }
.chat-message__bubble { max-width: 85%; border-radius: 1rem; padding: 0.5rem 0.875rem; font-size: 0.875rem; line-height: 1.6; }
.chat-message--user .chat-message__bubble { border-bottom-right-radius: 0.25rem; background: var(--brand-600); color: #fff; }
.chat-message--bot .chat-message__bubble { border-bottom-left-radius: 0.25rem; border: 1px solid var(--slate-200); background: #fff; color: var(--slate-700); }

.chat-typing { display: flex; align-items: center; gap: 0.25rem; border-radius: 1rem; border-bottom-left-radius: 0.25rem; border: 1px solid var(--slate-200); background: #fff; padding: 0.75rem 1rem; width: fit-content; }
.chat-typing__dot { height: 0.375rem; width: 0.375rem; border-radius: 999px; background: var(--slate-400); animation: bounce-dot 1s infinite; }
.chat-typing__dot:nth-child(2) { animation-delay: 0.15s; }
.chat-typing__dot:nth-child(3) { animation-delay: 0.3s; }

.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 0.5rem; border-top: 1px solid var(--slate-100); padding: 0.75rem; }
.chat-quick-reply { border-radius: 999px; border: 1px solid var(--slate-200); padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500; color: var(--slate-600); }
.chat-quick-reply:hover { border-color: var(--brand-300); color: var(--brand-700); }
.chat-quick-reply:disabled { opacity: 0.5; cursor: not-allowed; }

.chat-panel__form { display: flex; align-items: center; gap: 0.5rem; border-top: 1px solid var(--slate-100); padding: 0.75rem; }
.chat-input { flex: 1; border-radius: 0.75rem; border: 1px solid var(--slate-200); padding: 0.5rem 0.75rem; font-size: 0.875rem; }
.chat-input:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px var(--brand-100); }
.chat-send {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--brand-600);
  color: #fff;
}
.chat-send:hover { background: var(--brand-700); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

/* =========================================================================
   Detail pages (services-detail.php / software-detail.php)
   ========================================================================= */
.detail-hero { position: relative; overflow: hidden; background: var(--slate-950); padding: 5rem 0; }
@media (min-width: 640px) { .detail-hero { padding: 6rem 0; } }
.detail-hero__inner { position: relative; }
.detail-hero__back { font-size: 0.875rem; color: var(--slate-400); }
.detail-hero__back:hover { color: #fff; }
.detail-hero__head { margin-top: 1.25rem; display: flex; align-items: center; gap: 1rem; }
.detail-hero__icon {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.detail-hero__title { font-size: 1.875rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; color: #fff; }
@media (min-width: 640px) { .detail-hero__title { font-size: 2.25rem; } }
.detail-hero__desc { margin-top: 1rem; max-width: 42rem; font-size: 1.125rem; color: var(--slate-300); }

.detail-simple-hero { background: var(--slate-950); padding: 2rem 0; }
.detail-simple-hero__title { margin-top: 1.25rem; max-width: 42rem; font-size: 1.875rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; color: #fff; }
@media (min-width: 640px) { .detail-simple-hero__title { font-size: 2.25rem; } }
.detail-simple-hero__desc { margin-top: 0.75rem; max-width: 42rem; font-size: 1.125rem; color: var(--slate-300); }

.detail-image-band { position: relative; height: 14rem; width: 100%; overflow: hidden; }
@media (min-width: 640px) { .detail-image-band { height: 18rem; } }
.detail-image-band img { width: 100%; height: 100%; object-fit: cover; }

.detail-body { background: #fff; padding: 4rem 0; }
@media (min-width: 640px) { .detail-body { padding: 5rem 0; } }
.detail-body__grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .detail-body__grid { grid-template-columns: 1.4fr 1fr; } }
.detail-content p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.7; color: var(--slate-700); }
.detail-content .btn-primary { margin-top: 1rem; }
.detail-sidebar { height: fit-content; border-radius: 1rem; border: 1px solid var(--slate-200); background: var(--slate-50); padding: 1.5rem; }
.detail-sidebar__title { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate-400); }
.detail-sidebar__list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.detail-sidebar__item { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--slate-700); }

.detail-related { background: var(--slate-50); padding: 4rem 0; }
@media (min-width: 640px) { .detail-related { padding: 5rem 0; } }
.detail-related__title { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate-400); }
.detail-related-grid { margin-top: 1.25rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .detail-related-grid.services-related { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .detail-related-grid.software-related { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .detail-related-grid.software-related { grid-template-columns: repeat(4, 1fr); } }
.related-card { display: block; overflow: hidden; padding: 1.5rem; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.related-card__icon {
  margin-bottom: 1rem;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--brand-50);
  color: var(--brand-600);
}
.related-card__title { font-size: 0.875rem; font-weight: 600; }
.related-card__cta { margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 600; color: var(--brand-600); opacity: 0; transition: opacity 0.2s ease; }
.related-card:hover .related-card__cta { opacity: 1; }

.related-card--image { padding: 0; }
.related-card--image .related-card__image-wrap { position: relative; height: 7rem; width: 100%; overflow: hidden; }
.related-card--image .related-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.related-card--image:hover .related-card__image-wrap img { transform: scale(1.05); }
.related-card--image .related-card__body { padding: 1rem; }

.not-found-section { background: #fff; padding: 5rem 0; text-align: center; }
.not-found-section h1 { font-size: 2.25rem; }
.not-found-section p { margin-top: 1rem; color: var(--slate-600); }
.not-found-section .btn-primary { margin-top: 2rem; }

/* =========================================================================
   Careers page
   ========================================================================= */
.careers-perks { background: #fff; padding: 5rem 0; }
.careers-perks__grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .careers-perks__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .careers-perks__grid { grid-template-columns: repeat(3, 1fr); } }
.careers-perk { padding: 1.75rem; }
.careers-perk__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.9rem;
  background: var(--brand-50); color: var(--brand-600);
  box-shadow: inset 0 0 0 1px var(--brand-100); margin-bottom: 1rem;
}
.careers-perk__title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
.careers-perk__desc { margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.65; color: var(--slate-500); }

.careers-openings { background: var(--slate-50); padding: 5rem 0; }
.careers-jobs { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.job-card { display: flex; flex-direction: column; gap: 1.5rem; padding: 1.75rem; }
@media (min-width: 768px) { .job-card { flex-direction: row; align-items: center; justify-content: space-between; } }
.job-card__main { flex: 1; }
.job-card__title { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
.job-card__meta { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.job-card__tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: var(--brand-50); color: var(--brand-700);
  font-size: 0.75rem; font-weight: 600;
}
.job-card__desc { margin-top: 1rem; font-size: 0.9rem; line-height: 1.65; color: var(--slate-600); max-width: 46rem; }
.job-card__reqs { margin-top: 1rem; display: grid; gap: 0.5rem; }
@media (min-width: 640px) { .job-card__reqs { grid-template-columns: repeat(2, 1fr); } }
.job-card__reqs li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--slate-600); }
.job-card__reqs li svg { flex-shrink: 0; margin-top: 0.1rem; color: var(--brand-600); }
.job-card__action { flex-shrink: 0; }
@media (min-width: 768px) { .job-card__action { align-self: flex-start; } }
.job-card__apply { white-space: nowrap; }

.careers-empty { margin-top: 3.5rem; padding: 2.5rem; text-align: center; }
.careers-empty p { color: var(--slate-600); }

.careers-apply { background: #fff; padding: 5rem 0; }
.careers-apply__panel { display: grid; gap: 2.5rem; padding: 2rem; }
@media (min-width: 640px) { .careers-apply__panel { padding: 3rem; } }
@media (min-width: 1024px) { .careers-apply__panel { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.careers-apply__title { margin-top: 1rem; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; }
.careers-apply__desc { margin-top: 1rem; color: var(--slate-500); line-height: 1.7; }
.careers-apply__points { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.careers-apply__points li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--slate-700); }
.careers-apply__points li svg { flex-shrink: 0; color: var(--brand-600); }
.careers-form__file { padding: 0.55rem 0.8rem; }
.careers-form__file::file-selector-button {
  margin-right: 0.75rem; padding: 0.4rem 0.8rem; border-radius: 0.5rem;
  border: 1px solid var(--brand-200); background: var(--brand-50);
  color: var(--brand-700); font-weight: 600; font-size: 0.8rem; cursor: pointer;
}
.careers-success { text-align: center; padding: 1.5rem 0; }
.careers-success__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 999px;
  background: var(--emerald-100); color: var(--emerald-600); margin: 0 auto;
}
.careers-success__title { margin-top: 1.25rem; font-size: 1.35rem; font-weight: 700; }
.careers-success__desc { margin-top: 0.5rem; color: var(--slate-600); line-height: 1.6; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: #fff; padding-top: 4rem; border-top: 3px solid var(--brand-600); }
.footer-top { display: grid; gap: 3rem; border-bottom: 1px solid var(--border); padding-bottom: 3rem; }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 4rem; } }
.footer-desc { margin-top: 1.1rem; max-width: 24rem; font-size: 0.9rem; line-height: 1.7; color: var(--slate-500); }
.footer-socials { margin-top: 1.5rem; display: flex; gap: 0.6rem; }
.footer-social-link {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--slate-50);
  border: 1px solid var(--border);
  color: var(--slate-500);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.footer-social-link:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; transform: translateY(-3px); }
.footer-col__title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-900); }
.footer-col__list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col__list a { font-size: 0.9rem; color: var(--slate-500); transition: color 0.18s ease, padding-left 0.18s ease; }
.footer-col__list a:hover { color: var(--brand-600); padding-left: 0.25rem; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.75rem 0; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.8rem; color: var(--slate-500); }
.footer-link { color: var(--slate-500); transition: color 0.15s ease; }
.footer-link:hover { color: var(--brand-600); }
/* Contact + business hours column */
.footer-contact__list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; }
.footer-contact__icon {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 1.9rem; height: 1.9rem; border-radius: 0.6rem;
  background: var(--brand-50); color: var(--brand-600);
}
.footer-contact__text { color: var(--slate-500); line-height: 1.5; }
.footer-col__title--hours { margin-top: 1.75rem; }
.footer-hours { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-hours p { font-size: 0.85rem; color: var(--slate-500); line-height: 1.5; }
.footer-hours strong { color: var(--slate-900); font-weight: 600; }
.footer-legal { display: flex; align-items: center; gap: 0.75rem; }
.footer-legal__sep { color: var(--slate-300); }
