/* ============================================================
   Cogniforce Labs — design tokens & base
   ============================================================ */

:root {
  /* Brand */
  --brand: #1B72E8;
  --brand-600: #1565D0;
  --brand-700: #1056B5;
  --brand-50: #EEF5FE;
  --brand-100: #DCEAFC;

  /* Neutrals — warm-tinted whites */
  --ink: #0B1220;
  --ink-2: #1F2937;
  --muted: #5A6675;
  --muted-2: #8B95A4;
  --line: #E8E5DE;
  --line-2: #F0EEE8;
  --bg: #FFFDFA;
  --bg-2: #F7F4ED;
  --bg-3: #F1EDE3;

  /* Per-product accent palette */
  --c-erp: #1B72E8;
  --c-erp-50: #EEF5FE;
  --c-crm: #0EA572;
  --c-crm-50: #E6F7F0;
  --c-site: #6366F1;
  --c-site-50: #EEF0FE;
  --c-cloud: #8B5CF6;
  --c-cloud-50: #F3EEFE;
  --c-consult: #F59E0B;
  --c-consult-50: #FEF6E5;
  --accent: #F59E0B;

  /* Type */
  --font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Radii / shadows */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.04);
  --shadow-md: 0 6px 24px -8px rgba(11, 18, 32, 0.08), 0 2px 4px rgba(11, 18, 32, 0.04);
  --shadow-lg: 0 24px 48px -16px rgba(11, 18, 32, 0.12), 0 4px 8px rgba(11, 18, 32, 0.04);

  /* Layout */
  --max: 1240px;
  --pad: clamp(20px, 4vw, 40px);
}

body.pp-erp     { --pp-color: var(--c-erp);     --pp-color-50: var(--c-erp-50);     --pp-tint: rgba(27,114,232,0.10); }
body.pp-crm     { --pp-color: var(--c-crm);     --pp-color-50: var(--c-crm-50);     --pp-tint: rgba(14,165,114,0.10); }
body.pp-site    { --pp-color: var(--c-site);    --pp-color-50: var(--c-site-50);    --pp-tint: rgba(99,102,241,0.10); }
body.pp-cloud   { --pp-color: var(--c-cloud);   --pp-color-50: var(--c-cloud-50);   --pp-tint: rgba(139,92,246,0.10); }
body.pp-consult { --pp-color: var(--c-consult); --pp-color-50: var(--c-consult-50); --pp-tint: rgba(245,158,11,0.12); }

body.pp-erp .section-kicker,
body.pp-crm .section-kicker,
body.pp-site .section-kicker,
body.pp-cloud .section-kicker,
body.pp-consult .section-kicker { color: var(--pp-color); }

body.pp-erp .benefits-list .check,
body.pp-crm .benefits-list .check,
body.pp-site .benefits-list .check,
body.pp-cloud .benefits-list .check,
body.pp-consult .benefits-list .check {
  background: var(--pp-color-50);
  color: var(--pp-color);
}
body.pp-erp .benefits-list .num,
body.pp-crm .benefits-list .num,
body.pp-site .benefits-list .num,
body.pp-cloud .benefits-list .num,
body.pp-consult .benefits-list .num { color: var(--pp-color); }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

