/* ============================================================
   ProfCheck — Marketing site
   Brand: OSINT KYC, Due Diligence & Background Checks.
   "We mind the gap to protect you."
   Tokens adapted from the ProfCheck design system.
   ============================================================ */

:root {
  /* Core brand */
  --pc-red:        #C8102E;
  --pc-red-deep:   #A00C24;
  --pc-red-bright: #E31E3A;
  --pc-red-soft:   #FCE8EC;

  --pc-black:      #0B0B0E;
  --pc-ink:        #1A1A1F;
  --pc-graphite:   #2A2A31;
  --pc-white:      #FFFFFF;

  /* Semantic risk tiers (used by the report-card mock) */
  --pc-low:    #3A8F3A;
  --pc-medium: #D89B1F;
  --pc-high:   #E8631A;
  --pc-low-bg:  #E6F1E6;
  --pc-medium-bg: #FBF3DC;
  --pc-high-bg: #FDEDE0;

  /* Neutral scale */
  --pc-gray-50:  #F7F7F8;
  --pc-gray-100: #EEEEF1;
  --pc-gray-200: #DFDFE4;
  --pc-gray-300: #C6C6CE;
  --pc-gray-400: #9B9BA6;
  --pc-gray-500: #6C6C78;
  --pc-gray-600: #4B4B55;
  --pc-gray-700: #34343C;
  --pc-gray-800: #22222A;
  --pc-gray-900: #14141A;

  /* Roles */
  --fg1: var(--pc-black);
  --fg2: var(--pc-gray-600);
  --fg3: var(--pc-gray-500);
  --bg1: var(--pc-white);
  --bg2: var(--pc-gray-50);
  --border: var(--pc-gray-200);
  --divider: var(--pc-gray-100);

  /* Type */
  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  --tracking-tight: -0.02em;
  --tracking-caps:  0.14em;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 2px 4px rgba(11,11,14,.06), 0 1px 2px rgba(11,11,14,.04);
  --shadow-md: 0 8px 24px rgba(11,11,14,.08), 0 2px 6px rgba(11,11,14,.05);
  --shadow-lg: 0 24px 60px rgba(11,11,14,.12), 0 8px 18px rgba(11,11,14,.06);
  --shadow-red: 0 14px 34px rgba(200,16,46,.28);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 220ms;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --nav-h: 76px;
}

/* Hebrew uses Heebo for clean RTL rendering */
html[lang="he"] {
  --font-display: 'Heebo', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Heebo', 'Helvetica Neue', Arial, sans-serif;
  --tracking-tight: 0;
}

/* ---------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg1);
  background: var(--bg1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--pc-red-bright); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------------------------------------- Layout helpers */
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tint { background: var(--bg2); }
.section--dark { background: var(--pc-black); color: var(--pc-white); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--pc-red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--pc-red); display: inline-block;
}
.section--dark .eyebrow { color: var(--pc-red-bright); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: var(--tracking-tight); font-weight: 800; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-top: 18px; }
.section-head p { font-size: clamp(16px, 1.6vw, 19px); color: var(--fg2); margin-top: 18px; line-height: 1.6; }
.section--dark .section-head p { color: var(--pc-gray-300); }
.brand-tagline { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .02em; color: var(--pc-red); }
.brand-tagline svg { width: 18px; height: 18px; color: var(--pc-red); flex-shrink: 0; }


