/* =============================================
   SYNCSOFT TECHNOLOGIES — Shared Stylesheet
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@400;500&display=swap');

/* --- Tokens --- */
:root {
  /* Brand */
  --c-primary:        #1D6FE8;
  --c-primary-light:  #3B82F6;
  --c-primary-dark:   #1254C4;
  --c-accent:         #60A5FA;
  --c-accent-hover:   #3B82F6;

  /* Surfaces */
  --c-bg:             #F8FAFF;
  --c-surface:        #FFFFFF;
  --c-surface-alt:    #EFF6FF;
  --c-dark:           #0F172A;
  --c-dark-surface:   #1E293B;

  /* Text */
  --c-text:           #1E293B;
  --c-text-muted:     #64748B;
  --c-text-light:     #94A3B8;
  --c-text-on-dark:   #F1F5F9;
  --c-text-muted-od:  #94A3B8;

  /* Borders */
  --c-border:         #DBEAFE;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.375rem;
  --text-xl:   1.75rem;
  --text-2xl:  2.25rem;
  --text-3xl:  3rem;
  --text-4xl:  3.75rem;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;

  /* Misc */
  --r-sm:     4px;
  --r-md:     8px;
  --r-pill:   9999px;
  --nav-h:    80px;
  --max-w:    1200px;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(29,111,232,0.08);
  --sh-md: 0 4px 18px rgba(29,111,232,0.12);
  --sh-lg: 0 10px 40px rgba(29,111,232,0.16);
}

/* Dark mode intentionally removed — site uses light theme only */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}

.section {
  padding-block: var(--sp-2xl);
}

.section--dark {
  background: var(--c-dark);
  color: var(--c-text-on-dark);
}

.section--alt {
  background: var(--c-surface-alt);
}

.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary-light);
  margin-bottom: var(--sp-sm);
}

.section--dark .label {
  color: var(--c-accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 4vw, var(--text-3xl));
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--c-text);
  margin-bottom: var(--sp-sm);
}

.section--dark .section-title {
  color: var(--c-text-on-dark);
}

.section-sub {
  font-size: var(--text-md);
  color: var(--c-text-muted);
  max-width: 56ch;
  line-height: 1.75;
}

.section--dark .section-sub {
  color: var(--c-text-muted-od);
}

.section-header {
  margin-bottom: var(--sp-xl);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-sub {
  margin-inline: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.75rem 1.625rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s, box-shadow 0.18s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--c-primary);
  color: #ffffff;
  border-color: var(--c-primary);
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  box-shadow: var(--sh-md);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
}

.btn--outline-light {
  background: transparent;
  color: var(--c-text-on-dark);
  border-color: rgba(223,240,248,0.4);
}
.btn--outline-light:hover {
  background: rgba(223,240,248,0.1);
  border-color: var(--c-text-on-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--c-primary-light);
  border-color: transparent;
  padding-inline: var(--sp-sm);
}
.btn--ghost:hover { color: var(--c-primary); }

/* --- Nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s;
}

.nav.scrolled {
  box-shadow: var(--sh-md);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 62px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  margin-left: auto;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-text-muted);
  transition: color 0.15s;
}

.nav__links a:hover { color: var(--c-primary); }

.nav__cta { margin-left: var(--sp-sm); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--c-surface);
  padding: var(--sp-lg);
  flex-direction: column;
  gap: var(--sp-md);
  border-top: 1px solid var(--c-border);
  z-index: 99;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-text);
  padding-block: var(--sp-xs);
  border-bottom: 1px solid var(--c-border);
}

/* --- Hero --- */
.hero {
  background: var(--c-surface);
  padding-block: var(--sp-3xl) var(--sp-2xl);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(29,111,232,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(96,165,250,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--sp-xl);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: rgba(29,111,232,0.08);
  border: 1px solid rgba(29,111,232,0.15);
  color: var(--c-primary);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-md);
}

.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, var(--text-4xl));
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--c-text);
  margin-bottom: var(--sp-md);
}

.hero__title em {
  font-style: normal;
  color: var(--c-primary);
  position: relative;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
}

.hero__sub {
  font-size: var(--text-md);
  color: var(--c-text-muted);
  max-width: 50ch;
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--c-border);
}