::selection {
  background: var(--brand-100);
  color: var(--brand-700);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.mono { font-family: var(--font-mono); font-feature-settings: "tnum"; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
.footer .brand-logo { height: 52px; }
.brand-mark { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: var(--bg-2); color: var(--brand); }
.nav-link.is-active { color: var(--brand); background: var(--brand-50); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 980px) {
  .nav-inner {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
  .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    gap: 6px;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link {
    flex: 0 0 auto;
    padding: 7px 12px;
    font-size: 13.5px;
    background: white;
    border: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .nav-inner {
    padding-top: 14px;
    padding-bottom: 10px;
  }
  .brand-logo { height: 34px; }
  .nav-cta { padding: 10px 14px; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 1px 2px rgba(11,18,32,0.08);
}
.btn-primary:hover { background: var(--brand-600); }

.btn-ghost {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: #C7D1E0; background: var(--bg-2); }

.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover { background: #000; }

.btn-sm { padding: 9px 14px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 14px 24px; font-size: 16px; border-radius: 12px; }

.btn .arrow {
  transition: transform .15s ease;
}
.btn:hover .arrow { transform: translateX(2px); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(56px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(27,114,232,0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(245,158,11,0.08), transparent 60%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(11, 18, 32, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(27,114,232,.14);
}

h1.hero-title {
  font-size: clamp(40px, 6.4vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
h1.hero-title em {
  font-style: normal;
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .hero {
    padding-top: 44px;
    padding-bottom: 58px;
  }
  .eyebrow {
    margin-bottom: 22px;
    font-size: 12.5px;
  }
  h1.hero-title {
    font-size: clamp(28px, 7.6vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
  }
  h1.hero-title em {
    white-space: normal;
  }
  .hero-sub {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  .hero-meta {
    margin-top: 38px;
    gap: 14px 18px;
    font-size: 13px;
  }
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 680px;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 13.5px;
}
.hero-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-meta-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--muted-2);
}

/* ============================================================
   Section scaffolding
   ============================================================ */
section.block {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
}
section.block.tight { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
section.alt {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(99,102,241,0.06), transparent 60%),
    radial-gradient(ellipse 70% 80% at 0% 100%, rgba(245,158,11,0.05), transparent 65%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
  text-wrap: balance;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

/* ============================================================
   Product strip (homepage)
   ============================================================ */
.products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products { grid-template-columns: 1fr; } }

.product-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  min-height: 220px;
  --pc-color: var(--c-erp);
  --pc-color-50: var(--c-erp-50);
}
.product-card.pc-erp     { --pc-color: var(--c-erp);     --pc-color-50: var(--c-erp-50); }
.product-card.pc-crm     { --pc-color: var(--c-crm);     --pc-color-50: var(--c-crm-50); }
.product-card.pc-site    { --pc-color: var(--c-site);    --pc-color-50: var(--c-site-50); }
.product-card.pc-cloud   { --pc-color: var(--c-cloud);   --pc-color-50: var(--c-cloud-50); }
.product-card.pc-consult { --pc-color: var(--c-consult); --pc-color-50: var(--c-consult-50); }
.product-card:hover {
  border-color: color-mix(in oklch, var(--pc-color) 35%, transparent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.product-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--pc-color-50);
  color: var(--pc-color);
  display: grid; place-items: center;
}
.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}
.product-card .pc-tag {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  flex-grow: 1;
}
.product-card .pc-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  margin-top: 4px;
}
.product-card .pc-price b {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.product-card .pc-price span {
  font-size: 12.5px;
  color: var(--muted-2);
}
.product-card .pc-arrow {
  position: absolute;
  top: 22px; right: 20px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  transition: all .18s ease;
}
.product-card:hover .pc-arrow {
  background: var(--pc-color);
  color: white;
  border-color: var(--pc-color);
  transform: translate(2px, -2px);
}

/* ============================================================
   Why grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: white;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-grid .why-cell:nth-child(3n) { border-right: 0; }
.why-grid .why-cell:nth-last-child(-n+3) { border-bottom: 0; }
@media (max-width: 900px) {
  .why-grid .why-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .why-grid .why-cell:nth-child(2n) { border-right: 0; }
  .why-grid .why-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .why-grid .why-cell { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .why-grid .why-cell:last-child { border-bottom: 0 !important; }
}

.why-cell .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--c-erp-50);
  color: var(--c-erp);
  display: grid; place-items: center;
}
.why-cell:nth-child(2) .icon { background: var(--c-crm-50); color: var(--c-crm); }
.why-cell:nth-child(3) .icon { background: var(--c-consult-50); color: var(--c-consult); }
.why-cell:nth-child(4) .icon { background: var(--c-site-50); color: var(--c-site); }
.why-cell:nth-child(5) .icon { background: var(--c-cloud-50); color: var(--c-cloud); }
.why-cell:nth-child(6) .icon { background: var(--c-crm-50); color: var(--c-crm); }
.why-cell h4 {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.why-cell p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--ink);
  color: white;
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
@media (max-width: 760px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 90% 100% at 100% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 100% at 100% 50%, black 0%, transparent 70%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 10px;
  text-wrap: balance;
}
.cta-banner p {
  font-size: 16px;
  color: #B7C0CF;
  margin: 0;
  max-width: 540px;
}
.cta-banner .btn-primary { background: white; color: var(--ink); }
.cta-banner .btn-primary:hover { background: #F2F5FA; }
.cta-banner .btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.2); }
.cta-banner .btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding-top: 72px;
  padding-bottom: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 280px;
}
.footer h5 {
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14.5px;
  color: var(--ink-2);
  transition: color .15s ease;
}
.footer ul a:hover { color: var(--brand); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13.5px;
}

/* ============================================================
   Product page — sub-hero
   ============================================================ */
.sub-hero {
  position: relative;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(48px, 5vw, 72px);
  background:
    radial-gradient(ellipse 70% 60% at 90% 0%, var(--pp-tint, rgba(27,114,232,0.10)), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11,18,32,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 80% at 90% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 90% 0%, black 0%, transparent 70%);
}
.sub-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .sub-hero-inner { grid-template-columns: 1fr; gap: 40px; } }

.sub-hero .product-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.sub-hero .product-mark .pm-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--pp-color, var(--brand));
  color: white;
  display: grid; place-items: center;
}
.sub-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.sub-hero .tagline {
  font-size: 18px;
  color: var(--pp-color, var(--brand));
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.sub-hero .desc {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 520px;
  text-wrap: pretty;
}
.sub-hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* Product visual (right column) */
.product-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 18px;
}
.pv-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.pv-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: #DDE3EC; }
.pv-bar .url {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
}

/* ============================================================
   Features grid (product pages)
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.feature:hover {
  border-color: #C9D6EA;
  box-shadow: var(--shadow-md);
}
.feature .icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--pp-color-50, var(--brand-50));
  color: var(--pp-color, var(--brand));
  display: grid; place-items: center;
}
.feature h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}
.feature p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   Benefits split
   ============================================================ */
.benefits-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .benefits-split { grid-template-columns: 1fr; gap: 32px; } }

.benefits-side h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
  text-wrap: balance;
}
.benefits-side p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  max-width: 360px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.benefits-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 4px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.benefits-list li:last-child { border-bottom: 0; }
.benefits-list .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand);
  font-weight: 500;
}
.benefits-list .check {
  display: inline-flex;
  width: 22px; height: 22px;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: 50%;
  align-items: center; justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}
.benefits-list .label {
  display: inline-flex;
  align-items: center;
}

/* ============================================================
   Pricing table
   ============================================================ */
.pricing-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row .pr-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-row .pr-name b {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pricing-row .pr-name span {
  font-size: 13.5px;
  color: var(--muted);
}
.pricing-row .pr-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-row .pr-price b {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.pricing-row .pr-price span {
  font-size: 12.5px;
  color: var(--muted-2);
  font-family: var(--font-mono);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 16px;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .contact-split { grid-template-columns: 1fr; gap: 40px; } }

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.field label .req { color: var(--brand); margin-left: 2px; }
.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  width: 100%;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6675' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field input:hover,
.field textarea:hover,
.field select:hover { border-color: #C9D6EA; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(27, 114, 232, 0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }

.field-help {
  font-size: 12.5px;
  color: var(--muted-2);
}
.field-error {
  font-size: 12.5px;
  color: #DC2626;
  display: none;
}
.field.has-error input,
.field.has-error textarea,
.field.has-error select { border-color: #DC2626; }
.field.has-error .field-error { display: block; }

.consent-note {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  grid-column: 1 / -1;
}
.consent-note a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

.form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-actions .meta {
  font-size: 12.5px;
  color: var(--muted-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.form-actions .meta svg { color: var(--brand); }

.form-success {
  display: none;
  text-align: center;
  padding: 16px 8px 8px;
}
.form-success .icon {
  width: 64px; height: 64px;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.form-success p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
}
.contact-form.is-sent .form-grid,
.contact-form.is-sent .form-actions { display: none; }
.contact-form.is-sent .form-success { display: block; }

.btn[disabled],
.btn.is-loading { opacity: 0.6; pointer-events: none; }

/* Contact info card */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 26px;
}
.info-card h4 {
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  font-weight: 500;
  margin: 0 0 14px;
}
.info-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.info-card li { display: grid; grid-template-columns: 36px 1fr; align-items: start; gap: 6px; }
.info-card li .ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--brand-50);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-card li b {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
  display: block;
}
.info-card li span {
  font-size: 13.5px;
  color: var(--muted);
  display: block;
}
.info-card li a { color: var(--ink); }
.info-card li a:hover { color: var(--brand); }

.info-hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  font-size: 13.5px;
}
.info-hours .d { color: var(--ink-2); }
.info-hours .t { color: var(--muted); font-family: var(--font-mono); }

/* ============================================================
   Trust Center hub
   ============================================================ */
.tc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .tc-grid { grid-template-columns: 1fr; } }

.tc-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  position: relative;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.tc-card:hover {
  border-color: #C9D6EA;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tc-card .icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--brand-50);
  color: var(--brand);
  display: grid; place-items: center;
}
.tc-card .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.tc-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.tc-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  flex-grow: 1;
}
.tc-card .tc-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  margin-top: 4px;
}
.tc-card:hover .tc-read .arrow { transform: translateX(2px); }
.tc-card .arrow { transition: transform .15s ease; }

.tc-meta-bar {
  margin-top: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
@media (max-width: 700px) { .tc-meta-bar { grid-template-columns: 1fr; text-align: left; } }
.tc-meta-bar .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand);
  display: grid; place-items: center;
}
.tc-meta-bar b {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.tc-meta-bar span {
  font-size: 13.5px;
  color: var(--muted);
}

/* ============================================================
   Legal / Trust Center document pages
   ============================================================ */
.doc-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(32px, 4vw, 48px);
}
.doc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 18px;
  font-family: var(--font-mono);
}
.doc-breadcrumb a { color: var(--brand); }
.doc-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 2px; }
.doc-breadcrumb svg { color: var(--muted-2); }

.doc-hero h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
  max-width: 820px;
}
.doc-hero .doc-sub {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0;
  max-width: 720px;
  text-wrap: pretty;
}
.doc-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.doc-meta b { color: var(--ink-2); font-weight: 600; }
.doc-meta .sep { color: var(--line); }

