/* ============================================
   ARDENA PLATFORMS AFRICA
   ============================================ */

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

:root {
  --blue:    #007AFF;
  --orange:  #FF6A00;
  --black:   #1C1C1E;
  --white:   #FFFFFF;
  --bg:      #F5F5F7;
  --border:  #E0E0E5;
  --muted:   #6E6E73;
  --sec:     #3A3A3C;

  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:   60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--blue);
  flex-shrink: 0;
}

.eyebrow-muted { color: var(--muted); }
.eyebrow-muted::before { background: var(--muted); }
.eyebrow-white { color: rgba(255,255,255,0.55); }
.eyebrow-white::before { background: rgba(255,255,255,0.55); }

.heading-xl {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.heading-lg {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.heading-md {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.body-lg {
  font-size: 17px;
  line-height: 1.78;
  color: var(--muted);
}

.body-md {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border: none;
  cursor: pointer;
  border-radius: 0;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.btn svg { transition: transform 0.2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-blue  { background: var(--blue);  color: var(--white); }
.btn-blue:hover { background: #0062cc; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,122,255,0.28); }

.btn-dark  { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #2c2c2e; transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: #e8f0fe; }

.btn-lg { font-size: 15px; padding: 14px 30px; }
.btn-sm { font-size: 13px; padding: 8px 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: none;
  transition: box-shadow 0.3s var(--ease);
}

.nav-wrapper.scrolled {
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-partner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: color 0.18s;
}

.nav-partner:hover { color: var(--blue); }

.nav-partner svg { transition: transform 0.2s var(--ease); }
.nav-partner:hover svg { transform: translateX(3px); }

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-center a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 14px;
  position: relative;
  transition: color 0.18s;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-center a:hover  { color: var(--black); }
.nav-center a:hover::after { transform: scaleX(1); }
.nav-center a.active { color: var(--black); font-weight: 600; }
.nav-center a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 28px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  z-index: 199;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease);
  pointer-events: none;
}

.nav-drawer.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-drawer a {
  font-size: 15px;
  font-weight: 500;
  color: var(--sec);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding-left 0.2s var(--ease);
}

.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--black); padding-left: 8px; }

/* ============================================
   FULL-VIEWPORT SECTION BASE
   ============================================ */
.vp-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.vp-section.bg-grey  { background: var(--bg); }
.vp-section.bg-blue  { background: var(--blue); }
.vp-section.bg-dark  { background: var(--black); }
.vp-section.bg-white { background: var(--white); }

.vp-section + .vp-section { border-top: 1px solid var(--border); }
.vp-section.bg-blue + .vp-section,
.vp-section.bg-dark + .vp-section { border-top: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-content { position: relative; z-index: 2; }

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 32px;
  max-width: 900px;
}

.hero-sub {
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero-heading {
  max-width: 760px;
  margin-top: 16px;
}

.page-hero-sub {
  max-width: 540px;
  margin-top: 20px;
}

/* ============================================
   ABOUT SECTION (homepage)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.about-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.about-body p + p { margin-top: 18px; }
.about-body strong { color: var(--black); font-weight: 600; }

.about-stats {
  display: flex;
  align-items: stretch;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item { flex: 1; }

.stat-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  display: block;
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  display: block;
  margin-top: 6px;
  letter-spacing: 0.03em;
}

.stat-sep {
  width: 1px;
  background: var(--border);
  margin: 0 32px;
  flex-shrink: 0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-intro {
  margin-bottom: 56px;
  width: 100%;
}

.products-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  width: 100%;
}

.prod-card {
  background: var(--white);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.25s var(--ease);
}

.prod-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.prod-card:hover { background: var(--bg); }
.prod-card:hover::after { transform: scaleX(1); }

.prod-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.prod-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.prod-card h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.prod-card-desc {
  font-size: 15px;
  line-height: 1.78;
  color: var(--muted);
  flex: 1;
  margin-bottom: 32px;
}

.prod-apps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.prod-app-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--sec);
  background: var(--bg);
}

.prod-beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,106,0,0.08);
  padding: 5px 12px;
  margin-bottom: 32px;
}

.prod-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s var(--ease);
  margin-top: auto;
}

.prod-card-link:hover { gap: 12px; }

/* Dark card — Ardena */
.prod-card-dark {
  background: var(--black);
  border: 1px solid var(--black);
}
.prod-card-dark:hover { background: #111; }
.prod-card-dark h3 { color: var(--white); }
.prod-card-dark .prod-card-desc { color: rgba(255,255,255,0.6); }
.prod-card-dark .prod-card-link { color: rgba(255,255,255,0.85); }
.prod-card-dark .prod-card-link:hover { color: var(--white); }
.prod-card-dark .prod-app-badge {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
}
.prod-card-dark::after { background: rgba(255,255,255,0.15); }

/* Orange card — Ardena Pay */
.prod-card-orange {
  background: var(--orange);
  border: 1px solid var(--orange);
}
.prod-card-orange:hover { background: #e05f00; }
.prod-card-orange h3 { color: var(--white); }
.prod-card-orange .prod-card-desc { color: rgba(255,255,255,0.72); }
.prod-card-orange .prod-card-link { color: rgba(255,255,255,0.9); }
.prod-card-orange .prod-card-link:hover { color: var(--white); }
.prod-card-orange::after { background: rgba(255,255,255,0.2); }

.prod-stellar-light { color: rgba(255,255,255,0.75); }
.prod-stellar-light .prod-stellar-dot { background: rgba(255,255,255,0.85); }

.prod-stellar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 16px;
}

.prod-stellar-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

/* ============================================
   WHY — BLUE SECTION
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.why-heading { color: var(--white); margin-bottom: 20px; }
.why-sub { color: rgba(255,255,255,0.62); margin-bottom: 40px; font-size: 15px; line-height: 1.8; }

.why-items {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.why-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
}

.why-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.why-text p {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
}

/* ============================================
   ABOUT PAGE SPECIFICS
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  width: 100%;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  padding: 40px 36px;
}

.value-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--border);
  padding-left: 28px;
  gap: 40px;
}

.timeline-item { position: relative; }

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--blue);
}

.timeline-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================
   PRODUCTS PAGE SPECIFICS
   ============================================ */

.prod-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.prod-detail-desc {
  font-size: 15px;
  line-height: 1.82;
  color: var(--muted);
  margin: 16px 0 36px;
}

.feature-list { border-top: 1px solid var(--border); }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.feature-text h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}


/* Mobility image — no card, syncs with section background */
.prod-mobility-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.7s var(--ease);
}

.prod-mobility-img:hover { transform: scale(1.02); }

/* Ardena Pay SVG illustration */
.pay-illustration {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.cform-bordered {
  border: 1px solid var(--border);
  padding: 40px;
  background: var(--white);
}

.cform { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fgroup { display: flex; flex-direction: column; gap: 7px; }

.fgroup label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.cform input,
.cform select,
.cform textarea {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--black);
  padding: 12px 14px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.cform input::placeholder,
.cform textarea::placeholder { color: var(--muted); font-weight: 400; }

.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

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

.form-success { display: none; padding: 72px 0; text-align: center; }
.form-success.visible { display: block; }

.success-icon {
  width: 56px; height: 56px;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 20px;
}

.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p  { color: var(--muted); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--black); color: var(--white); }

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-wrap { margin-bottom: 20px; }

.footer-logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-logo:hover { opacity: 1; }

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
}

.footer-cols { display: flex; gap: 64px; }

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.18s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   ANIMATION SYSTEM
   ============================================ */

/* Hero — CSS animation on load */
.hero-anim {
  animation: heroFadeUp 0.8s var(--ease-out) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll-triggered animations */
[data-anim] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.75s;
  transition-timing-function: var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

[data-anim="up"]    { transform: translateY(36px); }
[data-anim="left"]  { transform: translateX(-36px); }
[data-anim="right"] { transform: translateX(36px); }
[data-anim="in"]    { transform: scale(0.97); }
[data-anim="fade"]  { transform: none; }

[data-anim].in-view {
  opacity: 1;
  transform: none;
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  width: 100%;
}

.faq-left { position: sticky; top: 100px; }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: color 0.18s;
}

.faq-q:hover { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.35s var(--ease-out), color 0.18s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-item.open .faq-q { color: var(--blue); }

/* Grid-based animation — no JS height calculation needed */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}

.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a-inner {
  overflow: hidden;
}

.faq-a-inner p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--muted);
  padding-bottom: 24px;
  margin: 0;
}

/* ============================================
   PARTNER PAGE
   ============================================ */

.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,122,255,0.07);
  border: 1px solid rgba(0,122,255,0.14);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.partner-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.partner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* Raise card */
