/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/generated/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250,247,242,0.93) 0%,
    rgba(250,247,242,0.78) 50%,
    rgba(250,247,242,0.88) 100%
  );
}
.hero-no-image {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(229,62,62,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
    var(--cream);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.hero-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse-red 2s ease-in-out infinite; }
@keyframes pulse-red { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero h1 { max-width: 820px; margin-bottom: 28px; color: var(--charcoal); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.hero-email-form {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-card);
}
.hero-email-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.hero-email-form input::placeholder { color: var(--gray-soft); }
.hero-email-form button {
  padding: 12px 20px;
  background: var(--red);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition);
}
.hero-email-form button:hover { background: var(--red-dark); }
.hero-alt-cta { font-size: 0.8rem; color: var(--gray-soft); }
.hero-alt-cta a { color: var(--gray); border-bottom: 1px solid var(--gray-light); transition: color var(--transition), border-color var(--transition); }
.hero-alt-cta a:hover { color: var(--charcoal); border-color: var(--gray); }

/* ── Stats band ─────────────────────────────────────────────────────── */
.stats-band {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 56px 0;
}
.stats-band-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 40px;
}
.stats-band-headline {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 400;
}
.stats-band-headline strong { color: var(--charcoal); font-weight: 600; }
.stats-band-sub { font-size: 0.8rem; color: var(--gray-soft); margin-top: 6px; }
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-card {
  background: var(--white);
  padding: 32px 28px;
  border-right: 1px solid var(--gray-light);
}
.stat-card:last-child { border-right: none; }
.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.8rem; color: var(--gray-soft); }

/* ── Industry cards ─────────────────────────────────────────────────── */
.industries-section { background: var(--cream); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.industry-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
  background: var(--white);
  border: 1px solid var(--gray-light);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.industry-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.2) 60%, transparent 100%);
}
.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
}
.industry-card-icon { font-size: 1.4rem; margin-bottom: 8px; }
.industry-card-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.industry-card-sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.industry-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.industry-card:hover .industry-gold-line { transform: scaleX(1); }