/* ---------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: var(--radius-pill);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--pc-red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--pc-red-bright); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
[dir="rtl"] .btn svg.arrow { transform: scaleX(-1); }

/* ---------------------------------------------------------- Header */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(11,11,14,.05);
}
.nav { width: min(100% - 48px, var(--container-wide)); margin-inline: auto; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.brand .logo-light { display: block; }
.brand .logo-dark { display: none; }
/* On the transparent (over-hero) state, header text is light */
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.86); }
.site-header:not(.scrolled) .brand .logo-light { display: none; }
.site-header:not(.scrolled) .brand .logo-dark { display: block; }
.site-header:not(.scrolled) .lang-toggle { color: #fff; border-color: rgba(255,255,255,.3); }

.nav-links { display: flex; align-items: center; gap: 28px; margin-inline-start: auto; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--fg2);
  position: relative; transition: color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--pc-red); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); color: var(--fg1);
  transition: all var(--dur) var(--ease);
}
.lang-toggle:hover { border-color: var(--pc-red); color: var(--pc-red); }
.lang-toggle svg { width: 15px; height: 15px; opacity: .8; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: currentColor; position: relative; transition: var(--dur);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------------------------------------------------------- Hero */
.hero {
  position: relative; background: var(--pc-black); color: #fff; overflow: hidden;
  padding-block: calc(var(--nav-h) + clamp(56px, 9vw, 110px)) clamp(72px, 10vw, 130px);
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 78% 8%, rgba(200,16,46,.42), transparent 60%),
    radial-gradient(50% 60% at 12% 100%, rgba(190,30,45,.20), transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 30%, #000 30%, transparent 100%);
          mask-image: radial-gradient(75% 75% at 50% 30%, #000 30%, transparent 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__copy { max-width: 640px; }
.hero h1 { font-size: clamp(40px, 6vw, 70px); font-weight: 900; line-height: 1.04; }
.hero h1 .accent { color: var(--pc-red-bright); }
.hero__sub { font-size: clamp(17px, 1.8vw, 20px); color: var(--pc-gray-300); margin-top: 24px; max-width: 560px; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__tagline {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .04em; color: var(--pc-gray-400);
}
.hero__tagline svg { width: 18px; height: 18px; color: var(--pc-red-bright); flex-shrink: 0; }

/* Hero figure wrapper (holds the hero image) */
.hero__figure { position: relative; }

/* ---------------------------------------------------------- Trust strip */
.trust { background: var(--pc-graphite); color: #fff; }
.trust__inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust__item { padding: 28px 22px; text-align: center; border-inline-start: 1px solid rgba(255,255,255,.08); }
.trust__item:first-child { border-inline-start: none; }
.trust__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(26px, 3vw, 34px); color: #fff; }
.trust__num span { color: var(--pc-red-bright); }
.trust__label { font-size: 13.5px; color: var(--pc-gray-300); margin-top: 6px; line-height: 1.4; }

/* ---------------------------------------------------------- Methodology (centerpiece) */
.method__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.method__connector {
  position: absolute; top: 46px; inset-inline: 12%; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--pc-gray-300) 0 7px, transparent 7px 16px);
}
.step { position: relative; z-index: 1; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__badge {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  background: var(--pc-gray-50); border: 1px solid var(--border); color: var(--pc-ink); margin-bottom: 22px;
}
.step__badge svg { width: 30px; height: 30px; }
.step__n { font-family: var(--font-mono); font-size: 13px; color: var(--pc-red); font-weight: 600; letter-spacing: .08em; }
.step h3 { font-size: 22px; font-weight: 800; margin: 6px 0 12px; }
.step p { color: var(--fg2); font-size: 15.5px; line-height: 1.6; }
/* Highlight the human-analyst step */
.step--human { background: linear-gradient(180deg, #fff, var(--pc-red-soft)); border-color: rgba(200,16,46,.28); box-shadow: var(--shadow-md); }
.step--human .step__badge { background: var(--pc-red); border-color: var(--pc-red); color: #fff; box-shadow: var(--shadow-red); }
.step--human .step__tag {
  position: absolute; inset-block-start: -12px; inset-inline-start: 28px;
  background: var(--pc-red); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill);
}

.method__note {
  margin-top: 48px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
  background: var(--pc-black); color: #fff; border-radius: var(--radius-xl); padding: 36px clamp(28px, 4vw, 48px);
  position: relative; overflow: hidden;
}
.method__note::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 120% at 100% 0%, rgba(200,16,46,.35), transparent 60%);
}
.method__note-icon { position: relative; z-index: 1; width: 72px; height: 72px; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: var(--pc-red-bright); }
.method__note-icon svg { width: 36px; height: 36px; }
.method__note-text { position: relative; z-index: 1; }
.method__note-text h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; }
.method__note-text p { color: var(--pc-gray-300); margin-top: 10px; font-size: 16px; line-height: 1.6; max-width: 760px; }

/* ---------------------------------------------------------- Investigate grid */
.invest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.invest-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px 22px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.invest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pc-red); }
.invest-card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--pc-red-soft); color: var(--pc-red); display: grid; place-items: center; margin-bottom: 16px; }
.invest-card__icon svg { width: 24px; height: 24px; }
.invest-card h3 { font-size: 16.5px; font-weight: 700; line-height: 1.25; }
.invest-card p { font-size: 14px; color: var(--fg2); margin-top: 8px; line-height: 1.5; }

