/* ============================================================
   POSSO ASSINAR — Design System
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --c-blue:       #1730ED;
  --c-navy:       #011E5D;
  --c-ink:        #000020;
  --c-gray:       #BABABA;
  --c-light:      #DCDEE2;
  --c-white:      #FFFFFF;

  /* Typography */
  --font:         'Plus Jakarta Sans', 'Inter', sans-serif;
  --fw-regular:   400;
  --fw-medium:    500;
  --fw-bold:      700;
  --fw-black:     900;

  /* Spacing scale */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s5: 20px; --s6: 24px; --s8: 32px; --s10: 40px;
  --s12: 48px; --s16: 64px; --s20: 80px; --s24: 96px;

  /* Layout */
  --max-w: 1280px;
  --px: clamp(20px, 5vw, 80px);
  --header-h: 72px;

  /* Radius */
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: 150ms var(--ease);
  --t-med:  250ms var(--ease);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
/* WordPress adds "page" class to body — keep body visible */
body.page { display: block; }
.page { display: none; }
.page.active { display: block; }
.section { padding: var(--s20) 0; }
.section--dark  { background: var(--c-navy); color: var(--c-white); }
.section--light { background: var(--c-light); }
.section--ink   { background: var(--c-ink);  color: var(--c-white); }
.section--blue  { background: var(--c-blue); color: var(--c-white); }

/* ── Typography ──────────────────────────────────────────── */
.display {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: var(--fw-black);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
}
.label {
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.label--light { color: var(--c-light); }
.subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #555;
  line-height: 1.6;
}
.subtitle--light { color: rgba(255,255,255,.72); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: var(--fw-bold);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-blue);
  color: var(--c-white);
}
.btn--primary:hover { background: var(--c-navy); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--outline {
  border: 2px solid var(--c-ink);
  color: var(--c-ink);
}
.btn--outline:hover { background: var(--c-ink); color: var(--c-white); }

.btn--outline-light {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--c-white);
}
.btn--outline-light:hover { background: var(--c-white); color: var(--c-navy); }

.btn--ghost-white {
  border: 2px solid var(--c-white);
  color: var(--c-white);
  background: transparent;
}
.btn--ghost-white:hover { background: var(--c-white); color: var(--c-blue); }

.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 36px; font-size: 17px; }

/* ── Header ──────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--t-med);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}
.logo__text {
  font-size: 18px;
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  color: var(--c-navy);
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-left: auto;
}
.nav__link {
  padding: var(--s2) var(--s4);
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: #444;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
  cursor: pointer;
}
.nav__link:hover { color: var(--c-blue); background: rgba(23,48,237,.06); }
.nav__link.active { color: var(--c-blue); font-weight: var(--fw-bold); }
.header__cta { margin-left: var(--s4); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: var(--t-fast);
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--c-white);
  padding: var(--s8) var(--px);
  flex-direction: column;
  gap: var(--s4);
  z-index: 999;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav__link { font-size: 20px; padding: var(--s4) 0; border-bottom: 1px solid var(--c-light); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--header-h) + var(--s20)) 0 var(--s20);
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-mark {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 45vw;
  max-width: 600px;
  opacity: .04;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero__kicker { margin-bottom: var(--s5); }
.hero__title { margin-bottom: var(--s6); }
.hero__subtitle { margin-bottom: var(--s10); max-width: 540px; }
.hero__actions { display: flex; gap: var(--s4); flex-wrap: wrap; }

/* ── Metrics ─────────────────────────────────────────────── */
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.metric {
  text-align: center;
  padding: var(--s8);
  border-radius: var(--r-lg);
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-light);
}
.metric__number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: var(--fw-black);
  letter-spacing: -0.04em;
  color: var(--c-blue);
  line-height: 1;
  margin-bottom: var(--s2);
}
.metric__label { font-size: 14px; color: #666; font-weight: var(--fw-medium); }

/* ── Pillars ─────────────────────────────────────────────── */
.pillars__header { text-align: center; margin-bottom: var(--s12); }
.pillars__header .h2 { margin-top: var(--s3); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.pillar {
  padding: var(--s8);
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-light);
  transition: var(--t-med);
}
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.pillar__icon {
  width: 48px; height: 48px;
  background: rgba(23,48,237,.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s5);
  font-size: 22px;
}
.pillar__title { font-size: 18px; font-weight: var(--fw-bold); margin-bottom: var(--s3); }
.pillar__desc { font-size: 15px; color: #555; line-height: 1.6; }

/* ── PDF Tool ────────────────────────────────────────────── */
.pdf-tool { background: var(--c-light); }
.pdf-tool__header { text-align: center; margin-bottom: var(--s10); }
.pdf-tool__header .h2 { margin-top: var(--s3); }

.pdf-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: center;
  margin-bottom: var(--s8);
}
.pdf-tab {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  border-radius: var(--r-sm);
  background: var(--c-white);
  color: #444;
  border: 1px solid var(--c-light);
  transition: var(--t-fast);
}
.pdf-tab:hover { border-color: var(--c-blue); color: var(--c-blue); }
.pdf-tab.active {
  background: var(--c-blue);
  color: var(--c-white);
  border-color: var(--c-blue);
}

.pdf-workspace {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--s10);
  box-shadow: var(--shadow-md);
}
.pdf-dropzone {
  border: 2px dashed var(--c-blue);
  border-radius: var(--r-lg);
  padding: var(--s20) var(--s10);
  text-align: center;
  cursor: pointer;
  transition: var(--t-fast);
  background: rgba(23,48,237,.02);
}
.pdf-dropzone:hover, .pdf-dropzone.dragover {
  background: rgba(23,48,237,.06);
  border-color: var(--c-navy);
}
.pdf-dropzone__icon {
  font-size: 48px;
  margin-bottom: var(--s4);
  opacity: .5;
}
.pdf-dropzone__title {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--s2);
}
.pdf-dropzone__sub { font-size: 14px; color: var(--c-gray); }
.pdf-dropzone__btn {
  margin-top: var(--s6);
  display: inline-block;
  padding: 10px 24px;
  background: var(--c-blue);
  color: var(--c-white);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: var(--fw-bold);
}