.hero__trust-label {
  font-size: var(--text-xs);
  color: var(--c-text-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__trust-chips {
  display: flex;
  gap: var(--sp-xs);
  flex-wrap: wrap;
}

.hero__trust-chip {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--c-text-muted);
  background: var(--c-surface-alt);
  border: 1px solid var(--c-border);
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-pill);
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 440px;
}

.dash {
  position: absolute;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.dash--main {
  width: 380px;
  padding: 18px;
  top: 20px; right: 0;
}

.dash__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dash__dot { width: 8px; height: 8px; border-radius: 50%; }
.dash__dot--r { background: #FF6B6B; }
.dash__dot--y { background: var(--c-accent); }
.dash__dot--g { background: #2ECC71; }

.dash__title-bar {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: auto;
}

.dash__kpis {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.dash__kpi {
  background: var(--c-surface-alt);
  border-radius: var(--r-sm);
  padding: 10px 8px;
}

.dash__kpi-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-primary);
  font-variant-numeric: tabular-nums;
}

.dash__kpi-lbl {
  font-size: 9px;
  color: var(--c-text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.dash__chart {
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  background: var(--c-surface-alt);
  border-radius: var(--r-sm);
  padding: 10px 8px 8px;
  margin-bottom: 12px;
}

.dash__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--c-primary-light);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.dash__bar--hi { opacity: 1; background: var(--c-primary); }
.dash__bar--acc { background: var(--c-accent); opacity: 0.9; }

.dash__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}

.dash__row-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash__row-name {
  color: var(--c-text-muted);
  flex: 1;
}

.dash__row-bar-wrap {
  flex: 2;
  height: 4px;
  background: var(--c-surface-alt);
  border-radius: 2px;
  overflow: hidden;
}

.dash__row-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--c-primary-light);
}

.dash__row-pct {
  font-weight: 700;
  color: var(--c-text);
  width: 30px;
  text-align: right;
}

/* Floating cards */
.dash--mini {
  padding: 12px 14px;
}

.dash--fee {
  width: 170px;
  bottom: 60px;
  left: -20px;
  animation: float 4s ease-in-out infinite;
}

.dash--att {
  width: 150px;
  top: 10px;
  left: 30px;
  animation: float 5s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.mini-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}

.mini-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-primary);
}

.mini-sub {
  font-size: 9px;
  color: var(--c-text-light);
  margin-top: 2px;
}

.mini-ring {
  width: 54px;
  height: 54px;
  margin: 6px 0;
}

/* --- Stats Band --- */
.stats-band {
  background: var(--c-primary-dark);
  padding-block: var(--sp-xl);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat__num span {
  color: var(--c-accent);
}

.stat__lbl {
  font-size: var(--text-sm);
  color: var(--c-text-muted-od);
  font-weight: 500;
}

/* --- About --- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.pillar {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}

.pillar__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(29,111,232,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 20px;
  margin-top: 2px;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}

.pillar__body {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* About image */
.about__visual {
  position: relative;
  height: 420px;
}

.about__blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary-light) 100%);
  border-radius: 24px 4px 24px 4px;
  overflow: hidden;
}

.about__blob-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 2px;
  padding: 24px;
  opacity: 0.15;
}

.about__cell {
  background: #fff;
  border-radius: 2px;
}

.about__badge {
  position: absolute;
  background: var(--c-surface);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}

.about__badge--tl {
  top: -16px; left: -16px;
}

.about__badge--br {
  bottom: -16px; right: -16px;
}

.about__badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.about__badge-icon--g { background: #E8F8F1; color: #1B9A5E; }
.about__badge-icon--b { background: rgba(29,111,232,0.1); color: var(--c-primary); }

.about__badge-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-text);
}

.about__badge-sub {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

/* --- What We Do --- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--c-border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-sm);
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--c-primary);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.process-step:hover .process-step__num {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-text);
}

.process-step__body {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* --- Offerings --- */
.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.offering-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--c-primary));
}

.offering-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}

.offering-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--card-icon-bg, rgba(29,111,232,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: var(--sp-sm);
}

.offering-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}

.offering-card__body {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-sm);
}

.offering-card__features {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offering-card__feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

.offering-card__feat::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--card-accent, var(--c-primary));
  flex-shrink: 0;
}

