/* Card Solutions — site styles */

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand (from the logo) */
  --red: #d9161d;
  --navy: #003471;

  --ink: #0c1a2e;
  --ink-2: #1b2a41;
  --body: #4a5a70;
  --muted: #74839a;
  --line: #e4e9f0;
  --line-2: #d5dde8;
  --tint: #f5f7fa;
  --white: #fff;

  --dark: #061a36;
  --dark-2: #0a2548;
  --dark-line: rgba(255, 255, 255, .1);
  --dark-body: #a9b8cf;

  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --header-h: 76px;
  --gutter: clamp(20px, 4.5vw, 48px);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { color: var(--ink); margin: 0; font-weight: 700; letter-spacing: -.025em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 1.25em; height: 1.25em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--white); padding: 10px 16px; border-radius: 8px; text-decoration: none;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid #2f6fe0; outline-offset: 3px; border-radius: 4px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font: 600 15.5px/1 var(--font); letter-spacing: -.005em;
  padding: 16px 24px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn .icon { width: 17px; height: 17px; stroke-width: 2; transition: transform .2s ease; }
.btn:hover .icon { transform: translateX(3px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--navy); }
.btn-link { color: var(--ink); padding-inline: 8px; }
.btn-link::after { content: ""; display: block; width: 0; }
.btn-link:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.btn-sm { padding: 12px 20px; font-size: 14.5px; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* Eyebrow */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  color: var(--red); font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 176px; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a:not(.btn) {
  color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: 15px;
  padding: 8px 14px; border-radius: 999px; transition: color .15s ease, background-color .15s ease;
}
.site-nav a:not(.btn):hover { color: var(--ink); background: var(--tint); }
.site-nav .btn { margin-left: 12px; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 0;
  width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ink); cursor: pointer;
}
.nav-toggle .icon { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; margin-right: -8px; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 24px; background: var(--white);
    border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px -20px rgba(12, 26, 46, .18);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 15px 0; font-size: 17px; border-radius: 0; border-bottom: 1px solid var(--line); }
  .site-nav a:not(.btn):hover { background: none; }
  .site-nav .btn { margin: 20px 0 0; padding-block: 16px; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 520px at 78% 30%, #eaf0f9 0%, rgba(234, 240, 249, 0) 70%),
    linear-gradient(#fbfcfe, #fff);
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
  padding-block: clamp(48px, 7vw, 96px) clamp(40px, 5vw, 64px);
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  padding: 7px 14px 7px 12px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--white);
  margin-bottom: 28px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(217, 22, 29, .12); }
.hero h1 {
  font-size: clamp(40px, 5.2vw, 68px); line-height: 1.04; letter-spacing: -.04em; font-weight: 750;
}
.hero h1 .nowrap { white-space: nowrap; }
.hero h1 em { font-style: normal; color: var(--navy); }
.hero .lead { font-size: clamp(17px, 1.5vw, 19.5px); line-height: 1.6; margin: 28px 0 40px; max-width: 32em; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; overflow: visible; }
.hero-art text { font-family: var(--font); }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 520px; margin: 0 auto; width: 100%; }
}

/* Partner strip */
.partners-strip { border-top: 1px solid var(--line); padding-block: 36px 48px; }
.strip-label { text-align: center; font-size: 13.5px; font-weight: 500; color: var(--muted); margin-bottom: 28px; }
.logo-row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: center; gap: 24px 40px; }
.logo-row a { display: flex; align-items: center; justify-content: center; height: 44px; opacity: .62; transition: opacity .2s ease; }
.logo-row a:hover { opacity: 1; }
.logo-row img { width: auto; max-width: 100%; max-height: 100%; }
/* optical sizing: tuned so each mark carries similar visual weight */
.logo-row img[alt="VALID"] { height: 24px; }
.logo-row img[alt="Infobip"] { height: 26px; }
.logo-row img[alt="DCOM"] { height: 34px; }
.logo-row img[alt="CyberFace"] { height: 30px; }
.logo-row img[alt="Visual Counter"] { height: 22px; }
.logo-row img[alt="Cyber4All"] { height: 42px; }
@media (max-width: 900px) { .logo-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 24px; } }

/* Sections */
.section { padding-block: clamp(80px, 10vw, 136px); }
.section-tint { background: var(--tint); }
.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head-split {
  max-width: none; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 24px clamp(40px, 6vw, 96px); align-items: end;
}
.section-title { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; letter-spacing: -.03em; }
.section-sub { font-size: 17px; color: var(--body); margin: 0; }
@media (max-width: 860px) { .section-head-split { grid-template-columns: 1fr; } }

/* About */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr); gap: 32px clamp(40px, 7vw, 112px); align-items: start; }
.statement { font-size: clamp(26px, 3vw, 38px); line-height: 1.22; letter-spacing: -.025em; font-weight: 600; }
.about-body { padding-top: 8px; font-size: 17px; }
.stats {
  margin: clamp(56px, 7vw, 96px) 0 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.stats > div { padding: 28px 24px 0 0; }
.stats > div + div { padding-left: 28px; border-left: 1px solid var(--line); }
.stats dd { margin: 0; order: -1; font-size: clamp(40px, 4.4vw, 58px); font-weight: 700; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.stats dt { font-size: 14.5px; color: var(--muted); margin-top: 12px; }
.stats > div { display: flex; flex-direction: column; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .stats > div:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 28px; }
}

/* Dark sections */
.section-dark {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(40, 96, 190, .28), transparent 70%),
    var(--dark);
  color: var(--dark-body);
}
.section-dark .section-title, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: #ff6b70; }

