/* ============================================================
   LKBP Proposal Hub — Landing Page
   Hub for the Banking System and HRIS+Payroll proposals
   ============================================================ */

:root {
  --lkbp-deep:        #0B3801;
  --lkbp-forest:      #0F5300;
  --lkbp-mid:         #006547;
  --lkbp-emerald:     #009065;
  --lkbp-vivid:       #28AF60;
  --lkbp-mint:        #6FD49A;
  --lkbp-pale:        #E7F7EB;
  --lkbp-whisper:     #F4FBF6;
  --lkbp-yellow:      #FFFA00;
  --gold:             #C08A00;
  --gold-soft:        #F5E6BD;
  --vault-blue:       #1E3A5F;
  --people-orange:    #E08A1B;
  --surface:          #FAFBF7;
  --surface-card:     #FFFFFF;
  --ink:              #0E1A14;
  --ink-soft:         #2D3A33;
  --ink-muted:        #515256;
  --ink-faint:        #8B9088;
  --line:             #DCE3D9;
  --line-soft:        #ECF0E8;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm:  0 1px 2px rgba(11, 56, 1, 0.04), 0 1px 3px rgba(11, 56, 1, 0.06);
  --shadow-md:  0 6px 12px rgba(11, 56, 1, 0.05), 0 12px 24px rgba(11, 56, 1, 0.09);
  --shadow-lg:  0 14px 28px rgba(11, 56, 1, 0.09), 0 28px 56px rgba(11, 56, 1, 0.14);
  --shadow-xl:  0 28px 56px rgba(11, 56, 1, 0.18), 0 56px 112px rgba(11, 56, 1, 0.22);
  --shadow-2xl: 0 50px 100px rgba(11, 56, 1, 0.25), 0 80px 160px rgba(11, 56, 1, 0.30);
  --r-sm: 6px; --r-md: 12px; --r-lg: 18px; --r-xl: 28px; --r-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; margin: 0; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lkbp-vivid); color: white; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--lkbp-pale); }
::-webkit-scrollbar-thumb { background: var(--lkbp-mint); border-radius: var(--r-pill); }

/* ============================================================
   Hero (cinematic open for the hub)
   ============================================================ */

.hub-hero {
  min-height: 100vh;
  padding: 5rem 6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(40,175,96,0.10), transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(192,138,0,0.08), transparent 60%),
              linear-gradient(180deg, var(--lkbp-whisper), var(--surface));
}

.hub-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 700px;
  background: radial-gradient(ellipse, rgba(40,175,96,0.12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.hub-hero__inner {
  max-width: 1100px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hub-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hub-date-pill .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lkbp-vivid);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(40,175,96,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(40,175,96,0); }
}

.hub-seal {
  width: 140px;
  height: 140px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lkbp-deep), var(--lkbp-forest));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(11, 56, 1, 0.30),
              0 0 0 10px rgba(255,255,255,0.7),
              0 0 0 11px rgba(40,175,96,0.18);
  animation: seal-breathe 5s ease-in-out infinite;
}

@keyframes seal-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 20px 60px rgba(11, 56, 1, 0.30), 0 0 0 10px rgba(255,255,255,0.7), 0 0 0 11px rgba(40,175,96,0.18); }
  50% { transform: scale(1.02); box-shadow: 0 25px 70px rgba(11, 56, 1, 0.35), 0 0 0 12px rgba(255,255,255,0.7), 0 0 0 18px rgba(40,175,96,0.12); }
}

.hub-seal img { width: 75%; height: 75%; object-fit: contain; border-radius: 50%; }

.hub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lkbp-vivid);
  margin-bottom: 1.25rem;
}

.hub-eyebrow::before, .hub-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--lkbp-vivid);
}

.hub-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
}

.hub-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lkbp-vivid), var(--lkbp-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hub-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.hub-tagline {
  font-style: italic;
  color: var(--lkbp-mid);
  font-size: 0.95rem;
  margin-top: 1rem;
  opacity: 0.85;
}

/* ============================================================
   Sections
   ============================================================ */

.section {
  padding: 6rem 6rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lkbp-vivid);
  margin-bottom: 1.25rem;
}

.section-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--lkbp-vivid);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ============================================================
   Two Giant Proposal Buttons (the hero feature)
   ============================================================ */

.proposals {
  background: linear-gradient(180deg, var(--lkbp-whisper) 0%, white 100%);
  position: relative;
  padding: 5rem 6rem;
  overflow: hidden;
}