/* Industry gradient placeholders */
.ind-1 .industry-card-bg { background: linear-gradient(135deg, #f5e6e0 0%, #e8d4cc 100%); }
.ind-2 .industry-card-bg { background: linear-gradient(135deg, #e0e8f0 0%, #ccd8e4 100%); }
.ind-3 .industry-card-bg { background: linear-gradient(135deg, #e8f0e0 0%, #d4e4cc 100%); }
.ind-4 .industry-card-bg { background: linear-gradient(135deg, #e0e4f5 0%, #ccd0e8 100%); }
.ind-5 .industry-card-bg { background: linear-gradient(135deg, #f0e0e8 0%, #e4ccd4 100%); }
.ind-6 .industry-card-bg { background: linear-gradient(135deg, #e8f5e0 0%, #d4e8cc 100%); }
.ind-7 .industry-card-bg { background: linear-gradient(135deg, #e0ecf5 0%, #cce0ec 100%); }
.ind-8 .industry-card-bg { background: linear-gradient(135deg, #f5e8e0 0%, #e8d4cc 100%); }

/* ── Geography ─────────────────────────────────────────────────────── */
.geography-section { background: var(--ivory); }
.country-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--gray);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.country-pill:hover { border-color: rgba(229,62,62,0.4); color: var(--charcoal); box-shadow: var(--shadow-sm); }
.country-flag { font-size: 1rem; }

/* ── Service blocks ─────────────────────────────────────────────────── */
.services-section { background: var(--cream); }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block:nth-child(even) { background: var(--ivory); margin-left: -40px; margin-right: -40px; padding-left: 40px; padding-right: 40px; }
.service-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  opacity: 0.85;
}
.service-block h3 { margin-bottom: 20px; }
.service-block h3 span { display: block; }
.service-block p { margin-bottom: 24px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--red-soft);
  border-radius: 100px;
  color: var(--red-dark);
}
.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ivory-dark);
  border: 1px solid var(--gray-light);
  position: relative;
}
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-dark) 100%);
}

/* ── Banking partners — DARK SECTION ───────────────────────────────── */
.banking-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.banking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 10%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.banking-section .section-label { color: var(--gold); }
.banking-section .section-label::before { background: var(--gold); }
.banking-section h2 { color: var(--cream); }
.banking-section > .section-inner > p,
.banking-section p { color: var(--gray-soft); }
.banking-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.banking-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.banking-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 0 40px rgba(201,168,76,0.06);
  background: rgba(255,255,255,0.06);
}
.banking-card-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.banking-card-logo-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 18px;
  height: 52px;
  min-width: 80px;
  max-width: 180px;
}
.banking-card-logo-inner svg { max-height: 30px; width: auto; }
.banking-card-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.banking-card h4 { margin-bottom: 12px; color: var(--cream); }
.banking-card p { font-size: 0.875rem; margin-bottom: 24px; color: var(--gray-soft); }
.banking-card-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.banking-card-stat .val { font-size: 1.1rem; font-weight: 700; color: var(--cream); }
.banking-card-stat .key { font-size: 0.75rem; color: var(--gray-soft); margin-top: 2px; }
.partner-badges {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  align-items: stretch;
}
.partner-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.partner-badge:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.partner-badge svg { display: block; }
.badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media (max-width: 640px) { .partner-badges { flex-direction: column; } }

/* ── Case study cards ───────────────────────────────────────────────── */
.case-studies-section { background: var(--cream); }
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.case-card:hover { border-color: var(--gray-line); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.case-card-image {
  height: 200px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.case-card-image img { width: 100%; height: 100%; object-fit: cover; }
.case-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.cs-1-bg { background: linear-gradient(135deg, #f0e8f5 0%, #e4d8ec 100%); }
.cs-2-bg { background: linear-gradient(135deg, #f5ebe0 0%, #ecdcd0 100%); }
.cs-3-bg { background: linear-gradient(135deg, #e8f5ec 0%, #d8ecd8 100%); }
.case-card-body { padding: 28px 24px; }
.case-card-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.case-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.case-card p { font-size: 0.875rem; margin-bottom: 20px; }
.case-result {
  background: rgba(16,185,129,0.07);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
}

/* ── About teaser ───────────────────────────────────────────────────── */
.about-teaser { background: var(--ivory); }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-md);
}
.about-image-frame img { width: 100%; display: block; }
.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.about-image-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.about-image-badge-text { font-size: 0.8rem; color: var(--gray); }
.about-image-badge-text strong { color: var(--charcoal); }
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 20px; font-size: 0.95rem; }
.about-content .btn { margin-top: 12px; }

/* ── CTA section — DARK ─────────────────────────────────────────────── */
.cta-section {
  background: var(--charcoal);
  border-top: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-section h2 { max-width: 600px; margin: 0 auto 20px; color: var(--cream); }
.cta-section p { max-width: 480px; margin: 0 auto 40px; color: var(--gray-soft); }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-subnote { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 16px; }

/* CTA ghost button on dark bg */
.cta-section .btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--cream);
  border-color: rgba(255,255,255,0.15);
}
.cta-section .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

/* ── Page hero (inner pages) ────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-light);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { font-size: 1.05rem; max-width: 600px; }

/* ── Contact page ───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-soft);
}
.contact-item-val { font-size: 0.9rem; color: var(--charcoal); }
.contact-item-val a { color: var(--gray); transition: color var(--transition); }
.contact-item-val a:hover { color: var(--red); }
.calendly-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 600px;
  box-shadow: var(--shadow-card);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.8rem; font-weight: 500; color: var(--gray); letter-spacing: 0.02em; }
.form-input, .form-textarea, .form-select {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  padding: 11px 14px;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-soft); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
.form-select { background-color: var(--white); color: var(--charcoal); }
.form-select option { background: var(--white); color: var(--charcoal); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: 0.75rem; color: var(--red); display: none; }
.form-field.has-error .form-input,
.form-field.has-error .form-textarea { border-color: var(--red); }
.form-field.has-error .form-error { display: block; }
.form-success {
  background: rgba(16,185,129,0.07);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.875rem;
  color: var(--green);
  display: none;
  text-align: center;
}

/* ── Cookie banner ───────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  z-index: 2000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: none;
}
.cookie-banner.visible { transform: translateY(0); display: block; }
.cookie-banner-title { font-weight: 700; color: var(--charcoal); margin-bottom: 8px; font-size: 0.95rem; }
.cookie-banner p { font-size: 0.8rem; color: var(--gray); margin-bottom: 20px; line-height: 1.6; }
.cookie-banner p a { color: var(--red); border-bottom: 1px solid rgba(229,62,62,0.25); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.5);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: calc(100% - 48px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.cookie-modal h3 { margin-bottom: 24px; font-size: 1.2rem; color: var(--charcoal); }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}
.cookie-toggle-row:last-of-type { border-bottom: none; }
.cookie-toggle-info strong { font-size: 0.875rem; color: var(--charcoal); display: block; margin-bottom: 4px; }
.cookie-toggle-info span { font-size: 0.8rem; color: var(--gray-soft); }
.toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-light);
  border-radius: 11px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle input:checked + .toggle-slider { background: var(--red); }
.toggle input:checked + .toggle-slider::before { transform: translateX(18px); }
.toggle input:disabled + .toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-actions { display: flex; gap: 12px; margin-top: 28px; }

/* ── Thank you page ─────────────────────────────────────────────────── */
.thankyou-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(229,62,62,0.05) 0%, transparent 60%), var(--cream);
}
.thankyou-check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 32px;
}
.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  max-width: 480px;
  text-align: left;
}
.thankyou-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.thankyou-step-icon { font-size: 1.2rem; flex-shrink: 0; }
.thankyou-step-title { font-size: 0.95rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.thankyou-step-desc { font-size: 0.8rem; color: var(--gray-soft); }

/* ── Marquee ─────────────────────────────────────────────────────────── */
.marquee-section {
  padding: 24px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
  white-space: nowrap;
}
.marquee-item img { height: 18px; width: auto; opacity: 0.25; }
.marquee-sep { color: var(--gray-light); }

/* ── Responsive overrides ───────────────────────────────────────────── */
@media (max-width: 968px) {
  .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .service-block:nth-child(even) { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
  .banking-cards { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .stat-card:nth-child(2n) { }
  .stat-card:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .hero-content { padding: 60px 24px; }
  .hero-email-form { max-width: 100%; }
  .page-hero-inner { padding: 0 24px; }
  .stats-band-header { padding: 0 24px; }
  .stats-grid { padding: 0 24px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .country-pills { gap: 8px; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; }
}

/* ── Three Engines ─────────────────────────────────────────────────────────── */
.engines-grid { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 24px; margin-top: 60px; align-items: start; }
.engine-card { background: var(--white); border-radius: 20px; padding: 36px 32px; display: flex; flex-direction: column; position: relative; border: 1px solid var(--gray-light); }
.engine-card--featured { border: 2px solid var(--gold); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.engine-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--charcoal); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; padding: 5px 18px; border-radius: 100px; white-space: nowrap; text-transform: uppercase; }
.engine-eyebrow { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--gray); text-transform: uppercase; margin-bottom: 14px; display: block; }
.engine-title { font-size: 1.45rem; font-weight: 700; margin-bottom: 6px; color: var(--charcoal); }
.engine-subtitle { font-size: 0.78rem; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; }
.engine-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.65; margin-bottom: 22px; }
.engine-includes { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.06em; color: var(--charcoal); text-transform: uppercase; margin-bottom: 12px; }
.engine-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.engine-list li { font-size: 0.85rem; color: var(--charcoal); padding-left: 20px; position: relative; line-height: 1.5; }
.engine-list li::before { content: '✦'; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 0.65rem; top: 2px; }
.engine-card--featured .engine-list li::before { color: var(--gold); }
.engine-app-only { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.06em; background: rgba(229,62,62,0.08); color: var(--red); padding: 3px 10px; border-radius: 100px; text-transform: uppercase; white-space: nowrap; }
.engine-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 8px; }
.engine-cta { text-align: center; width: 100%; box-sizing: border-box; }
@media (max-width: 960px) { .engines-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; } }

/* ── Comparison ────────────────────────────────────────────────────────────── */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.comparison-col { border-radius: 16px; padding: 32px; }
.comparison-wrong { background: rgba(229,62,62,0.04); border: 1px solid rgba(229,62,62,0.15); }
.comparison-right { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.2); }
.comparison-header { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid; }
.comparison-wrong .comparison-header { color: var(--red); border-color: rgba(229,62,62,0.2); }
.comparison-right .comparison-header { color: var(--gold); border-color: rgba(201,168,76,0.25); }
.comparison-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.comparison-col li { font-size: 0.875rem; color: var(--gray); line-height: 1.55; padding-left: 22px; position: relative; }
.comparison-wrong li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.comparison-right li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
@media (max-width: 768px) { .comparison-grid { grid-template-columns: 1fr; } }

/* ── Process Steps ─────────────────────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 60px; margin-top: 60px; }
.process-step { display: flex; gap: 24px; }
.process-step-number { font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: var(--red); opacity: 0.22; line-height: 1; flex-shrink: 0; min-width: 48px; }
.process-step-content h4 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.process-step-content p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }
@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr; gap: 32px; } }

/* ── Platforms Grid ────────────────────────────────────────────────────────── */
.platforms-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; justify-content: center; }
.platform-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--gray-light); border-radius: 100px; padding: 10px 20px; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); transition: box-shadow 0.2s, border-color 0.2s; }
.platform-badge:hover { box-shadow: var(--shadow-card); border-color: rgba(0,0,0,0.15); }
.platform-badge-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }


/* Founder personal social icons */
.founder-socials { display: flex; gap: 12px; margin-top: 16px; }
.founder-socials a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.06); color: var(--gray-soft); transition: color 0.2s, background 0.2s; text-decoration: none; }
.founder-socials a:hover { color: var(--red); background: rgba(229,62,62,0.08); }

/* Platform cards (favicon grid) */
.platform-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; justify-content: center; }
.platform-card { display: flex; flex-direction: column; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-light); border-radius: 16px; padding: 20px 16px; min-width: 90px; font-size: 0.78rem; font-weight: 600; color: var(--charcoal); transition: box-shadow 0.2s, border-color 0.2s; }
.platform-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-color: var(--gold); }
.platform-card img { border-radius: 8px; }

/* Banking cards clickable */
a.banking-card { cursor: pointer; }
a.banking-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-2px); }

/* Solutio Instagram social link (footer) */
.solutio-social:hover { color: var(--red) !important; }

/* Nav phones — desktop only */
.nav-phones a:hover { color: var(--red) !important; }
@media (max-width: 968px) {
  .nav-phones { display: none !important; }
}

/* Entities block — responsive */
@media (max-width: 768px) {
  .entities-block { grid-template-columns: 1fr !important; gap: 24px !important; }
}
