:root {
  --bg: #eef3fa;
  --bg-soft: #e3eaf5;
  --paper: #ffffff;
  --ink: #0d1f39;
  --muted: #3b5277;
  --line: #b9c9df;
  --line-strong: #93aac8;
  --brand: #124f99;
  --brand-2: #0b7390;
  --brand-3: #113d71;
  --ok: #147151;
  --danger: #b23a3a;
  --container: 1160px;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 24px 48px rgba(16, 35, 63, 0.11);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(15, 92, 168, 0.45);
  outline-offset: 2px;
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(18, 79, 153, 0.18);
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, #deeaf8 0%, #eef4fc 100%);
  box-shadow: 0 12px 26px rgba(16, 35, 63, 0.10);
}

.header-topline {
  border-bottom: 0;
  background: linear-gradient(90deg, #0d3567 0%, #0b5c78 100%);
}

.header-topline-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
}

.header-topline-links {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-topline-links a {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  transition: background 0.15s;
}

.header-topline-links a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 128px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.25rem 0.35rem;
}

.brand > span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-logo {
  width: 134px;
  height: 134px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #123761;
}

.brand-tag {
  color: #7a9cc0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.24rem;
  padding: 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 79, 153, 0.2);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 8px 16px rgba(16, 35, 63, 0.1);
}

.nav a {
  color: #2f537f;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.4rem 0.62rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: #11365f;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(16, 35, 63, 0.08);
}