.proposals::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px; height: 800px;
  background: radial-gradient(ellipse, rgba(40,175,96,0.08), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}

.proposals__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.proposals__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.proposals__head h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

.proposals__head p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

.proposal-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .proposal-buttons { grid-template-columns: 1fr; gap: 1.5rem; }
}

.prop-btn {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  min-height: 480px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
}

.prop-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.prop-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 2px solid transparent;
  transition: all 0.5s var(--ease-out);
  pointer-events: none;
}

.prop-btn:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.prop-btn:hover::before { opacity: 1; }
.prop-btn:hover::after { border-color: rgba(255,255,255,0.3); }

/* Banking button — Vault & Trust identity */
.prop-btn--banking {
  background:
    linear-gradient(135deg, rgba(11, 56, 1, 0.92), rgba(15, 83, 0, 0.95)),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.04) 39px, rgba(255,255,255,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.04) 39px, rgba(255,255,255,0.04) 40px),
    linear-gradient(135deg, var(--lkbp-deep), var(--lkbp-forest));
  color: white;
}

.prop-btn--banking::before {
  background: radial-gradient(circle at 30% 20%, rgba(255,250,0,0.2), transparent 50%);
}

/* HRIS button — People & Operations identity */
.prop-btn--hris {
  background:
    radial-gradient(circle at 70% 30%, rgba(224,138,27,0.25), transparent 60%),
    linear-gradient(135deg, var(--lkbp-mid), var(--lkbp-emerald), var(--lkbp-vivid));
  color: white;
}

.prop-btn--hris::before {
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 50%);
}

.prop-btn__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.prop-btn__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}

.prop-btn__badge {
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
}

.prop-btn--banking .prop-btn__badge { background: rgba(255,250,0,0.18); color: var(--lkbp-yellow); border-color: rgba(255,250,0,0.3); }

.prop-btn__visual {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.prop-btn__icon {
  font-size: 4rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
  animation: icon-float 4s ease-in-out infinite;
}

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

.prop-btn__body {
  position: relative;
  z-index: 1;
}

.prop-btn__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.85;
  margin-bottom: 0.85rem;
}

.prop-btn--banking .prop-btn__eyebrow { color: var(--lkbp-yellow); }
.prop-btn--hris .prop-btn__eyebrow { color: #FFE9C2; }

.prop-btn__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.85rem;
  color: white;
  letter-spacing: -0.025em;
}

.prop-btn__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.prop-btn__meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 1.5rem;
}

.prop-btn__meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
}

.prop-btn__meta-item small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.prop-btn__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.prop-btn__cta-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.4s var(--ease-spring);
  border: 1px solid rgba(255,255,255,0.25);
}

.prop-btn:hover .prop-btn__cta-arrow {
  transform: translateX(8px) scale(1.1);
  background: rgba(255,255,255,0.3);
}

/* ============================================================
   Team Section (NQB8 + Reymark)
   ============================================================ */

.team {
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lkbp-vivid), var(--lkbp-emerald));
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-card--dark {
  background: linear-gradient(135deg, var(--lkbp-deep), var(--lkbp-forest));
  color: white;
  border: none;
}

.team-card--dark::before {
  background: linear-gradient(90deg, var(--lkbp-yellow), var(--lkbp-mint));
}

.team-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.team-card__mark {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--lkbp-vivid), var(--lkbp-emerald));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.4rem; color: white;
  flex-shrink: 0; letter-spacing: -0.02em;
}

.team-card--dark .team-card__mark {
  background: linear-gradient(135deg, var(--lkbp-yellow), #FFD400);
  color: var(--lkbp-deep);
}

.team-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  line-height: 1.1; margin-bottom: 0.15rem;
}

.team-card__role {
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.team-card--dark .team-card__role { color: var(--lkbp-mint); }

.team-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem; line-height: 1.45;
  font-weight: 500; color: var(--ink);
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--lkbp-vivid);
}

.team-card--dark .team-card__quote {
  color: white;
  border-left-color: var(--lkbp-yellow);
}

.team-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}

.team-card--dark .team-card__meta { border-bottom-color: rgba(255,255,255,0.12); }

.team-card__meta span {
  display: block; font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 0.2rem; font-weight: 600;
}