/* Industries */
.industry-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
}
.industry-grid li { padding: 36px 28px 8px 0; }
.industry-grid li + li { padding-left: 28px; border-left: 1px solid var(--dark-line); }
.industry-grid .icon { width: 30px; height: 30px; color: #8db4f5; stroke-width: 1.4; margin-bottom: 28px; }
.industry-grid h3 { font-size: 18px; letter-spacing: -.015em; margin-bottom: 10px; line-height: 1.3; }
.industry-grid p { font-size: 15px; line-height: 1.6; }
@media (max-width: 1000px) {
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 0; }
  .industry-grid li, .industry-grid li + li { padding: 28px 24px 28px 0; border-left: 0; border-top: 1px solid var(--dark-line); }
  .industry-grid li:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--dark-line); }
}
@media (max-width: 560px) {
  .industry-grid { grid-template-columns: 1fr; }
  .industry-grid li:nth-child(even) { padding-left: 0; border-left: 0; }
  .industry-grid li, .industry-grid li + li { display: grid; grid-template-columns: 44px 1fr; column-gap: 16px; padding: 24px 0; }
  .industry-grid .icon { grid-row: span 2; margin: 2px 0 0; width: 28px; height: 28px; }
}

/* Solutions */
.solution-list { border-top: 1px solid var(--line); }
.solution {
  display: grid; grid-template-columns: 80px minmax(0, 1fr) 280px; gap: 24px; align-items: center;
  padding: 34px 0; border-bottom: 1px solid var(--line);
  transition: background-color .2s ease;
}
.solution-num { font-size: 14px; font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; align-self: start; padding-top: 6px; }
.solution h3 { font-size: clamp(21px, 2vw, 26px); letter-spacing: -.02em; margin-bottom: 6px; }
.solution p { font-size: 16.5px; max-width: 36em; }
.solution-partner { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.solution-partner span { font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.solution-partner img { height: 26px; width: auto; max-width: 150px; opacity: .8; }
.solution-partner img[alt="VALID"] { height: 22px; }
.solution-partner img[alt="DCOM"] { height: 30px; }
.solution-partner img[alt="Cyber4All"] { height: 38px; }
.solution-partner img[alt="Visual Counter"] { height: 20px; }
.solution-partner img[alt="Infobip"] { height: 24px; }
@media (max-width: 860px) {
  .solution { grid-template-columns: 48px minmax(0, 1fr); row-gap: 18px; padding: 28px 0; }
  .solution-partner { grid-column: 2; justify-content: flex-start; }
}

/* Leadership */
.leader { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(40px, 7vw, 112px); align-items: start; }
.leader-id {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
  box-shadow: 0 1px 2px rgba(12, 26, 46, .04), 0 12px 32px -12px rgba(12, 26, 46, .12);
}
.monogram {
  display: grid; place-items: center; width: 96px; height: 96px; border-radius: 50%;
  background: var(--tint); border: 1px solid var(--line); margin-bottom: 24px;
}
.leader-name { font-size: 21px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; margin-bottom: 2px; }
.leader-role { font-size: 15px; color: var(--muted); }
.leader-facts { margin: 24px 0 0; padding-top: 8px; border-top: 1px solid var(--line); }
.leader-facts > div { padding-top: 14px; }
.leader-facts dt { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.leader-facts dd { margin: 2px 0 0; font-size: 15px; font-weight: 500; color: var(--ink); }
.leader-body .section-title { margin-bottom: 28px; }
.leader-body p:not(.eyebrow) { max-width: 40em; }
@media (max-width: 860px) {
  .leader { grid-template-columns: 1fr; }
  .leader-id { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; padding: 20px; order: 2; }
  .leader-facts { flex-basis: 100%; margin-top: 0; }
  .monogram { width: 64px; height: 64px; margin: 0; flex: none; }
  .monogram img { width: 38px; }
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(40px, 7vw, 112px); align-items: start; }
.contact-copy > p:not(.eyebrow) { font-size: 18px; margin-top: 20px; }
.checklist { margin-top: 36px; display: grid; gap: 16px; padding-top: 32px; border-top: 1px solid var(--dark-line); }
.checklist li { display: flex; align-items: center; gap: 14px; color: var(--white); font-size: 16px; }
.checklist .icon { color: #6fd6a3; width: 20px; height: 20px; stroke-width: 2.2; }

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px;
  background: var(--white); border-radius: 18px; padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; }
.field .optional { font-weight: 400; color: var(--muted); font-size: 13px; }
.field input, .field textarea {
  font: 16px/1.4 var(--font); color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-2); border-radius: 10px; background: #fbfcfd;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.field input:hover, .field textarea:hover { border-color: #b9c5d6; }
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus { outline: none; background: var(--white); border-color: var(--navy); box-shadow: 0 0 0 4px rgba(0, 52, 113, .1); }
.field .is-invalid { border-color: var(--red); background: #fff8f8; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 20px; margin-top: 4px; }
.form-status { margin: 0; font-size: 15px; font-weight: 500; }
.form-status.is-success { color: #137a45; }
.form-status.is-error { color: var(--red); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .contact-form { grid-template-columns: 1fr; } .form-footer .btn { width: 100%; } }

/* Footer */
.site-footer { background: #04132a; color: #7f91ab; padding-block: 40px; font-size: 14px; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 40px; }
.footer-inner > img { width: 156px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 26px; }
.footer-nav a { color: #c3cfdf; text-decoration: none; transition: color .15s ease; }
.footer-nav a:hover { color: var(--white); }
.copyright { margin: 0; }

.not-found-title { margin-top: 48px; }