/* --- Testimonials --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.testimonial {
  background: var(--c-dark-surface);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.testimonial__quote {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--c-text-on-dark);
}

.testimonial__quote::before { content: '\201C'; color: var(--c-accent); font-size: 2rem; line-height: 0.5; }

.testimonial__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text-on-dark);
}

.testimonial__role {
  font-size: var(--text-xs);
  color: var(--c-text-muted-od);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(120deg, var(--c-primary-dark) 0%, var(--c-primary) 60%, var(--c-primary-light) 100%);
  padding-block: var(--sp-2xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(96,165,250,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 4vw, var(--text-3xl));
  font-weight: 800;
  color: #fff;
  text-wrap: balance;
  margin-bottom: var(--sp-sm);
}

.cta-banner__sub {
  font-size: var(--text-md);
  color: rgba(223,240,248,0.75);
  margin-bottom: var(--sp-lg);
  max-width: 50ch;
  margin-inline: auto;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--c-dark);
  color: var(--c-text-muted-od);
  padding-block: var(--sp-2xl) var(--sp-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-lg);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-sm);
}

.footer__brand-name span { color: var(--c-accent); }

.footer__brand-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 30ch;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--c-text-muted-od);
  transition: color 0.15s;
}

.footer__links a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
}

.footer__legal {
  display: flex;
  gap: var(--sp-md);
}

.footer__legal a { color: var(--c-text-muted-od); transition: color 0.15s; }
.footer__legal a:hover { color: #fff; }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; }
  @keyframes float { from, to { transform: none; } }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { height: 280px; }
  .process__grid { grid-template-columns: repeat(2,1fr); }
  .process__grid::before { display: none; }
  .offerings__grid { grid-template-columns: repeat(2,1fr); }
  .stats-band__grid { grid-template-columns: repeat(2,1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --sp-2xl: 4rem; --sp-3xl: 5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .offerings__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .footer__bottom { flex-direction: column; gap: var(--sp-sm); text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* --- Contact --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.contact__info-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(29,111,232,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--c-primary);
  margin-top: 2px;
}

.contact__info-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--c-text);
  margin-bottom: 2px;
}

.contact__info-value {
  color: var(--c-text-muted);
  font-size: var(--text-sm);
}

.contact__info-value a { color: var(--c-primary-light); }

.contact__form {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-text);
}

.form__label span { font-weight: 400; color: var(--c-text-muted); }

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  color: var(--c-text);
  background: var(--c-bg);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--c-primary);
}

.form__textarea { resize: vertical; }

.form__select { appearance: none; }

.form__note {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  text-align: center;
}

.contact__grid > * { min-width: 0; }
.contact__form > * { min-width: 0; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* =============================================
   CAREERS PAGE STYLES
   ============================================= */

.page-hero {
  background: var(--c-surface);
  padding-block: var(--sp-2xl);
  border-bottom: 1px solid var(--c-border);
}

.page-hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--c-text);
  margin-bottom: var(--sp-sm);
  max-width: 16ch;
}

.page-hero__sub {
  font-size: var(--text-md);
  color: var(--c-text-muted);
  max-width: 52ch;
}

/* Culture */
.culture__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.culture-card {
  padding: var(--sp-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}

.culture-card__icon {
  font-size: 28px;
  margin-bottom: var(--sp-sm);
}

.culture-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

.culture-card__body {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* Jobs */
.jobs__filters {
  display: flex;
  gap: var(--sp-xs);
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}

.jobs__filter-btn {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-border);
  background: var(--c-surface);
  color: var(--c-text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.jobs__filter-btn:hover,
.jobs__filter-btn.active {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.jobs__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.job-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  transition: box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
}

.job-card:hover {
  box-shadow: var(--sh-md);
  transform: translateX(4px);
}

.job-card__dept {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.job-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}

.job-card__meta {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

.job-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-card__tags {
  display: flex;
  gap: var(--sp-xs);
  flex-wrap: wrap;
  margin-top: 6px;
}

.tag {
  font-size: var(--text-xs);
  font-weight: 600;
  font-family: var(--font-display);
  padding: 2px 10px;
  border-radius: var(--r-pill);
  background: var(--c-surface-alt);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.tag--green { background: #E8F8F1; color: #1B8C55; border-color: #B6E8D2; }
.tag--blue  { background: rgba(10,82,116,0.07); color: var(--c-primary); border-color: rgba(10,82,116,0.18); }

.job-card__action {
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .culture__grid { grid-template-columns: 1fr; }
  .job-card { flex-wrap: wrap; }
  .job-card__action { margin-left: 0; }
}
