/* Google Fonts loaded via <link> in HTML head */

/* ════════════════════════════════════════════════════
   STRIKE GROUP shared.css
   Version: light-theme
   ════════════════════════════════════════════════════ */

:root {
  --midnight: #1E2D3D;
  --navy:     #455973;
  --teal:     #6DC2AC;
  --slate:    #7A8FA6;
  --fog:      #E8EEF4;
  --white:    #FFFFFF;
  --coral:    #E8735A;
  --bg:       #F4F7FA;
  --border:   #D8E2EC;
  --radius:   3px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Saira', sans-serif;
  background: var(--white);
  color: var(--midnight);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── OVERLAY ── */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 150; }
.nav-overlay.active { display: block; }

/* ── NAV (light) ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 80px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; height: 64px; flex-shrink: 0; }
.nav-logo svg { height: 64px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--navy); text-decoration: none; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta { background: var(--coral) !important; color: #fff !important; padding: 0.4rem 1.1rem !important; border-radius: var(--radius) !important; font-weight: 700 !important; }
.nav-cta:hover { background: #d4624a !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE HERO (light) ── */
.page-hero { padding: 9.5rem 3rem 5rem; background: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(109,194,172,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(109,194,172,0.06) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
.page-hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal) 0%, var(--navy) 60%, transparent 100%); }
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.2rem; }
.page-hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--teal); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 700; color: var(--midnight); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 1.4rem; }
.page-hero h1 em { font-style: normal; color: var(--teal); }
.page-hero-sub { font-size: 1rem; font-weight: 400; color: var(--slate); max-width: 620px; line-height: 1.85; }

/* ── SECTIONS ── */
.section { padding: 6rem 3rem; }
.section-alt { background: var(--fog); }
.section-dark { background: var(--fog); color: var(--midnight); }
.section-mid { background: var(--bg); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem; }
.section-label::before { content: ''; display: block; width: 22px; height: 1px; background: var(--teal); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; color: var(--midnight); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1rem; }
.section-title-dark { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; color: var(--midnight); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1rem; }
.section-desc { font-size: 0.9rem; color: var(--slate); line-height: 1.8; max-width: 680px; margin-bottom: 3rem; }
.section-desc-dark { font-size: 0.9rem; color: var(--slate); line-height: 1.8; max-width: 680px; margin-bottom: 3rem; }

/* ── VALUE GRID ── */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 3rem; }
.value-item { background: var(--white); padding: 2.2rem 2rem; transition: background var(--transition); }
.value-item:hover { background: #f8fbfd; }
.value-item-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.8rem; }
.value-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--midnight); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.value-item p { font-size: 0.84rem; color: var(--slate); line-height: 1.75; }

/* ── STEPS GRID (light) ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.step-item { background: var(--white); padding: 2.2rem 2rem; transition: background var(--transition); }
.step-item:hover { background: var(--bg); }
.step-num { font-size: 2rem; font-weight: 700; color: rgba(109,194,172,0.3); line-height: 1; margin-bottom: 0.8rem; letter-spacing: -0.04em; }
.step-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--midnight); margin-bottom: 0.55rem; }
.step-item p { font-size: 0.82rem; color: var(--slate); line-height: 1.7; }

/* ── PRICING (light) ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.4rem 2.2rem; position: relative; transition: border-color var(--transition), box-shadow var(--transition); }
.pricing-card:hover { border-color: var(--teal); box-shadow: 0 6px 24px rgba(30,45,61,0.08); }
.pricing-card.featured { border-color: var(--teal); background: #f8fcfb; }
.pricing-card.featured::before { content: 'Populär'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--midnight); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.pricing-tier { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.pricing-price { font-size: 1.6rem; font-weight: 700; color: var(--midnight); letter-spacing: -0.02em; margin-bottom: 0.3rem; }
.pricing-price span { font-size: 0.8rem; font-weight: 400; color: var(--slate); }
.pricing-desc { font-size: 0.82rem; color: var(--slate); margin-bottom: 1.8rem; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.82rem; color: var(--navy); padding-left: 1.4rem; position: relative; line-height: 1.5; }
.pricing-features li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-size: 0.68rem; top: 0.18em; }

/* ── PACKAGE BOX (light) ── */
.package-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 3rem; margin-bottom: 2rem; }
.package-box-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; gap: 2rem; flex-wrap: wrap; }
.package-box-title { font-size: 1.4rem; font-weight: 700; color: var(--midnight); letter-spacing: -0.01em; }
.package-box-price { font-size: 1.3rem; font-weight: 700; color: var(--teal); }
.package-box-price small { font-size: 0.8rem; font-weight: 400; color: var(--slate); display: block; }
.package-rows { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.package-row { display: grid; grid-template-columns: 160px 1fr auto; gap: 1.5rem; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--border); align-items: start; }
.package-row:last-child { border-bottom: none; }
.package-row:nth-child(odd) { background: var(--bg); }
.package-row-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.package-row-desc { font-size: 0.84rem; color: var(--slate); line-height: 1.6; }
.package-row-price { font-size: 0.82rem; font-weight: 600; color: var(--midnight); text-align: right; white-space: nowrap; }