/* ---------------------------------------------------------- Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 30px; overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service::before { content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 4px; background: linear-gradient(90deg, var(--pc-red), var(--pc-red-bright)); transform: scaleX(0); transform-origin: inline-start; transition: transform var(--dur) var(--ease); }
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service:hover::before { transform: scaleX(1); }
.service__icon { width: 58px; height: 58px; border-radius: 16px; background: var(--pc-black); color: #fff; display: grid; place-items: center; margin-bottom: 24px; }
.service__icon svg { width: 28px; height: 28px; }
.service h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.service > p { color: var(--fg2); font-size: 15.5px; line-height: 1.6; margin-bottom: 20px; }
.service__list li { position: relative; padding-inline-start: 26px; font-size: 14.5px; color: var(--fg2); margin-bottom: 10px; line-height: 1.45; }
.service__list li::before {
  content: ""; position: absolute; inset-inline-start: 0; inset-block-start: 7px; width: 14px; height: 9px;
  border-inline-start: 2px solid var(--pc-red); border-block-end: 2px solid var(--pc-red);
  transform: rotate(-45deg);
}

/* ---------------------------------------------------------- Deliverables (what you receive) */
.receive { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.receive__list { display: grid; gap: 16px; }
.receive__item { display: grid; grid-template-columns: auto 1fr; gap: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 24px; }
.receive__item-n { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--pc-red); line-height: 1; }
.receive__item h3 { font-size: 17px; font-weight: 700; }
.receive__item p { font-size: 14.5px; color: var(--fg2); margin-top: 5px; line-height: 1.5; }