.pdf-file-input { display: none; }

.pdf-preview {
  display: none;
  flex-direction: column;
  gap: var(--s6);
}
.pdf-preview.visible { display: flex; }

.pdf-pages {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}
.pdf-page-thumb {
  width: 120px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: var(--t-fast);
}
.pdf-page-thumb:hover { border-color: var(--c-blue); }
.pdf-page-thumb.selected { border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(23,48,237,.2); }
.pdf-page-thumb canvas { width: 100%; height: auto; display: block; }
.pdf-page-num {
  text-align: center;
  font-size: 11px;
  color: var(--c-gray);
  padding: var(--s1) 0;
}

.pdf-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding-top: var(--s6);
  border-top: 1px solid var(--c-light);
  flex-wrap: wrap;
}
.pdf-actions-bar__info { font-size: 14px; color: #666; }

.pdf-progress {
  display: none;
  align-items: center;
  gap: var(--s4);
}
.pdf-progress.visible { display: flex; }
.pdf-progress__bar {
  flex: 1;
  height: 6px;
  background: var(--c-light);
  border-radius: var(--r-full);
  overflow: hidden;
}
.pdf-progress__fill {
  height: 100%;
  background: var(--c-blue);
  border-radius: var(--r-full);
  transition: width .3s var(--ease);
  width: 0%;
}
.pdf-privacy {
  margin-top: var(--s4);
  font-size: 12px;
  color: var(--c-gray);
  display: flex;
  align-items: center;
  gap: var(--s2);
}

/* ── Professionals ───────────────────────────────────────── */
.form-block {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--s10);
  box-shadow: var(--shadow-md);
  max-width: 680px;
}
.form-group { margin-bottom: var(--s6); }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--s2);
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--c-light);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--c-ink);
  background: var(--c-white);
  transition: var(--t-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(23,48,237,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .form-error {
  display: none;
  font-size: 12px;
  color: #e53e3e;
  margin-top: var(--s1);
}
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select { border-color: #e53e3e; }
.form-group.has-error .form-error { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }

.pros-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  align-items: start;
}
.pros-sidebar { }
.pros-features { display: flex; flex-direction: column; gap: var(--s4); }
.pro-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s5);
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1px solid var(--c-light);
}
.pro-feature__icon {
  font-size: 24px;
  width: 44px; height: 44px;
  background: rgba(23,48,237,.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pro-feature__title { font-weight: var(--fw-bold); font-size: 15px; margin-bottom: var(--s1); }
.pro-feature__desc { font-size: 13px; color: #666; }

.pros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--s5);
  margin-top: var(--s12);
}
.pro-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--s6);
  text-align: center;
  border: 1px solid var(--c-light);
  transition: var(--t-med);
}
.pro-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pro-card__photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--c-light);
  margin: 0 auto var(--s4);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  overflow: hidden;
}
.pro-card__name { font-weight: var(--fw-bold); font-size: 15px; margin-bottom: var(--s1); }
.pro-card__role { font-size: 13px; color: #666; margin-bottom: var(--s3); }
.pro-card__badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(23,48,237,.08);
  color: var(--c-blue);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: .04em;
  margin-bottom: var(--s4);
}