.raise-card {
  border: 1px solid var(--border);
  padding: 44px;
  background: var(--white);
}

.raise-amount {
  font-size: 68px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.04em;
}

.raise-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

.raise-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.raise-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.raise-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.raise-meta-key {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.raise-meta-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.raise-status-open {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #16a34a;
}

.raise-status-open::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #16a34a;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Single-column hero */
.partner-hero-single {
  max-width: 680px;
}

/* Meta row below CTAs */
.raise-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.raise-meta-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.raise-meta-sep {
  width: 3px;
  height: 3px;
  background: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Use of funds section */
.funds-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 52px;
}

.funds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  width: 100%;
}

.funds-item {
  background: var(--white);
  padding: 40px 36px;
}

.funds-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--black);
  flex-shrink: 0;
}

.funds-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.funds-item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* Why back Ardena */
.why-invest-head {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.why-invest-item {
  padding: 48px 48px 48px 0;
  border-right: 1px solid var(--border);
}

.why-invest-item:last-child {
  border-right: none;
  padding-right: 0;
}

.why-invest-item + .why-invest-item {
  padding-left: 48px;
}

.why-invest-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
}

.why-invest-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.3;
}

.why-invest-item p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--muted);
  margin: 0;
}

/* Partner types section header */
.partner-types-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  width: 100%;
}