/* ── OPTION BOX (light) ── */
.option-box { border: 1px solid rgba(109,194,172,0.3); border-radius: var(--radius); padding: 1.8rem 2rem; background: rgba(109,194,172,0.04); display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; margin-top: 1.4rem; }
.option-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.4rem; }
.option-title { font-size: 1.05rem; font-weight: 700; color: var(--midnight); margin-bottom: 0.4rem; }
.option-desc { font-size: 0.84rem; color: var(--slate); line-height: 1.6; max-width: 480px; }
.option-price { font-size: 1rem; font-weight: 700; color: var(--teal); text-align: right; }
.option-price small { display: block; font-size: 0.75rem; font-weight: 400; color: var(--slate); }

/* ── CTA STRIP (light) ── */
.cta-strip { background: var(--fog); border-top: 1px solid var(--border); padding: 5rem 3rem; }
.cta-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--midnight); letter-spacing: -0.02em; max-width: 540px; line-height: 1.18; }
.cta-strip h2 em { font-style: normal; color: var(--teal); }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--coral); color: #fff; padding: 0.85rem 2rem; border-radius: var(--radius); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; transition: background var(--transition), transform var(--transition); white-space: nowrap; cursor: pointer; }
.btn-primary:hover { background: #d4624a; transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.6rem; background: transparent; color: var(--navy); padding: 0.85rem 2rem; border-radius: var(--radius); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; border: 1px solid var(--border); transition: background var(--transition), border-color var(--transition); white-space: nowrap; cursor: pointer; }
.btn-ghost:hover { background: var(--fog); border-color: var(--teal); }
.btn-ghost-light { display: inline-flex; align-items: center; gap: 0.6rem; background: transparent; color: var(--navy); padding: 0.65rem 1.4rem; border-radius: var(--radius); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; border: 1px solid var(--border); transition: background 0.22s, border-color 0.22s, color 0.22s; white-space: nowrap; cursor: pointer; }
.btn-ghost-light:hover { background: var(--fog); border-color: var(--teal); color: var(--midnight); }

/* ── BREADCRUMB (light) ── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: var(--slate); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--navy); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--border); }

/* ── FOOTER (light) ── */
footer { background: var(--bg); padding: 3rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .footer-logo { height: 56px; opacity: 1; display: block; margin-bottom: 1.2rem; }
.footer-brand .footer-logo svg { height: 56px; width: auto; }
.footer-tagline { font-size: 0.8rem; color: var(--slate); line-height: 1.7; max-width: 200px; }
.footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.84rem; color: var(--navy); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-copy { font-size: 0.72rem; color: var(--slate); letter-spacing: 0.04em; }

/* ── PARTNER STRIP (light) ── */
.partner-strip-section { background: var(--fog); padding: 3rem; border-top: 1px solid var(--border); }
.partner-strip-layout { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.partner-strip-intro { max-width: 320px; }
.partner-strip-text { font-size: 0.82rem; color: var(--slate); line-height: 1.7; margin-top: 0.5rem; }
.partner-strip-logos { display: flex; align-items: center; flex-wrap: wrap; }
.partner-logo-item { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 2rem; text-decoration: none; transition: opacity 0.2s ease; }
.partner-logo-item:hover { opacity: 0.7; }
.partner-logo-item svg { flex-shrink: 0; }
.partner-logo-info { display: flex; flex-direction: column; gap: 0.35rem; }
.partner-logo-name { font-size: 0.85rem; font-weight: 700; color: var(--midnight); white-space: nowrap; }
.partner-logo-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.partner-logo-tags span { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #6DC2AC; background: rgba(109,194,172,0.1); border: 1px solid rgba(109,194,172,0.25); padding: 0.18rem 0.55rem; border-radius: 2px; white-space: nowrap; }
.partner-logo-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── SERVICE CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.svc-card { background: #fff; text-decoration: none; display: flex; flex-direction: column; position: relative; transition: background 0.22s; min-height: 280px; }
.svc-card:hover { background: #F8FBFD; }
.svc-card:hover .card-line { transform: scaleX(1); }
.svc-card .card-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.svc-card-inner { display: flex; flex-direction: column; justify-content: space-between; flex: 1; padding: 2.4rem 2rem; gap: 1.4rem; }
.svc-tag { display: inline-block; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); background: var(--fog); padding: 0.22rem 0.65rem; border-radius: 2px; margin-bottom: 1.2rem; }
.svc-title { font-size: 1.1rem; font-weight: 700; color: var(--midnight); margin-bottom: 0.75rem; line-height: 1.25; letter-spacing: -0.01em; }
.svc-desc { font-size: 0.82rem; color: var(--slate); line-height: 1.78; }
.svc-link { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); align-self: flex-start; }

/* ── RESPONSIVE: partner strip ── */
@media (max-width: 960px) {
  .partner-strip-section { padding: 2.5rem 1.4rem; }
  .partner-strip-layout { flex-direction: column; align-items: flex-start; gap: 1.8rem; }
  .partner-strip-intro { max-width: 100%; }
  .partner-logo-item { padding: 0.6rem 1.2rem; }
  .partner-logo-item:first-child { padding-left: 0; }
  .partner-logo-divider { height: 30px; }
}
@media (max-width: 600px) {
  .partner-strip-logos { flex-direction: column; align-items: flex-start; }
  .partner-logo-divider { display: none; }
  .partner-logo-item { padding: 0.75rem 0; }
}

/* ════════ TABLET ≤ 960px ════════ */
@media (max-width: 960px) {
  nav { padding: 0 1.2rem 0 1.4rem; height: 64px; }
  .nav-logo { height: 50px; }
  .nav-logo svg { height: 50px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 2px solid var(--teal);
    box-shadow: 0 8px 32px rgba(30,45,61,0.12); z-index: 199; padding-bottom: 0.5rem;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 1.5rem; font-size: 0.9rem; letter-spacing: 0.08em; color: var(--navy); }
  .nav-links a:hover { color: var(--teal); background: var(--bg); }
  .nav-links .nav-cta { display: block; margin: 0.8rem 1.5rem; padding: 0.75rem 1.5rem !important; text-align: center; border-radius: var(--radius) !important; font-size: 0.85rem !important; }
  .page-hero { padding: 7rem 1.4rem 3.5rem; }
  .section { padding: 3.5rem 1.4rem; }
  .cta-strip { padding: 3.5rem 1.4rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  [style*="grid-template-columns:1fr 1fr"], [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 2rem !important; }
  [style*="grid-template-columns:repeat(4,1fr)"], [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="grid-template-columns:repeat(3,1fr)"], [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(2,1fr)"], [style*="grid-template-columns: repeat(2, 1fr)"] { grid-template-columns: 1fr !important; gap: 1.4rem !important; }
  [style*="position:absolute;bottom:3rem;right:3rem"] { display: none !important; }
  #hero { padding: 6rem 1.4rem 4rem !important; }
  [style*="grid-template-columns:1fr 1fr;gap:1px"] { grid-template-columns: 1fr 1fr !important; gap: 1px !important; }
  .steps-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .svc-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .value-grid { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .package-box { padding: 1.8rem 1.4rem; }
  .package-row { grid-template-columns: 1fr !important; gap: 0.3rem; }
  .package-row-price { text-align: left; }
  .option-box { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .option-price { text-align: left; }
  footer { padding: 2.5rem 1.4rem; }
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 2rem; margin-bottom: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ════════ MOBILE ≤ 600px ════════ */
@media (max-width: 600px) {
  nav { height: 60px; padding: 0 1rem 0 1.2rem; }
  .nav-logo { height: 42px; }
  .nav-logo svg { height: 42px; }
  .nav-links { top: 60px; }
  #hero { padding: 5.5rem 1.2rem 3rem !important; }
  .page-hero { padding: 6.5rem 1.2rem 3rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .page-hero-sub { font-size: 0.9rem; }
  .section { padding: 2.8rem 1.2rem; }
  .cta-strip { padding: 2.8rem 1.2rem; }
  .section-title, .section-title-dark { font-size: clamp(1.4rem, 6vw, 2rem); }
  [style*="grid-template-columns:1fr 1fr;gap:1px"], [style*="grid-template-columns:1fr 1fr"], [style*="grid-template-columns: 1fr 1fr"], [style*="grid-template-columns:repeat(4,1fr)"], [style*="grid-template-columns:repeat(3,1fr)"], [style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; gap: 1px !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .svc-grid { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 1.8rem; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn-primary, .cta-buttons .btn-ghost { width: 100%; justify-content: center; }
  .package-box { padding: 1.4rem 1.2rem; }
  .package-box-header { flex-direction: column; gap: 0.8rem; }
  .package-box-price { white-space: normal; font-size: 1.1rem; }
  .section-desc, .section-desc-dark { font-size: 0.85rem; margin-bottom: 2rem; }
  [style*="padding:2.8rem"] { padding: 1.6rem !important; }
  footer { padding: 2rem 1.2rem; }
  .footer-inner { margin-bottom: 1.5rem; }
}

/* ── TEAM CARD HOVER (replaces inline onmouseover) ── */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid #6DC2AC;
  border-radius: 3px;
  padding: 2.8rem;
  transition: border-color 0.22s;
  display: flex;
  flex-direction: column;
}
.team-card > a:last-child {
  margin-top: auto;
  align-self: flex-start;
}
.team-card:hover {
  border-color: #6DC2AC;
}

/* ── PS-CARD HOVER (replaces inline onmouseover on subpages) ── */
.ps-card-hover {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem 1.8rem;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.ps-card-hover:hover {
  box-shadow: 0 8px 28px rgba(30,45,61,0.10);
  transform: translateY(-2px);
  border-color: #6DC2AC;
}

/* ── TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ════════ TABLET – team-grid / why-grid ════════ */
@media (max-width: 960px) {
  .team-grid { grid-template-columns: 1fr !important; gap: 1.4rem !important; }
  .why-grid  { grid-template-columns: 1fr !important; gap: 2rem !important; }
}