/* Report mock card */
.report-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.report-card__top { background: var(--pc-black); color: #fff; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; }
.report-card__top h4 { font-size: 15px; font-weight: 700; letter-spacing: .02em; }
.report-card__rating { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-pill); background: rgba(232,99,26,.18); color: #FFB27A; border: 1px solid rgba(232,99,26,.4); }
.report-card__rating .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pc-high); }
.report-card__body { padding: 24px 26px; }
.gauge { display: flex; gap: 8px; margin-bottom: 22px; }
.gauge span { height: 8px; flex: 1; border-radius: 999px; background: var(--pc-gray-200); }
.gauge span.on-low { background: var(--pc-low); }
.gauge span.on-med { background: var(--pc-medium); }
.gauge span.on-high { background: var(--pc-high); }
.report-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-block-end: 1px solid var(--divider); }
.report-row:last-child { border-block-end: none; }
.report-row__label { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--pc-ink); font-weight: 500; }
.report-row__label svg { width: 17px; height: 17px; color: var(--pc-gray-400); }
.pill { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.pill--clear { background: var(--pc-low-bg, #E6F1E6); color: #2f7a2f; }
.pill--flag  { background: var(--pc-high-bg, #FDEDE0); color: #b8521a; }
.pill--info  { background: #E3ECF7; color: #1F5FA8; }
.report-card__src { padding: 16px 26px; background: var(--pc-gray-50); font-family: var(--font-mono); font-size: 12px; color: var(--fg3); display: flex; align-items: center; gap: 9px; }
.report-card__src svg { width: 14px; height: 14px; }

/* ---------------------------------------------------------- Who it's for */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.aud-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.aud-card__icon { width: 50px; height: 50px; border-radius: 14px; border: 1px solid var(--border); background: var(--pc-gray-50); color: var(--pc-red); display: grid; place-items: center; margin-bottom: 18px; }
.aud-card__icon svg { width: 26px; height: 26px; }
.aud-card h3 { font-size: 17px; font-weight: 700; line-height: 1.3; }
.aud-card p { font-size: 14px; color: var(--fg2); margin-top: 8px; line-height: 1.5; }

/* ---------------------------------------------------------- Why ProfCheck (dark) */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-lg); padding: 30px 28px; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.why-card:hover { border-color: rgba(227,30,58,.4); background: rgba(255,255,255,.05); }
.why-card__icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(227,30,58,.14); color: var(--pc-red-bright); display: grid; place-items: center; margin-bottom: 18px; }
.why-card__icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 18px; font-weight: 700; }
.why-card p { color: var(--pc-gray-300); font-size: 14.5px; margin-top: 10px; line-height: 1.6; }

/* ---------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-block-end: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: start; padding: 24px 4px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--fg1); }
.faq-q__icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--pc-red); color: var(--pc-red); display: grid; place-items: center; position: relative; transition: var(--dur); }
.faq-q__icon::before, .faq-q__icon::after { content: ""; position: absolute; background: currentColor; }
.faq-q__icon::before { width: 11px; height: 2px; }
.faq-q__icon::after { width: 2px; height: 11px; transition: transform var(--dur) var(--ease); }
.faq-item.open .faq-q__icon { background: var(--pc-red); color: #fff; }
.faq-item.open .faq-q__icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq-a p { padding: 0 4px 24px; color: var(--fg2); font-size: 15.5px; line-height: 1.65; max-width: 720px; }

/* ---------------------------------------------------------- Contact form */
.contact-section { position: relative; overflow: hidden; }
.contact-section .glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(52% 80% at 82% 0%, rgba(200,16,46,.30), transparent 62%); }
.contact-section .container { position: relative; z-index: 1; }
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.contact__intro h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; margin: 16px 0 16px; }
.contact__intro > p { color: var(--pc-gray-300); font-size: clamp(16px, 1.6vw, 18px); line-height: 1.6; max-width: 460px; }
.contact__details { margin-top: 30px; display: grid; gap: 15px; }
.contact__details li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; }
.contact__details svg { width: 18px; height: 18px; color: var(--pc-red-bright); flex-shrink: 0; }
.contact__details a { color: var(--pc-gray-300); transition: color var(--dur) var(--ease); }
.contact__details a:hover { color: #fff; }
.contact__intro .footer__tagline { margin-top: 28px; }

.contact__form { background: #fff; color: var(--fg1); border-radius: var(--radius-xl); padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--fg2); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 15px; color: var(--fg1);
  background: var(--pc-gray-50); border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--pc-gray-400); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--pc-red); background: #fff; box-shadow: 0 0 0 3px rgba(200,16,46,.12); }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--pc-red); }
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: 13px; color: var(--fg2); line-height: 1.45; margin: 6px 0 20px; cursor: pointer; }
.consent input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--pc-red); flex-shrink: 0; }
.contact__submit { width: 100%; justify-content: center; }
.contact__submit[disabled] { opacity: .65; pointer-events: none; }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; line-height: 1.4; min-height: 1.2em; }
.form-status.is-ok { color: #2f7a2f; }
.form-status.is-err { color: var(--pc-red); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------------------------------------------------------- Hero image */
.hero__media { position: relative; }
.hero__media::before {
  content: ""; position: absolute; inset: -10%; z-index: 0;
  background: radial-gradient(circle at 62% 42%, rgba(200,16,46,.5), transparent 60%);
  filter: blur(26px);
}
.hero__media img {
  position: relative; z-index: 1; width: 100%; height: auto; display: block;
  aspect-ratio: 56 / 67; object-fit: cover;
  border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
}

/* ---------------------------------------------------------- Media bands (text + image) */
.media-band {
  display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(36px, 5vw, 72px);
  align-items: center; margin-bottom: clamp(44px, 5vw, 68px);
}
.media-band .section-head { margin-bottom: 0; }
.media-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: var(--bg2);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame::after {
  content: ""; position: absolute; inset-block-end: 0; inset-inline-start: 0;
  width: 72px; height: 4px; background: linear-gradient(90deg, var(--pc-red), var(--pc-red-bright));
}
.section--dark .media-frame { border: 1px solid rgba(255,255,255,.10); }
.media-frame--wide { aspect-ratio: 16 / 9; }

/* About / founders photo (centered in the About section) */
.about-photo { margin: 30px auto 26px; max-width: 560px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-photo img { width: 100%; height: auto; display: block; }
.about-photo::after { content: ""; position: absolute; inset-block-end: 0; inset-inline-start: 0; width: 72px; height: 4px; background: linear-gradient(90deg, var(--pc-red), var(--pc-red-bright)); }

/* Deliverables right column: risk-dial image stacked above the report card */
.receive__visual { display: grid; gap: 20px; align-content: start; }

/* ---------------------------------------------------------- Footer */
.footer { background: var(--pc-black); color: var(--pc-gray-300); padding-block: clamp(56px, 7vw, 84px) 34px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer__brand img { height: 32px; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; line-height: 1.6; max-width: 320px; color: var(--pc-gray-400); }
.footer__tagline { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .04em; color: var(--pc-gray-400); }
.footer__tagline svg { width: 16px; height: 16px; color: var(--pc-red-bright); }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: var(--pc-gray-300);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer__social a:hover { background: var(--pc-red); border-color: var(--pc-red); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { font-family: var(--font-display); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--pc-gray-500); margin-bottom: 18px; }
.footer__col li { margin-bottom: 12px; }
.footer__col a, .footer__contact a { color: var(--pc-gray-300); font-size: 14.5px; transition: color var(--dur) var(--ease); }
.footer__col a:hover, .footer__contact a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; font-size: 14.5px; }
.footer__contact svg { width: 16px; height: 16px; color: var(--pc-red-bright); flex-shrink: 0; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: 13px; color: var(--pc-gray-500); }

/* ---------------------------------------------------------- Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------- Responsive */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__figure { display: none; }
  .invest-grid { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .receive { grid-template-columns: 1fr; }
  .method__steps { grid-template-columns: 1fr; }
  .method__connector { display: none; }
  .contact { grid-template-columns: 1fr; }
  .media-band { grid-template-columns: 1fr; gap: 28px; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(-n+2) { border-block-end: 1px solid rgba(255,255,255,.08); }
  .trust__item:nth-child(odd) { border-inline-start: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  /* Keep the CTA in the header but shrink everything so nothing is clipped */
  .nav { width: min(100% - 24px, var(--container-wide)); }
  .nav-actions { gap: 8px; }
  .brand img { height: 34px; }
  .lang-toggle { padding: 7px 11px; font-size: 12.5px; }
  .nav-actions > .btn--primary { padding: 9px 15px; font-size: 13px; }
  .nav-toggle { width: 38px; height: 38px; }
  .site-header.menu-open { background: rgba(255,255,255,.97); backdrop-filter: blur(14px); border-bottom-color: var(--border); }
  .site-header.menu-open .nav-links {
    display: flex; position: absolute; inset-block-start: var(--nav-h); inset-inline: 0;
    flex-direction: column; align-items: flex-start; gap: 4px; padding: 18px 24px 26px;
    background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); margin: 0;
  }
  .site-header.menu-open .nav-links a { color: var(--fg1); font-size: 16px; padding: 10px 0; width: 100%; border-block-end: 1px solid var(--divider); }
  .invest-grid { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .receive__item { grid-template-columns: 1fr; gap: 8px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; justify-content: center; }
}
@media (max-width: 420px) {
  .trust__inner { grid-template-columns: 1fr; }
  .trust__item { border-inline-start: none; border-block-end: 1px solid rgba(255,255,255,.08); }
  /* very small phones: tighten the header so the CTA never clips */
  .brand img { height: 30px; }
  .nav-actions { gap: 6px; }
  .lang-toggle { padding: 6px 9px; font-size: 11.5px; }
  .nav-actions > .btn--primary { padding: 8px 12px; font-size: 12px; }
}