.bento-card {
  background: var(--white);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.bento-card-fleet {
  grid-row: span 2;
}

.bento-num {
  font-size: 96px;
  font-weight: 700;
  color: var(--black);
  opacity: 0.04;
  position: absolute;
  top: -8px;
  right: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--black);
  flex-shrink: 0;
}

.bento-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.bento-card p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--muted);
  margin: 0;
}

.bento-card p + p {
  margin-top: 14px;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.bento-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
}

/* Investor deck section */
.deck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.deck-form .fgroup label {
  color: rgba(255,255,255,0.65);
}

.input-white {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
}

.input-white::placeholder {
  color: rgba(255,255,255,0.3);
}

.input-white:focus {
  border-color: rgba(255,255,255,0.55);
}

.input-white option {
  background: var(--black);
  color: var(--white);
}

/* Success message overrides for blue bg */
.deck-success {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 48px 40px;
  text-align: center;
}

.deck-success .success-icon {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

.deck-success h3 { color: var(--white); }
.deck-success p  { color: rgba(255,255,255,0.6); }

/* Outline button */
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--black);
}

.btn-outline:hover {
  border-color: rgba(28,28,30,0.4);
  color: var(--black);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  .about-grid,
  .why-grid,
  .contact-grid,
  .faq-inner,
  .prod-detail-grid,
  .partner-hero-grid,
  .partner-types-head,
  .deck-grid { grid-template-columns: 1fr; gap: 48px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card-fleet { grid-row: auto; }
  .funds-grid { grid-template-columns: 1fr 1fr; }
  .funds-head { grid-template-columns: 1fr; gap: 24px; }
  .why-invest-head { grid-template-columns: 1fr; gap: 24px; }
  .why-invest-grid { grid-template-columns: 1fr; border-top: none; }
  .why-invest-item { padding: 32px 0; border-right: none; border-top: 1px solid var(--border); }
  .why-invest-item + .why-invest-item { padding-left: 0; }

  .faq-left { position: static; }

  .contact-grid { align-items: start; }

  .products-cards { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr 1fr; }

}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .vp-section { padding: 64px 0; min-height: auto; }
  .hero { min-height: 100vh; min-height: 100dvh; }

  .nav-center,
  .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }

  .about-stats { flex-direction: column; }
  .stat-sep { width: 32px; height: 1px; margin: 20px 0; }

  .values-grid { grid-template-columns: 1fr; }
  .products-cards { grid-template-columns: 1fr; }

  .prod-card { padding: 36px 28px; }

  .form-row { grid-template-columns: 1fr; }
  .cform-bordered { padding: 24px 20px; }
  .bento-card { padding: 36px 28px; }
  .raise-card { padding: 32px 24px; }
  .raise-amount { font-size: 52px; }
  .funds-grid { grid-template-columns: 1fr; }
  .funds-item { padding: 32px 24px; }

  .footer-main { flex-direction: column; gap: 40px; }
  .footer-cols { flex-wrap: wrap; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .page-hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .prod-card { padding: 28px 20px; }
}