.doc-body-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 96px);
}
.doc-body-grid:not(:has(.doc-toc)) {
  grid-template-columns: 1fr;
}
.doc-body-grid:not(:has(.doc-toc)) .prose {
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 980px) { .doc-body-grid { grid-template-columns: 1fr; gap: 32px; } }

.doc-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 8px;
}
@media (max-width: 980px) {
  .doc-toc {
    position: static;
    max-height: none;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 20px;
  }
}
.doc-toc h5 {
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  font-weight: 500;
  margin: 0 0 14px;
}
.doc-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: tocnum;
}
.doc-toc li {
  counter-increment: tocnum;
}
.doc-toc a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -14px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.4;
  transition: color .15s ease, border-color .15s ease;
}
.doc-toc a::before {
  content: counter(tocnum, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted-2);
  flex-shrink: 0;
}
.doc-toc a:hover,
.doc-toc a.is-active {
  color: var(--ink);
  border-color: var(--brand);
}
.doc-toc a.is-active { color: var(--brand); font-weight: 600; }

/* Prose */
.prose {
  max-width: 780px;
  min-width: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.prose > * + * { margin-top: 16px; }
.prose h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 56px 0 14px;
  scroll-margin-top: 100px;
  line-height: 1.2;
  text-wrap: balance;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 32px 0 10px;
  scroll-margin-top: 100px;
}
.prose h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 6px;
  letter-spacing: -0.005em;
}
.prose p { margin: 0 0 16px; text-wrap: pretty; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul,
.prose ol {
  margin: 8px 0 16px;
  padding-left: 0;
  list-style: none;
}
.prose ul li,
.prose ol li {
  position: relative;
  padding-left: 22px;
  margin: 6px 0;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.prose ol { counter-reset: list; }
.prose ol li {
  counter-increment: list;
  padding-left: 30px;
}
.prose ol li::before {
  content: counter(list) ".";
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
  top: 1px;
}
.prose a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  word-break: break-word;
}
.prose a:hover { text-decoration-thickness: 2px; }
.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

.prose .doc-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
.prose table.doc-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}
.prose table.doc-table th,
.prose table.doc-table td {
  padding: 13px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.prose table.doc-table th {
  background: var(--bg-2);
  color: var(--ink);
  font-weight: 700;
}
.prose table.doc-table td {
  color: var(--ink-2);
}
.prose table.doc-table tbody tr:nth-child(even) td {
  background: #FFFEFC;
}
.prose table.doc-table th:last-child,
.prose table.doc-table td:last-child {
  border-right: 0;
}
.prose table.doc-table tbody tr:last-child td {
  border-bottom: 0;
}
.prose table.doc-table a {
  word-break: break-word;
}

/* Key-value table for company-detail blocks rendered as definition list */
.prose dl.kv {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin: 20px 0 24px;
  overflow: hidden;
}
@media (max-width: 600px) { .prose dl.kv { grid-template-columns: 1fr; } }
.prose dl.kv dt,
.prose dl.kv dd {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  margin: 0;
  font-size: 14.5px;
}
@media (max-width: 600px) { .prose dl.kv dt { border-bottom: 0; padding-bottom: 0; } }
.prose dl.kv dt {
  color: var(--muted);
  background: var(--bg-2);
  font-size: 13.5px;
  font-weight: 500;
}
.prose dl.kv dd { color: var(--ink); }
.prose dl.kv > *:nth-last-child(1),
.prose dl.kv > *:nth-last-child(2) { border-bottom: 0; }

.prose .doc-callout {
  background: var(--brand-50);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}
.prose .doc-callout strong { color: var(--brand-700); }
.prose .doc-callout p {
  margin: 8px 0 0;
}

/* ============================================================
   Final CTA (product page)
   ============================================================ */
.final-cta {
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 64px) 24px;
}
.final-cta h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  text-wrap: balance;
}
.final-cta p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SHARKS — "Cápák között" press-feature card (compact)
   ============================================================ */