.nav a[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 14px rgba(15, 92, 168, 0.28);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  color: var(--ink);
  font-weight: 700;
  padding: 0.5rem 0.65rem;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.header-cta {
  display: inline-flex;
  min-width: 0;
  justify-content: flex-end;
  flex-shrink: 0;
}

.header-cta .btn {
  padding: 0.52rem 1.1rem;
  font-size: 0.84rem;
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.78rem 1.05rem;
  transition: transform 0.18s ease, filter 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid rgba(15, 92, 168, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(15, 92, 168, 0.2);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: #f9fbfe;
}

.btn-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero {
  padding: 5.1rem 0 3.8rem;
  background:
    radial-gradient(1100px 650px at 4% -8%, rgba(10, 35, 72, 0.95), transparent 58%),
    radial-gradient(700px 400px at 98% 8%, rgba(8, 88, 120, 0.45), transparent 55%),
    linear-gradient(180deg, #0c1829 0%, #0e2245 82%, #eef3fa 82%, #eef3fa 100%);
  color: #eef5ff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 999px;
  padding: 0.36rem 0.75rem;
  color: var(--brand-3);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero .kicker {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(230, 245, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.hero h1 {
  color: #f0f8ff;
  text-shadow: 0 4px 28px rgba(0, 5, 15, 0.45);
}

.hero p {
  color: rgba(220, 238, 255, 0.85);
}

.hero .hero-points li {
  color: rgba(210, 235, 255, 0.88);
}

.hero .btn-secondary {
  color: rgba(220, 242, 255, 0.92);
  border-color: rgba(200, 225, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(200, 225, 255, 0.6);
}

.hero .trust-strip span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(200, 225, 255, 0.28);
  color: rgba(210, 235, 255, 0.92);
}

.hero .stat {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 225, 255, 0.2);
}

.hero .stat strong {
  color: #d4eaff;
}

.hero .stat span {
  color: rgba(190, 218, 255, 0.75);
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

h1 {
  margin: 0.8rem 0;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.64;
  max-width: 68ch;
}

.hero-points {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: #2f537f;
  font-weight: 600;
  line-height: 1.5;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.hero-card {
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-top: -0.2rem;
  transform: none;
  transform-origin: center;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(0, 8, 24, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.trust-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.trust-strip span {
  border: 1px solid #c7d6ea;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.56rem 0.85rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2b4d77;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 0.75rem;
}

.stat strong {
  display: block;
  font-size: 1.06rem;
  color: var(--brand-3);
}

.stat span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.section {
  padding: 4.4rem 0;
}

.section + .section {
  border-top: 1px solid rgba(184, 200, 223, 0.38);
}

.section-solid {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
  padding: 4.6rem 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.section-title img {
  width: 30px;
  height: 30px;
}

h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.01em;
}

.lead {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 78ch;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid #c9d8ec;
  border-radius: 18px;
  background: #ffffff;
  padding: 1.22rem;
  box-shadow: 0 18px 34px rgba(16, 35, 63, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 52px rgba(16, 35, 63, 0.14);
}

.card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.card p {
  margin: 0.56rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.card li {
  margin: 0.25rem 0;
}

.deployment-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(16, 35, 63, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #7eb0e4, #8ddbc9);
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(16, 35, 63, 0.14);
  border-color: #aac4e4;
}

.plan-card-featured {
  border-color: #79a8de;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  box-shadow: 0 18px 34px rgba(16, 35, 63, 0.15);
  transform: translateY(-6px);
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.plan-top h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.plan-label {
  border: 1px solid var(--line);
  background: #eef5ff;
  color: #264a77;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.55rem;
  white-space: nowrap;
}

.plan-price {
  margin-top: 0.25rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  color: #173a63;
  letter-spacing: -0.01em;
}

.plan-price span {
  margin-left: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #56749d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.plan-card ul {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
}

.plan-card li {
  margin: 0.45rem 0;
  color: #476287;
  position: relative;
  padding-left: 1.1rem;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.package-grid {
  align-items: stretch;
}

.plan-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--brand-3);
  padding-top: 0.25rem;
}

.plan-link::after {
  content: "->";
  font-size: 0.85rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 0.82rem;
  color: var(--brand-3);
  font-weight: 700;
  padding: 0.32rem 0.62rem;
}

.checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  margin: 0.58rem 0;
  padding-left: 1.65rem;
  color: var(--muted);
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.process {
  counter-reset: step;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.process li {
  margin: 0.9rem 0;
  padding: 0.85rem 0.95rem 0.85rem 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  position: relative;
  color: var(--muted);
  line-height: 1.6;
}

.process li strong {
  color: var(--ink);
}

.process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 0.8rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.diagram {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
}

.section-art img {
  width: 100%;
  border-radius: var(--radius);
}


.section-visual {
  margin-top: 1.2rem;
}

.section-visual img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}

.section-visual-compact img {
  max-width: 860px;
  margin: 0 auto;
}

.image-brief {
  min-height: 220px;
  border: 1px dashed #86a9cf;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.96)),
    repeating-linear-gradient(135deg, rgba(15, 92, 168, 0.04) 0 18px, rgba(11, 125, 150, 0.06) 18px 36px);
  padding: 1rem 1.05rem;
  box-shadow: 0 12px 28px rgba(16, 35, 63, 0.08);
}

.image-brief-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  border: 1px solid #bfd4ea;
  border-radius: 999px;
  background: #ffffff;
  color: #2e557f;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.3rem 0.58rem;
}

.image-brief h3 {
  margin: 0.8rem 0 0;
  font-size: 1.1rem;
  color: #123761;
}

.image-brief p {
  margin: 0.55rem 0 0;
  color: #3d5f89;
  line-height: 1.62;
}

.image-brief-prompt {
  font-size: 0.94rem;
}

.image-brief-meta {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.image-brief-meta li {
  border-top: 1px solid rgba(134, 169, 207, 0.35);
  padding-top: 0.5rem;
  color: #3d5f89;
  line-height: 1.58;
}

.image-brief-meta strong {
  color: #153964;
}

.image-brief-compact {
  min-height: 180px;
}

.note {
  margin-top: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #f0f7ff;
  padding: 0.8rem 0.9rem;
  color: var(--brand-3);
  line-height: 1.5;
}

form {
  margin-top: 1.2rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #304f76;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  padding: 0.66rem 0.72rem;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(15, 92, 168, 0.22);
  border-color: var(--brand);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.75rem;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.checkbox input {
  width: auto;
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.form-stepper {
  display: inline-flex;
  gap: 0.48rem;
  margin-bottom: 0.95rem;
  flex-wrap: wrap;
}

.step-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f3f8ff;
  color: #49698f;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.62rem;
}

.step-pill.is-active {
  background: #ffffff;
  color: #123761;
  border-color: #9fbbe0;
  box-shadow: 0 4px 10px rgba(16, 35, 63, 0.08);
}

[data-step="2"].is-hidden {
  display: none !important;
}

.form-stage-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.form-stage-hint {
  font-size: 0.84rem;
  color: #55739c;
}

.form-state {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-state.ok {
  color: var(--ok);
}

.form-state.err {
  color: var(--danger);
}

.fieldset-clean {
  border: 0;
  padding: 0;
  margin: 0;
}

.form-advanced {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.8rem 0.9rem;
}

.form-advanced summary {
  cursor: pointer;
  font-weight: 700;
  color: #254b78;
}

.form-advanced-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legend-clean {
  font-size: 0.88rem;
  font-weight: 700;
  color: #304f76;
  margin-bottom: 0.5rem;
}

.faq {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 0.75rem 0.85rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  margin-top: 4rem;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #0d3567 0%, #0b5c78 100%) 1;
  background:
    radial-gradient(900px 300px at 10% 0%, rgba(22, 58, 110, 0.45), rgba(22, 48, 85, 0) 65%),
    linear-gradient(180deg, #0e1f3a 0%, #080f1e 100%);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 0;
}

.footer-shell-compact {
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem 1.4rem;
  align-items: center;
  padding-top: 1.35rem;
  padding-bottom: 0.95rem;
}

.footer-brandline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #274a75;
}

.footer-brandline strong {
  display: block;
  font-size: 1.05rem;
  color: #153964;
}

.footer-sub {
  font-size: 0.84rem;
  color: #53759e;
}

.footer-shell-rich {
  display: grid;
  align-items: start;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem 0;
  padding-top: 2rem;
  padding-bottom: 1.4rem;
  position: relative;
}

.footer-shell-rich::before {
  content: none;
}

.footer-nav-col,
.footer-offer {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 1.6rem;
}

.footer-company {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  flex-wrap: wrap;
  min-width: 0;
  color: #d2e0f5;
  line-height: 1.45;
}

.footer-company p {
  display: block;
  margin: 0.22rem 0 0;
  max-width: 44ch;
  color: #adc1df;
  font-size: 0.84rem;
}

.footer-company strong {
  font-size: 1.04rem;
  color: #f3f8ff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer-logo {
  width: 134px;
  height: 134px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  margin-bottom: 0.3rem;
  background: transparent;
  box-shadow: none;
}

.footer-contact {
  margin-top: 0.48rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
  font-size: 0.82rem;
}

.footer-contact a {
  color: #d5e6ff;
  font-weight: 700;
  border: 1px solid rgba(168, 194, 230, 0.35);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.52rem;
  border-radius: 999px;
}

.footer-contact span {
  color: #9cb4d3;
  align-self: center;
}

.footer-links {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  max-width: none;
}

.footer-links-compact {
  justify-content: center;
}

.footer-links a {
  color: #3f628f;
  font-weight: 700;
  border: 1px solid #c9d9ee;
  background: rgba(255, 255, 255, 0.66);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.footer-links a:hover {
  color: #153b6a;
  border-color: #97b7de;
  background: #ffffff;
}

.footer-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 0.8rem;
}

.footer-actions .btn {
  flex: 1 1 0;
  text-align: center;
  min-width: 100px;
}

.footer-heading {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9ab6da;
  margin: 0 0 0.45rem;
}

.footer-nav-col,
.footer-offer {
  display: block;
  min-width: 0;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
  align-items: start;
}

.footer-list li {
  margin: 0;
  padding: 0;
  color: #c9d9ef;
  line-height: 1.35;
  font-size: 0.84rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  white-space: normal;
}

.footer-nav-col .footer-list li a {
  color: #d8e8ff;
  font-weight: 700;
  transition: color 0.15s;
}

.footer-nav-col .footer-list li a:hover {
  color: #ffffff;
}

.footer-cta {
  width: auto;
  min-width: 122px;
  padding-inline: 0.8rem;
  min-height: 38px;
  font-size: 0.82rem;
}

.footer-meta {
  padding-top: 0.75rem;
  padding-bottom: 1rem;
  color: #7a97b8;
  font-size: 0.78rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.15);
}

.footer-meta-compact {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.footer-meta a {
  color: #d8e8ff;
}

.footer-shell-home-simple {
  gap: 1rem;
}


.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HOME PAGE — ENHANCED REDESIGN 2026
   ============================================ */

.page-home {
  background: #edf2f9;
}

.page-home .home-simple-hero {
  padding-top: 5.2rem;
  padding-bottom: 4.4rem;
  min-height: auto;
  background:
    radial-gradient(1000px 560px at 4% -8%, rgba(10, 35, 72, 0.92), transparent 58%),
    radial-gradient(620px 340px at 98% 12%, rgba(8, 88, 120, 0.32), transparent 56%),
    linear-gradient(180deg, #0c1829 0%, #0e2245 68%, #edf2f9 68%, #edf2f9 100%);
}

.page-home .home-simple-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.4rem;
  align-items: center;
}

.page-home .home-simple-hero-copy {
  color: #eef5ff;
  padding-bottom: 1rem;
}

.page-home .home-simple-hero h1 {
  color: #f0f8ff;
  margin-top: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 28px rgba(0, 5, 15, 0.45);
}

.page-home .home-simple-hero p {
  color: rgba(220, 238, 255, 0.9);
  max-width: 44ch;
  font-size: 1.03rem;
  line-height: 1.62;
}

.page-home .home-simple-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
}

.page-home .home-simple-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.64);
}

.page-home .home-simple-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(216, 234, 255, 0.76);
}

.page-home .home-simple-hero-panel {
  display: flex;
  justify-content: flex-end;
}

.page-home .home-simple-panel {
  width: min(100%, 360px);
  border: 1px solid rgba(204, 222, 247, 0.18);
  border-radius: 24px;
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 8, 24, 0.34);
  backdrop-filter: blur(10px);
}

.page-home .home-ai-visual {
  width: 100%;
  margin: 0.9rem 0 1rem;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0, 8, 24, 0.26);
}

.page-home .home-simple-panel-label,
.page-home .home-simple-step {
  margin: 0;
  color: #9fc0e8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .home-simple-section-head {
  max-width: 760px;
}

.page-home .home-simple-section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.page-home .home-simple-section-head p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.page-home .home-simple-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-home .home-simple-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-home .home-simple-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-home .home-simple-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.page-home .home-simple-card {
  border: 1px solid #c9d8ec;
  border-radius: 20px;
  background: #ffffff;
  padding: 1.3rem;
  box-shadow: 0 18px 34px rgba(16, 35, 63, 0.08);
}

.page-home .home-simple-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.page-home .home-simple-card p {
  margin: 0.68rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.page-home .home-simple-card-compact {
  min-height: 100%;
}

.page-home .home-simple-card-compact h3 {
  font-size: 0.98rem;
}

.page-home .home-simple-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.page-home .home-simple-list li {
  position: relative;
  padding-left: 1.2rem;
  color: inherit;
  line-height: 1.5;
}

.page-home .home-simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.page-home .home-simple-actions {
  margin-top: 1.2rem;
}

.page-home .home-simple-contact {
  padding-bottom: 2.8rem;
}

.page-home .home-simple-contact-shell {
  border: 1px solid #c7d6ea;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  padding: 1.6rem;
  box-shadow: 0 18px 34px rgba(16, 35, 63, 0.08);
}

/* ── HERO ───────────────────────────────── */
.page-home .home-hero {
  padding-top: 5rem;
  padding-bottom: 2rem;
  min-height: 640px;
  background:
    radial-gradient(1100px 650px at 4% -8%, rgba(10, 35, 72, 0.95), transparent 58%),
    radial-gradient(700px 400px at 98% 8%, rgba(8, 88, 120, 0.45), transparent 55%),
    linear-gradient(180deg, #0c1829 0%, #0e2245 82%, #edf2f9 82%, #edf2f9 100%);
}

.page-home .home-hero-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.page-home .home-hero-copy {
  color: #eef5ff;
  padding: 0 0 2.5rem 0;
  background: none;
  border: none;
  backdrop-filter: none;
}

.page-home .home-hero .kicker {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(230, 245, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.page-home .home-hero h1 {
  color: #f0f8ff;
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: none;
  text-shadow: 0 4px 28px rgba(0, 5, 15, 0.45);
}

.page-home .home-hero p {
  color: rgba(220, 238, 255, 0.85);
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.58;
  font-weight: 500;
  text-shadow: none;
}

.page-home .home-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  font-weight: 800;
}

.page-home .home-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.75);
}

.page-home .home-hero-media {
  padding-bottom: 0;
}

.page-home .home-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 24px;
  box-shadow:
    0 50px 80px rgba(0, 5, 20, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* ── METRICS ─────────────────────────────── */
.page-home .home-metrics {
  margin-top: 0;
  padding: 1.1rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.page-home .home-metrics article {
  border: 1px solid #c1d0e4;
  border-radius: 16px;
  background: #ffffff;
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.15rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(16, 35, 63, 0.06);
}

.page-home .home-metrics article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}

.page-home .home-metrics article:nth-child(1)::before {
  background: linear-gradient(90deg, #1e5bbf, #3b8ef5);
}

.page-home .home-metrics article:nth-child(2)::before {
  background: linear-gradient(90deg, #0b7390, #0fa9c9);
}

.page-home .home-metrics article:nth-child(3)::before {
  background: linear-gradient(90deg, #127a52, #16a76e);
}

.page-home .home-metrics article:nth-child(4)::before {
  background: linear-gradient(90deg, #6d3bbf, #9b64f0);
}

.page-home .home-metrics strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f315b;
  line-height: 1.2;
}

.page-home .home-metrics span {
  font-size: 0.7rem;
  color: #4f6f9a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

/* ── SECTION HEADS ───────────────────────── */
.page-home .home-section-head {
  margin-bottom: 0.4rem;
}

.page-home .home-section-head p {
  margin: 0;
  color: #476892;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-home .home-section-head h2 {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

/* ── SHOWCASE ────────────────────────────── */
.page-home .home-showcase {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.page-home .home-showcase-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.page-home .home-project {
  border: 1px solid #c2d1e6;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.page-home .home-project:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(16, 35, 63, 0.13);
}

.page-home .home-project img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-home .home-project-copy {
  padding: 0.9rem 1rem 1rem;
}

.page-home .home-project-copy span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #436790;
  background: #eef5ff;
  border: 1px solid #c5d8ee;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.page-home .home-project-copy h3 {
  margin: 0.55rem 0 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #102f59;
}

.page-home .home-project-copy p {
  margin: 0.45rem 0 0;
  color: #3d5c85;
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Featured card: spans both rows in left column */
.page-home .home-project-large {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
}

.page-home .home-project-large img {
  flex: 1;
  min-height: 200px;
  aspect-ratio: unset;
  object-fit: contain;
  object-position: top center;
  background: linear-gradient(135deg, #c4d9ef, #daeaf8);
}



/* ── SERVICES ────────────────────────────── */
.page-home .home-services {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.page-home .home-services-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.page-home .home-service-card {
  border: 1px solid #c0cfe4;
  border-radius: 18px;
  background: #fff;
  padding: 1.3rem 1rem 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.page-home .home-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 18px 18px 0 0;
}

.page-home .home-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(16, 35, 63, 0.13);
  border-color: #a8c4e4;
}

.page-home .home-service-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
}

.page-home .home-service-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.97rem;
  color: #102f59;
  letter-spacing: -0.01em;
}

.page-home .home-service-card p {
  margin: 0;
  color: #3f6089;
  font-size: 0.84rem;
  line-height: 1.55;
}

/* ── PROOF ───────────────────────────────── */
.page-home .home-proof {
  padding: 4rem 0;
  background: #0d1f39;
}

.page-home .home-proof-shell {
  border: none;
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
  align-items: center;
}

.page-home .home-proof-kicker {
  margin: 0;
  color: rgba(160, 200, 255, 0.7);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.page-home .home-proof-shell h2 {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #f0f8ff;
}

.page-home .home-proof-shell ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.page-home .home-proof-shell li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0 0.75rem 2rem;
  color: rgba(200, 225, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
}

.page-home .home-proof-shell li:last-child {
  border-bottom: none;
}

.page-home .home-proof-shell li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e6bf0, #0b9bbf);
  box-shadow: 0 0 12px rgba(30, 107, 240, 0.4);
}

/* ── CTA ─────────────────────────────────── */
.page-home .home-cta {
  padding: 4rem 0 5rem;
}

.page-home .home-cta .container {
  border: none;
  border-radius: 24px;
  background: linear-gradient(135deg, #103a78 0%, #0b6080 100%);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow:
    0 32px 64px rgba(10, 40, 80, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.page-home .home-cta h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #f0f8ff;
}

.page-home .home-cta p {
  margin: 0.55rem auto 0;
  color: rgba(210, 235, 255, 0.82);
  max-width: 60ch;
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-home .home-cta .btn-row {
  justify-content: center;
  margin-top: 1.6rem;
}

.page-home .home-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #f0f8ff;
  border-color: rgba(255, 255, 255, 0.28);
}

.page-home .home-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ── PILL BUTTONS ────────────────────────── */
.page-home .btn {
  border-radius: 999px;
  min-height: 44px;
  padding-inline: 1.1rem;
}

.page-home .btn-primary {
  box-shadow: 0 18px 32px rgba(12, 61, 118, 0.3);
}

.page-home .btn-primary:hover {
  box-shadow: 0 24px 40px rgba(12, 61, 118, 0.32);
}

/* ── STAGGERED REVEAL ────────────────────── */
.home-metrics article:nth-child(1) { transition-delay: 0.04s; }
.home-metrics article:nth-child(2) { transition-delay: 0.09s; }
.home-metrics article:nth-child(3) { transition-delay: 0.14s; }
.home-metrics article:nth-child(4) { transition-delay: 0.19s; }
.home-services-grid .home-service-card:nth-child(1) { transition-delay: 0.04s; }
.home-services-grid .home-service-card:nth-child(2) { transition-delay: 0.09s; }
.home-services-grid .home-service-card:nth-child(3) { transition-delay: 0.14s; }
.home-services-grid .home-service-card:nth-child(4) { transition-delay: 0.19s; }

/* ============================================
   RESPONSIVE
   ============================================ */

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

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deployment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-hero-shell {
    grid-template-columns: 1fr;
  }

  .page-home .home-proof-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-home .home-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-simple-hero-shell,
  .page-home .home-simple-grid-2,
  .page-home .home-simple-grid-3 {
    grid-template-columns: 1fr;
  }

  .page-home .home-simple-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .image-brief {
    min-height: 0;
  }

  .header-topline-inner {
    min-height: 34px;
    font-size: 0.74rem;
  }

  .header-topline-inner > span {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .header-shell {
    flex-wrap: wrap;
    padding: 0.5rem 0;
    min-height: auto;
  }

  .brand-logo {
    width: 130px;
    height: 130px;
  }

  .header-cta {
    display: none;
  }

  .footer-logo {
    width: 110px;
    height: 110px;
  }

  .footer-shell-compact {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brandline {
    grid-column: 1 / -1;
  }

  .footer-shell-rich {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 1.5rem;
    padding-bottom: 0.95rem;
  }

  .footer-nav-col,
  .footer-offer {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-company {
    grid-column: 1 / -1;
    display: block;
  }

  .footer-company p {
    display: block;
    margin-top: 0.5rem;
    max-width: 100%;
    white-space: normal;
    font-size: 0.84rem;
    color: #adc1df;
  }

  .footer-heading {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #335a87;
    margin: 0 0 0.35rem;
  }

  .footer-list {
    display: grid;
    margin: 0;
    gap: 0.3rem;
  }

  .footer-list li {
    font-size: 0.84rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin: 0;
  }

  .footer-nav-col .footer-list li a {
    color: #d8e8ff;
  }

  .nav {
    order: 5;
    width: 100%;
    display: none;
    padding: 0.5rem;
    margin-top: 0.2rem;
    border-radius: 14px;
    box-shadow: none;
  }

  .header[data-open="1"] .nav {
    display: flex;
    flex-wrap: wrap;
  }

  .nav a {
    flex: 1 1 calc(50% - 0.4rem);
    text-align: center;
  }

  .header-cta {
    margin-left: auto;
    min-width: 0;
  }

  .footer-links-compact,
  .footer-actions {
    justify-content: flex-start;
  }

  .grid-2,
  .grid-3,
  .deployment-grid,
  .form-grid,
  .checkbox-grid,
  .form-advanced-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .page-home .home-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .page-home .home-project-large {
    grid-column: 1;
    grid-row: auto;
    display: block;
  }

  .page-home .home-project:not(.home-project-large) {
    grid-column: 1;
  }

  .page-home .home-project-large img {
    flex: unset;
    min-height: unset;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .page-home .home-hero-copy {
    padding-bottom: 0;
  }

  .page-home .home-hero-media {
    padding-bottom: 0;
  }

  .page-home .home-simple-hero-panel {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 1.2rem);
  }

  .hero {
    padding-top: 2.8rem;
  }

  .page-home .home-hero {
    padding-top: 3.6rem;
    background:
      radial-gradient(620px 420px at 5% -8%, rgba(18, 49, 88, 0.34), rgba(18, 49, 88, 0) 60%),
      linear-gradient(180deg, #141f33 0%, #0d1a2c 68%, #ecf2fa 68%, #ecf2fa 100%);
  }

  .page-home .home-metrics,
  .page-home .home-services-grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-proof-shell {
    grid-template-columns: 1fr;
  }

  .page-home .home-cta .container {
    padding: 2rem 1.25rem;
  }

  .page-home .home-simple-hero {
    padding-top: 3.8rem;
    padding-bottom: 3rem;
  }

  .page-home .home-simple-grid-5 {
    grid-template-columns: 1fr;
  }

  .page-home .home-simple-contact-shell {
    padding: 1.25rem;
  }

  .header-topline-links {
    width: 100%;
    justify-content: flex-start;
    gap: 0.45rem;
    flex-wrap: wrap;
  }

  .header-topline-links a {
    flex: 1 1 48%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .btn,
  .header-cta .btn {
    width: 100%;
  }

  .header-cta {
    width: 100%;
  }

  .btn-row,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-stage-actions {
    align-items: stretch;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-shell-compact {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    max-width: none;
  }

  .footer-shell-rich {
    grid-template-columns: 1fr;
  }

  .footer-contact a,
  .footer-links a {
    width: auto;
  }

}

[id] {
  scroll-margin-top: 100px;
}

/* ============================================
   VISUAL PREMIUM — 2026-04-19-0700
   ============================================ */

body {
  font-family: "Plus Jakarta Sans", "Manrope", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-weight: 800;
}

/* Card icon badge */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #ebf3ff 0%, #d9eeff 100%);
  border: 1px solid rgba(17, 84, 157, 0.18);
  color: var(--brand);
  box-shadow: 0 6px 16px rgba(17, 84, 157, 0.12);
  margin-bottom: 0.75rem;
  flex-shrink: 0;
  transition: background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.card-icon-lg {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  margin-bottom: 0.9rem;
}

/* Compact cards: icon + title layout */
.page-home .home-simple-card-compact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 168px;
}

.page-home .home-simple-card-compact:hover .card-icon {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(17, 84, 157, 0.3);
}

/* Step badge */
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(17, 84, 157, 0.28);
  margin-bottom: 0.85rem;
  line-height: 1;
}

.page-home .home-step-card {
  position: relative;
  overflow: hidden;
}

.page-home .home-step-card:hover {
  border-color: rgba(17, 84, 157, 0.32);
}

/* Section backgrounds — alternating rhythm */
.page-home .home-simple-intro {
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(17, 84, 157, 0.07), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.56), rgba(245,251,255,0.42));
}

.page-home .home-simple-audience {
  background:
    radial-gradient(700px 320px at 5% 50%, rgba(17, 84, 157, 0.07), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.56), rgba(246,251,255,0.44));
}

.page-home .home-simple-approach {
  background:
    radial-gradient(700px 320px at 95% 50%, rgba(8, 127, 149, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.52), rgba(242,249,255,0.4));
}

.page-home .home-simple-why {
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(17, 84, 157, 0.07), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.48), rgba(246,251,255,0.38));
}

/* Dark gradient CTA contact section */
.page-home .home-simple-contact-shell {
  background: linear-gradient(135deg, #0b2a55 0%, #08405a 100%) !important;
  border: 1px solid rgba(76, 142, 210, 0.24) !important;
  padding: 3rem 2.2rem !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 72px rgba(7, 20, 50, 0.34) !important;
}

.page-home .home-simple-contact-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 50% 130%, rgba(76, 151, 224, 0.2), transparent 68%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 88px);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent);
}

.page-home .home-simple-contact-shell > * {
  position: relative;
  z-index: 1;
}

.page-home .home-simple-contact-shell .home-simple-section-head {
  max-width: 100%;
}

.page-home .home-simple-contact-shell .home-simple-section-head h2 {
  color: #f0f8ff;
}

.page-home .home-simple-contact-shell .home-simple-section-head p {
  color: rgba(210, 235, 255, 0.82);
}

.page-home .home-simple-contact-shell .btn-row {
  justify-content: center;
}

.page-home .home-simple-contact-shell .btn-primary {
  box-shadow: 0 18px 38px rgba(14, 70, 130, 0.4);
}

.page-home .home-simple-contact-shell .btn-secondary {
  background: rgba(255, 255, 255, 0.13) !important;
  color: #f0f8ff !important;
  border-color: rgba(255, 255, 255, 0.36) !important;
}

.page-home .home-simple-contact-shell .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
}

/* Stagger reveal for 5-col grid */
.home-simple-grid-5 .home-simple-card:nth-child(1) { transition-delay: 0.04s; }
.home-simple-grid-5 .home-simple-card:nth-child(2) { transition-delay: 0.09s; }
.home-simple-grid-5 .home-simple-card:nth-child(3) { transition-delay: 0.13s; }
.home-simple-grid-5 .home-simple-card:nth-child(4) { transition-delay: 0.17s; }
.home-simple-grid-5 .home-simple-card:nth-child(5) { transition-delay: 0.21s; }

/* Stagger reveal for 3-col grid */
.home-simple-grid-3 .home-simple-card:nth-child(1) { transition-delay: 0.04s; }
.home-simple-grid-3 .home-simple-card:nth-child(2) { transition-delay: 0.11s; }
.home-simple-grid-3 .home-simple-card:nth-child(3) { transition-delay: 0.18s; }

/* Stagger reveal for 2-col grid */
.home-simple-grid-2 .home-simple-card:nth-child(1) { transition-delay: 0.04s; }
.home-simple-grid-2 .home-simple-card:nth-child(2) { transition-delay: 0.12s; }

/* ============================================
   SITE-WIDE VISUAL POLISH 2026-04-19
   ============================================ */

:root {
  --bg: #eaf1f8;
  --bg-soft: #f3f7fc;
  --paper: #ffffff;
  --ink: #0b1c31;
  --muted: #415b7f;
  --line: #c4d4e8;
  --line-strong: #9db6d2;
  --brand: #11549d;
  --brand-2: #087f95;
  --brand-3: #0d3868;
  --shadow: 0 26px 70px rgba(15, 38, 70, 0.14);
}

body {
  background:
    radial-gradient(760px 420px at 8% 0%, rgba(17, 84, 157, 0.16), transparent 68%),
    radial-gradient(620px 360px at 92% 10%, rgba(8, 127, 149, 0.12), transparent 64%),
    linear-gradient(180deg, #f4f8fd 0%, #eaf1f8 42%, #f7faff 100%);
}

.header {
  background: rgba(242, 247, 253, 0.9);
  border-bottom: 1px solid rgba(151, 177, 210, 0.5);
  box-shadow: 0 16px 42px rgba(15, 38, 70, 0.10);
}

.header-shell {
  min-height: 94px;
}

.brand-logo {
  width: 92px;
  height: 92px;
}

.brand-name {
  font-size: 1.18rem;
}

.brand-tag {
  color: #5c7ea6;
}

.nav {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(151, 177, 210, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 14px 28px rgba(15, 38, 70, 0.11);
}

.nav a {
  transition: color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.nav a:hover {
  transform: translateY(-1px);
}

.btn {
  box-shadow: 0 12px 30px rgba(15, 38, 70, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, #104f95 0%, #087f95 100%);
  box-shadow: 0 18px 34px rgba(8, 104, 142, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(151, 177, 210, 0.7);
}

.hero,
.page-home .home-simple-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(76, 151, 224, 0.38), transparent 62%),
    radial-gradient(760px 420px at 96% 4%, rgba(13, 157, 170, 0.22), transparent 64%),
    linear-gradient(135deg, #071426 0%, #0d274b 52%, #102f55 100%);
}

.hero::before,
.page-home .home-simple-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 88px);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 90%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 90%);
}

.hero > .container,
.page-home .home-simple-hero > .container {
  position: relative;
  z-index: 1;
}

.hero h1,
.page-home .home-simple-hero h1 {
  max-width: 11ch;
  text-wrap: balance;
}

.hero p,
.page-home .home-simple-hero p {
  color: rgba(226, 241, 255, 0.88);
}

.kicker,
.hero .kicker {
  border-color: rgba(207, 226, 250, 0.32);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(235, 246, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-card img {
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 9, 26, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.section {
  position: relative;
  padding: 4.9rem 0;
}

.section + .section {
  border-top: 0;
}

.section:nth-of-type(even) {
  background:
    radial-gradient(600px 260px at 12% 0%, rgba(17, 84, 157, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.16));
}

.section-title h2,
.page-home .home-simple-section-head h2 {
  text-wrap: balance;
}

.section-title::before {
  content: "";
  width: 10px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 20px rgba(8, 104, 142, 0.18);
}

.card,
.page-home .home-simple-card,
.plan-card,
.faq details,
.form-advanced,
.home-simple-contact-shell,
.page-home .home-simple-contact-shell {
  border-color: rgba(158, 184, 215, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.94) 100%);
  box-shadow: 0 20px 54px rgba(15, 38, 70, 0.10);
}

.card,
.page-home .home-simple-card,
.plan-card {
  position: relative;
}

.card::before,
.page-home .home-simple-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, rgba(17, 84, 157, 0.72), rgba(8, 127, 149, 0.56));
  opacity: 0.72;
}

.card:hover,
.page-home .home-simple-card:hover,
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 76px rgba(15, 38, 70, 0.16);
}

.plan-card-featured {
  border-color: rgba(17, 84, 157, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(237, 247, 255, 0.98) 100%);
}

.plan-card-featured .plan-label {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.note {
  border: 1px solid rgba(137, 171, 211, 0.76);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(229, 241, 255, 0.78));
  box-shadow: 0 14px 34px rgba(15, 38, 70, 0.08);
}

input,
select,
textarea {
  border-color: rgba(158, 184, 215, 0.88);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 4px rgba(8, 127, 149, 0.12);
}

.step-pill {
  background: rgba(255, 255, 255, 0.74);
}

.footer {
  border-top: 0;
  background:
    radial-gradient(900px 360px at 8% 0%, rgba(18, 91, 160, 0.38), transparent 68%),
    radial-gradient(600px 300px at 95% 20%, rgba(8, 127, 149, 0.22), transparent 70%),
    linear-gradient(180deg, #0b1b32 0%, #07101f 100%);
}

.footer-shell-rich {
  padding-top: 2.35rem;
}

.footer-logo {
  width: 98px;
  height: 98px;
}

.footer-contact a,
.footer-nav-col .footer-list li a {
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.page-home .home-simple-panel {
  border-color: rgba(207, 226, 250, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
}

.page-home .home-simple-card-compact {
  min-height: 132px;
}

.page-home .home-simple-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .header-shell {
    min-height: auto;
  }

  .brand-logo {
    width: 86px;
    height: 86px;
  }

  .hero,
  .page-home .home-simple-hero {
    padding-top: 3.4rem;
    padding-bottom: 3.2rem;
  }

  .section {
    padding: 3.4rem 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.35rem));
  }

  h1,
  .page-home .home-simple-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.2rem);
  }

  .brand-logo,
  .footer-logo {
    width: 78px;
    height: 78px;
  }

  .card,
  .page-home .home-simple-card,
  .plan-card {
    border-radius: 18px;
    padding: 1.05rem;
  }
}

/* ============================================
   KLEUR — 2026-04-19-0730
   ============================================ */

/* ── COLORFUL COMPACT WORK CARDS ─────────── */
/* Each of the 5 "Wat we automatiseren" cards gets a unique accent color */

/* 1 — Orange: documenten en e-mails */
.home-simple-grid-5 .home-simple-card:nth-child(1)::before {
  background: linear-gradient(90deg, #ea580c, #fb923c);
}
.home-simple-grid-5 .home-simple-card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, #fff4eb, #ffe8d4);
  border-color: rgba(234, 88, 12, 0.22);
  color: #ea580c;
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.14);
}
.home-simple-grid-5 .home-simple-card:nth-child(1):hover .card-icon {
  background: linear-gradient(135deg, #ea580c, #fb923c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.32);
}

/* 2 — Blue: processen versnellen */
.home-simple-grid-5 .home-simple-card:nth-child(2)::before {
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
}
.home-simple-grid-5 .home-simple-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: rgba(29, 78, 216, 0.22);
  color: #1d4ed8;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.14);
}
.home-simple-grid-5 .home-simple-card:nth-child(2):hover .card-icon {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.32);
}

/* 3 — Green: systemen samenbrengen */
.home-simple-grid-5 .home-simple-card:nth-child(3)::before {
  background: linear-gradient(90deg, #16a34a, #4ade80);
}
.home-simple-grid-5 .home-simple-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: rgba(22, 163, 74, 0.22);
  color: #16a34a;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.14);
}
.home-simple-grid-5 .home-simple-card:nth-child(3):hover .card-icon {
  background: linear-gradient(135deg, #16a34a, #4ade80);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.32);
}

/* 4 — Purple: AI-assistenten */
.home-simple-grid-5 .home-simple-card:nth-child(4)::before {
  background: linear-gradient(90deg, #7c3aed, #c084fc);
}
.home-simple-grid-5 .home-simple-card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #faf5ff, #ede9fe);
  border-color: rgba(124, 58, 237, 0.22);
  color: #7c3aed;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.14);
}
.home-simple-grid-5 .home-simple-card:nth-child(4):hover .card-icon {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.32);
}

/* 5 — Teal: koppelingen */
.home-simple-grid-5 .home-simple-card:nth-child(5)::before {
  background: linear-gradient(90deg, #0891b2, #22d3ee);
}
.home-simple-grid-5 .home-simple-card:nth-child(5) .card-icon {
  background: linear-gradient(135deg, #ecfeff, #cffafe);
  border-color: rgba(8, 145, 178, 0.22);
  color: #0891b2;
  box-shadow: 0 6px 16px rgba(8, 145, 178, 0.14);
}
.home-simple-grid-5 .home-simple-card:nth-child(5):hover .card-icon {
  background: linear-gradient(135deg, #0891b2, #22d3ee);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(8, 145, 178, 0.32);
}

/* ── COLORFUL STEP BADGES ─────────────────── */
.home-simple-grid-3 .home-step-card:nth-child(1) .step-badge {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.32);
}
.home-simple-grid-3 .home-step-card:nth-child(2) .step-badge {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  box-shadow: 0 12px 28px rgba(8, 145, 178, 0.32);
}
.home-simple-grid-3 .home-step-card:nth-child(3) .step-badge {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.32);
}

/* Step card top accent also gets unique color */
.home-simple-grid-3 .home-step-card:nth-child(1)::before {
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
}
.home-simple-grid-3 .home-step-card:nth-child(2)::before {
  background: linear-gradient(90deg, #0891b2, #22d3ee);
}
.home-simple-grid-3 .home-step-card:nth-child(3)::before {
  background: linear-gradient(90deg, #7c3aed, #c084fc);
}

/* ── AUDIENCE CARD ICON COLORS ────────────── */
.home-simple-audience .home-simple-card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-color: rgba(217, 119, 6, 0.22);
  color: #d97706;
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.14);
}
.home-simple-audience .home-simple-card:nth-child(1):hover .card-icon {
  background: linear-gradient(135deg, #d97706, #fbbf24);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.32);
}
.home-simple-audience .home-simple-card:nth-child(1)::before {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

.home-simple-audience .home-simple-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: rgba(29, 78, 216, 0.22);
  color: #1d4ed8;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.14);
}
.home-simple-audience .home-simple-card:nth-child(2):hover .card-icon {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.32);
}
.home-simple-audience .home-simple-card:nth-child(2)::before {
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
}

/* ── "NUCHTER, WERKBAAR" CARD COLORS ─────── */
.home-simple-why .home-simple-card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: rgba(22, 163, 74, 0.22);
  color: #16a34a;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.14);
}
.home-simple-why .home-simple-card:nth-child(1):hover .card-icon {
  background: linear-gradient(135deg, #16a34a, #4ade80);
  color: #fff;
  border-color: transparent;
}
.home-simple-why .home-simple-card:nth-child(1)::before {
  background: linear-gradient(90deg, #16a34a, #4ade80);
}

.home-simple-why .home-simple-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: rgba(29, 78, 216, 0.22);
  color: #1d4ed8;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.14);
}
.home-simple-why .home-simple-card:nth-child(2):hover .card-icon {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  color: #fff;
  border-color: transparent;
}
.home-simple-why .home-simple-card:nth-child(2)::before {
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
}

/* ── COLORFUL SECTION ACCENT STRIP ──────── */
/* Intro section gets a subtle color wash */
.page-home .home-simple-intro .home-simple-section-head h2 {
  background: linear-gradient(135deg, #0d1f39 0%, #0b5c78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Approach section step colors in the "Hoe we werken" label */
.home-simple-grid-3 .home-step-card:nth-child(1) .home-simple-step { color: #3b82f6; }
.home-simple-grid-3 .home-step-card:nth-child(2) .home-simple-step { color: #06b6d4; }
.home-simple-grid-3 .home-step-card:nth-child(3) .home-simple-step { color: #a855f7; }

/* ── HERO PANEL VISUAL FILL ──────────────── */
.page-home .home-ai-visual {
  border-radius: 22px;
  box-shadow: 0 20px 52px rgba(0, 8, 28, 0.36);
}

/* ── SUBPAGE GENERIC CARD ICON SUPPORT ───── */
/* Cards with icons: vertical flex layout */
.card:has(.card-icon) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hover: icon animates to brand fill */
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(17, 84, 157, 0.28);
}

/* ── PLAN-CARD UNIQUE COLORS (services) ─── */
/* AI Startscan — amber */
.package-grid .plan-card:nth-child(1)::before {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}
/* Eerste Automatisering — brand blue (featured) */
.package-grid .plan-card:nth-child(2)::before {
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
}
.package-grid .plan-card:nth-child(2) {
  border-color: rgba(29, 78, 216, 0.36);
}
/* AI Procesflow — purple */
.package-grid .plan-card:nth-child(3)::before {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}
/* Beheer & Doorontwikkeling — teal */
.package-grid .plan-card:nth-child(4)::before {
  background: linear-gradient(90deg, #0891b2, #22d3ee);
}

/* ── SUBPAGE CARD GRID COLOR ACCENTS ─────── */
/* Services "Wat we doen" grid-3 */
.section-solid .grid-3 .card:nth-child(1)::before { background: linear-gradient(90deg, #1d4ed8, #60a5fa); }
.section-solid .grid-3 .card:nth-child(2)::before { background: linear-gradient(90deg, #ea580c, #fb923c); }
.section-solid .grid-3 .card:nth-child(3)::before { background: linear-gradient(90deg, #0891b2, #22d3ee); }

/* Regular grid-2 / grid-3 alternating accent tones */
.section .grid-2 .card:nth-child(1)::before { background: linear-gradient(90deg, #ea580c, #fb923c); }
.section .grid-2 .card:nth-child(2)::before { background: linear-gradient(90deg, #1d4ed8, #60a5fa); }
.section .grid-2 .card:nth-child(3)::before { background: linear-gradient(90deg, #16a34a, #4ade80); }
.section .grid-2 .card:nth-child(4)::before { background: linear-gradient(90deg, #7c3aed, #c084fc); }

.section .grid-3 .card:nth-child(1)::before { background: linear-gradient(90deg, #1d4ed8, #60a5fa); }
.section .grid-3 .card:nth-child(2)::before { background: linear-gradient(90deg, #0891b2, #22d3ee); }
.section .grid-3 .card:nth-child(3)::before { background: linear-gradient(90deg, #7c3aed, #c084fc); }