.team-card--dark .team-card__meta span { color: var(--lkbp-mint); }
.team-card__meta strong { font-weight: 600; color: var(--ink); }
.team-card--dark .team-card__meta strong { color: white; }

.team-card__stack {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}

.tag {
  display: inline-flex; align-items: center;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem; font-weight: 600;
  border-radius: var(--r-pill);
  background: var(--lkbp-pale);
  color: var(--lkbp-mid);
  letter-spacing: 0.02em;
}

.team-card--dark .tag {
  background: rgba(255,255,255,0.08);
  color: var(--lkbp-mint);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Verticals row */
.proof-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.proof {
  background: white;
  border-radius: var(--r-md);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line-soft);
  transition: all 0.25s var(--ease-out);
}

.proof:hover { transform: translateY(-3px); border-color: var(--lkbp-vivid); box-shadow: var(--shadow-md); }
.proof__icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
.proof__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.92rem; color: var(--ink); margin-bottom: 0.3rem;
}
.proof__desc {
  font-size: 0.78rem; color: var(--ink-muted); line-height: 1.5;
}

/* Credibility bar */
.credibility-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  background: linear-gradient(135deg, var(--lkbp-pale), white);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
  gap: 1rem;
  border: 1px solid rgba(40,175,96,0.18);
}

.credibility-item {
  text-align: center; padding: 0 0.5rem;
  border-right: 1px solid var(--line-soft);
}
.credibility-item:last-child { border-right: none; }
.credibility-item__num {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  color: var(--lkbp-mid); line-height: 1;
}
.credibility-item__label {
  font-size: 0.72rem; color: var(--ink-muted);
  margin-top: 0.3rem; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 600;
}

/* Relevance callout */
.relevance {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--lkbp-deep), var(--lkbp-mid));
  color: white;
  padding: 1.75rem 2rem;
  border-radius: var(--r-lg);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.relevance__icon { font-size: 2rem; flex-shrink: 0; }

.relevance strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.relevance p {
  font-size: 0.95rem;
  color: var(--lkbp-mint);
  line-height: 1.6;
}

.contractual {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--lkbp-vivid);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.contractual strong {
  display: block;
  color: var(--lkbp-mid);
  font-family: var(--font-display);
  margin-bottom: 0.4rem;
}

/* ============================================================
   Footer
   ============================================================ */

.hub-footer {
  background: linear-gradient(180deg, var(--lkbp-deep), #051D00);
  color: white;
  padding: 4rem 6rem 3rem;
  text-align: center;
}

.hub-footer__mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--lkbp-yellow);
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
}

.hub-footer__mark img { width: 36px; height: 36px; border-radius: 50%; }

.hub-footer h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: white;
  margin-bottom: 0.85rem;
}

.hub-footer p {
  color: var(--lkbp-mint);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.hub-footer__contact {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hub-footer__contact-item span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lkbp-mint);
  margin-bottom: 0.3rem;
}

.hub-footer__contact-item strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
}

.hub-tagline-bottom {
  margin-top: 2.5rem;
  font-style: italic;
  color: var(--lkbp-mint);
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ============================================================
   Reveal
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Mobile
   ============================================================ */

@media (max-width: 768px) {
  .hub-hero, .proposals, .section, .hub-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hub-hero { padding-top: 4rem; padding-bottom: 3rem; }
  .section { padding-top: 4rem; padding-bottom: 4rem; }
  .hub-seal { width: 110px; height: 110px; }
  .prop-btn { min-height: 420px; padding: 2.25rem 1.75rem; }
  .prop-btn__icon { font-size: 3rem; }
  .prop-btn__num { width: 44px; height: 44px; font-size: 0.92rem; }
  .prop-btn__title { font-size: 1.5rem; }
  .prop-btn__meta { gap: 0.85rem; }
  .credibility-bar { grid-template-columns: repeat(2, 1fr); }
  .credibility-item { border-right: none; border-bottom: 1px solid var(--line-soft); padding: 0.5rem 0; }
  .credibility-item:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .credibility-item:last-child, .credibility-item:nth-last-child(2) { border-bottom: none; }
  .team-card__meta { grid-template-columns: 1fr; }
  .hub-footer__contact { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hub-hero { padding-top: 3rem; }
  .hub-title { font-size: 2rem; }
  .hub-seal { width: 90px; height: 90px; }
  .prop-btn__cta { font-size: 0.85rem; }
  .prop-btn__cta-arrow { width: 40px; height: 40px; }
}