.sharks {
  padding: clamp(40px, 5vw, 64px) 0 clamp(24px, 3vw, 40px);
}

.sharks-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: stretch;
  gap: clamp(20px, 3vw, 40px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  box-shadow: var(--shadow-sm);
}
.sharks-card:hover {
  border-color: rgba(11,18,32,0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.sharks-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4 / 5;
  align-self: stretch;
}
.sharks-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.sharks-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(11,18,32,0.06);
}

.sharks-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  padding: 4px 0;
}

.sharks-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.sharks-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.14);
}

.sharks-headline {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}
.sharks-headline em {
  font-style: normal;
  background-image: linear-gradient(transparent 78%, rgba(245,158,11,0.32) 78%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.sharks-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-top: 4px;
}
.sharks-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sharks-stat-num {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.sharks-stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
}
.sharks-stat-sep {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.sharks-cta {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  background: var(--bg);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.sharks-card:hover .sharks-cta {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.sharks-cta svg {
  transition: transform .15s ease;
}
.sharks-card:hover .sharks-cta svg {
  transform: translate(2px, -2px);
}

@media (max-width: 880px) {
  .sharks-card {
    grid-template-columns: 180px 1fr;
    grid-template-rows: auto auto;
  }
  .sharks-photo { grid-row: 1 / span 2; }
  .sharks-body { grid-column: 2; }
  .sharks-cta {
    grid-column: 2;
    justify-self: start;
    align-self: start;
    margin-top: 4px;
  }
  .sharks-headline { font-size: 20px; }
  .sharks-stat-num { font-size: 20px; }
}

@media (max-width: 600px) {
  .sharks-card {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 16px;
  }
  .sharks-photo {
    grid-row: 1;
    aspect-ratio: 16 / 10;
  }
  .sharks-photo img { object-position: 50% 25%; }
  .sharks-body { grid-column: 1; }
  .sharks-cta { grid-column: 1; }
  .sharks-stats { gap: 14px 18px; }
  .sharks-stat-sep { display: none; }
}