/* ── Store ───────────────────────────────────────────────── */
.store-filters {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  margin-bottom: var(--s10);
}
.filter-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-light);
  color: #555;
  background: var(--c-white);
  transition: var(--t-fast);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--c-blue); color: var(--c-blue); }
.filter-btn.active { background: var(--c-blue); color: var(--c-white); border-color: var(--c-blue); }

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--s6);
}
.product-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-light);
  overflow: hidden;
  transition: var(--t-med);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__thumb {
  height: 160px;
  background: var(--c-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
}
.product-card__badge-cat {
  position: absolute;
  top: var(--s3); left: var(--s3);
  padding: 4px 10px;
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-card__body { padding: var(--s5); }
.product-card__title { font-weight: var(--fw-bold); font-size: 15px; margin-bottom: var(--s2); line-height: 1.3; }
.product-card__desc { font-size: 13px; color: #666; margin-bottom: var(--s4); }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.product-card__price { font-size: 20px; font-weight: var(--fw-black); color: var(--c-navy); }
.product-card__actions { display: flex; gap: var(--s2); }

.store-banner {
  background: var(--c-navy);
  border-radius: var(--r-lg);
  padding: var(--s12) var(--s10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
  flex-wrap: wrap;
  margin-bottom: var(--s12);
}
.store-banner__label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--c-blue); font-weight: var(--fw-bold); margin-bottom: var(--s3); }
.store-banner__title { font-size: clamp(22px, 3vw, 32px); font-weight: var(--fw-black); color: var(--c-white); margin-bottom: var(--s3); letter-spacing: -.02em; }
.store-banner__sub { font-size: 15px; color: rgba(255,255,255,.65); }

.store-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-top: var(--s12);
}
.store-step { text-align: center; padding: var(--s6); }
.store-step__num {
  font-size: 48px;
  font-weight: var(--fw-black);
  color: var(--c-blue);
  opacity: .2;
  line-height: 1;
  margin-bottom: var(--s3);
}
.store-step__title { font-weight: var(--fw-bold); font-size: 16px; margin-bottom: var(--s2); }
.store-step__desc { font-size: 14px; color: #666; }

/* ── Services ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--s5);
}
.service-card {
  background: var(--c-navy);
  border-radius: var(--r-lg);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--t-med);
}
.service-card:hover { border-color: var(--c-blue); box-shadow: 0 8px 32px rgba(23,48,237,.2); }
.service-card__num {
  font-size: 72px;
  font-weight: var(--fw-black);
  color: var(--c-blue);
  opacity: .15;
  position: absolute;
  top: -10px; right: var(--s6);
  line-height: 1;
  pointer-events: none;
}
.service-card__label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--c-blue); font-weight: var(--fw-bold); margin-bottom: var(--s4); }
.service-card__title { font-size: 20px; font-weight: var(--fw-black); color: var(--c-white); margin-bottom: var(--s4); letter-spacing: -.02em; }
.service-card__desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }
.service-card__more {
  margin-top: var(--s5);
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--c-blue);
  display: flex; align-items: center; gap: var(--s1);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s6);
  margin-top: var(--s12);
}
.case-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--s6);
  border: 1px solid var(--c-light);
  transition: var(--t-med);
}
.case-card:hover { box-shadow: var(--shadow-md); }
.case-card__badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(23,48,237,.08);
  color: var(--c-blue);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: .04em;
  margin-bottom: var(--s4);
}
.case-card__title { font-weight: var(--fw-black); font-size: 17px; margin-bottom: var(--s2); }
.case-card__sector { font-size: 13px; color: #888; margin-bottom: var(--s4); }
.case-card__result {
  font-size: 14px;
  color: var(--c-navy);
  font-weight: var(--fw-medium);
  padding-top: var(--s4);
  border-top: 1px solid var(--c-light);
  display: flex; align-items: center; gap: var(--s2);
}

.services-cta {
  background: var(--c-blue);
  border-radius: var(--r-lg);
  padding: var(--s16) var(--s10);
  text-align: center;
  margin-top: var(--s12);
}
.services-cta .h2 { color: var(--c-white); margin-bottom: var(--s4); }
.services-cta p { color: rgba(255,255,255,.75); font-size: 18px; margin-bottom: var(--s8); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-top: var(--s6);
}
.value-tag {
  padding: 8px 16px;
  background: rgba(23,48,237,.08);
  color: var(--c-blue);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: var(--fw-bold);
}
.philosophy-block {
  background: var(--c-navy);
  border-radius: var(--r-lg);
  padding: var(--s10);
  margin: var(--s12) 0;
  border-left: 4px solid var(--c-blue);
}
.philosophy-block blockquote {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: 1.4;
  font-style: italic;
  letter-spacing: -.01em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--s5);
}
.team-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--s6);
  text-align: center;
  border: 1px solid var(--c-light);
  transition: var(--t-med);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-card__photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--s4);
  background: var(--c-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.team-card__name { font-weight: var(--fw-bold); font-size: 15px; margin-bottom: var(--s1); }
.team-card__role { font-size: 13px; color: #666; margin-bottom: var(--s3); }
.team-card__linkedin {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--c-blue); font-weight: var(--fw-bold);
}

.contact-info { display: flex; flex-direction: column; gap: var(--s5); }
.contact-info-item {
  display: flex; align-items: center; gap: var(--s4);
  padding: var(--s5);
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1px solid var(--c-light);
  font-size: 15px;
}
.contact-info-item__icon { font-size: 22px; flex-shrink: 0; }
.contact-info-item a { color: var(--c-blue); font-weight: var(--fw-medium); }

/* ── Upload area ─────────────────────────────────────────── */
.file-upload-area {
  border: 1.5px dashed var(--c-light);
  border-radius: var(--r-sm);
  padding: var(--s6);
  text-align: center;
  cursor: pointer;
  transition: var(--t-fast);
  font-size: 14px;
  color: #888;
}
.file-upload-area:hover { border-color: var(--c-blue); color: var(--c-blue); }
.file-upload-area input { display: none; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--c-ink);
  color: var(--c-white);
  padding: var(--s16) 0 var(--s8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--s10);
  margin-bottom: var(--s12);
}
.footer__brand .logo__text { color: var(--c-white); font-size: 20px; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.45); margin-top: var(--s3); }
.footer__col-title {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--s5);
}
.footer__links { display: flex; flex-direction: column; gap: var(--s3); }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--t-fast);
  cursor: pointer;
}
.footer__links a:hover { color: var(--c-white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s8);
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  gap: var(--s4);
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,.35); }
.footer__socials { display: flex; gap: var(--s4); }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--t-fast);
}
.footer__social:hover { background: var(--c-blue); }

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-4  { margin-top: var(--s4);  }
.mt-6  { margin-top: var(--s6);  }
.mt-8  { margin-top: var(--s8);  }
.mt-12 { margin-top: var(--s12); }
.mb-4  { margin-bottom: var(--s4);  }
.mb-6  { margin-bottom: var(--s6);  }
.mb-8  { margin-bottom: var(--s8);  }
.mb-12 { margin-bottom: var(--s12); }
.gap-4 { gap: var(--s4); }

/* ── Scroll reveal ───────────────────────────────────────── */
/* Content always visible by default — opacity only fades in when JS
   adds .js-ready to <body>, so no content is hidden without JS */
.reveal {
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.js-ready .reveal { opacity: 0; }
.reveal.visible { opacity: 1 !important; transform: none; }

/* ── Toast ───────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--s8);
  right: var(--s8);
  background: var(--c-navy);
  color: var(--c-white);
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: var(--fw-medium);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--t-med);
  pointer-events: none;
}
.toast.show { transform: none; opacity: 1; }
.toast.success { border-left: 4px solid #22c55e; }
.toast.error   { border-left: 4px solid #ef4444; }

/* ── Page hero generic ───────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + var(--s16)) 0 var(--s16);
  background: var(--c-white);
}
.page-hero__inner { max-width: 640px; }

/* ══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; gap: var(--s10); }
  .pros-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }

  .metrics__grid { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr; }
  .store-steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .pdf-tabs { gap: var(--s1); }
  .pdf-tab { padding: 8px 12px; font-size: 12px; }

  .store-banner { flex-direction: column; text-align: center; }

  .pros-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .pros-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}
