/* Ontowin — Main Stylesheet */


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

  :root {
    --ink: #1a1433;
    --ink-2: #3d3468;
    --ink-3: #8880b0;
    --surface: #f4f3fb;
    --surface-2: #e8e6f5;
    --white: #ffffff;
    --accent: #94a5f7;
    --accent-light: #eaedfe;
    --accent-dark: #34258e;
    --deep: #34258e;
    --deep-light: #dddaf5;
    --teal: #0d8c6e;
    --teal-light: #d0f0e8;
    --amber: #c47a0a;
    --amber-light: #fdf0d0;
    --border: rgba(52, 37, 142, 0.12);
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Bricolage Grotesque', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 72px;
    background: rgba(244, 243, 251, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
  }

  .nav-logo span { color: var(--accent); }

  .nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-2);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    background: var(--deep);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; }

  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 4rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
  }

  .eurostars-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  .hero-title .accent-word { color: var(--accent); }
  .hero-title .teal-word { color: var(--teal); }

  .hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--ink-2);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--deep);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52, 37, 142, 0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--ink);
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-outline:hover {
    border-color: var(--ink);
    background: var(--surface-2);
  }

  .hero-visual { position: relative; }

  /* HERO CANVAS VISUAL */
  .hero-canvas-wrap {
    background: #0f0c1e;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 480px;
    border: 1px solid rgba(148,165,247,0.2);
  }

  .eurostars-banner {
    background: var(--ink);
    color: var(--white);
    padding: 2rem 3rem;
    overflow: hidden;
  }

  .banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .partner-divider { width: 1px; height: 2rem; background: rgba(255,255,255,0.15); }


  .eurostars-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 1rem 1.75rem;
  }

  .eurostars-badge img { height: 70px; width: auto; display: block; }

  section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.25rem;
  }

  .section-lead {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--ink-2);
    max-width: 580px;
    line-height: 1.75;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .pillar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10,14,26,0.08);
  }

  .pillar-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--surface-2);
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    letter-spacing: -0.04em;
  }

  .pillar-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .pillar-icon svg { width: 22px; height: 22px; }
  .pillar-icon.blue  { color: var(--accent-dark); }
  .pillar-icon.teal  { color: #0a5a44; }
  .pillar-icon.amber { color: #7a4d06; }

  .pillar-icon.blue { background: var(--accent-light); }
  .pillar-icon.teal { background: var(--teal-light); }
  .pillar-icon.amber { background: var(--amber-light); }

  .pillar-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  .pillar-desc { font-size: 0.9rem; color: var(--ink-2); line-height: 1.7; }

  .pillar-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 1.5rem; }

  .tag {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--ink-3);
  }

  .how-section {
    background: var(--white);
    border-radius: 28px;
    padding: 4rem;
    border: 1px solid var(--border);
    margin: 0 3rem;
    max-width: none;
  }

  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }

  .how-steps { display: flex; flex-direction: column; gap: 0; }

  .how-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: padding-left 0.3s;
  }

  .how-step:last-child { border-bottom: none; }
  .how-step:hover { padding-left: 0.5rem; }

  .step-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 28px;
    padding-top: 0.2rem;
  }

  .step-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
  }

  .step-content p { font-size: 0.875rem; color: var(--ink-2); line-height: 1.65; }

  /* HOW IT WORKS CANVAS */
  .how-canvas-wrap {
    background: #0f0c1e;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 420px;
    border: 1px solid rgba(148,165,247,0.2);
    font-family: 'Bricolage Grotesque', sans-serif;
  }

  .value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
  }

  .value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: border-color 0.2s;
  }

  .value-card:hover { border-color: var(--accent); }
  .value-icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 24px;
    height: 24px;
    color: var(--accent);
  }
  .value-icon svg { width: 24px; height: 24px; }

  .value-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
  }

  .value-card p { font-size: 0.875rem; color: var(--ink-2); line-height: 1.65; }

  .partners-section { padding: 5rem 3rem; }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10,14,26,0.06);
  }

  .partner-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
  }

  .partner-role {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 1rem;
  }

  .partner-desc { font-size: 0.825rem; color: var(--ink-2); line-height: 1.6; }

  .partner-country {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    background: var(--surface);
    color: var(--ink-3);
    border: 1px solid var(--border);
  }

  .partner-logo-area {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
  }

  .partner-logo-area img.uploaded {
    max-height: 44px;
    max-width: 85%;
    object-fit: contain;
    object-position: center center;
  }

  /* CONSORTIUM PHOTO */
  .consortium-photo-wrap {
    margin: 2.5rem 0 3rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
  }

  .consortium-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }

  .consortium-photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(26,20,51,0.7));
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
  }

  .cta-section {
    background: var(--deep);
    border-radius: 28px;
    margin: 0 3rem 6rem;
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(148,165,247,0.25) 0%, transparent 70%);
  }

  .cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
  }

  .cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.25rem;
  }

  .cta-body { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.7; }

  .cta-form { display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 1; }

  .cta-form input,
  .cta-form textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .cta-form input::placeholder,
  .cta-form textarea::placeholder { color: rgba(255,255,255,0.3); }

  .cta-form input:focus,
  .cta-form textarea:focus {
    border-color: rgba(148,165,247,0.6);
    background: rgba(255,255,255,0.1);
  }

  .cta-form textarea { resize: none; height: 90px; }

  .cta-submit {
    background: var(--accent);
    color: var(--deep);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
  }

  .cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(148, 165, 247, 0.5);
  }

  footer {
    background: var(--deep);
    color: rgba(255,255,255,0.5);
    padding: 3rem;
  }

  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 2rem;
  }

  /* LEFT */
  .footer-col-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
    align-self: flex-start;
  }

  .footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
  }

  .footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
  }

  .footer-legal-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

  /* CENTRE */
  .footer-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 0 2rem;
  }

  .footer-eu-flag {
    height: 42px;
    width: auto;
    display: block;
    opacity: 0.9;
  }

  .footer-funded-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
  }

  .footer-funded-text strong {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
  }

  /* RIGHT */
  .footer-col-right {
    display: flex;
    justify-content: flex-end;
  }

  .footer-li-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: color 0.2s;
    text-align: center;
  }

  .footer-li-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.2s;
  }

  .footer-li-btn:hover { color: rgba(255,255,255,0.85); }
  .footer-li-btn:hover svg { transform: scale(1.1); }

  @media (max-width: 900px) {
    .footer-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-col-left  { align-items: center; }
    .footer-col-center { border: none; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-col-right { justify-content: center; }
    .footer-legal-links { justify-content: center; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
  .fade-up.d1 { animation-delay: 0.1s; }
  .fade-up.d2 { animation-delay: 0.25s; }
  .fade-up.d3 { animation-delay: 0.4s; }
  .fade-up.d4 { animation-delay: 0.55s; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; }
    .pillars-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
    .cta-section { grid-template-columns: 1fr; padding: 3rem 2rem; margin: 0 1.5rem 4rem; }
    .how-section { margin: 0 1.5rem; padding: 2.5rem 1.5rem; }
    nav { padding: 0 1.5rem; height: 64px; }
    .nav-links { display: none; }

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(244, 243, 251, 0.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2rem 2rem;
  border-bottom: 1px solid var(--border);
  gap: 0;
  z-index: 99;
}

.nav-mobile-open .nav-links li {
  border-bottom: 1px solid var(--border);
}

.nav-mobile-open .nav-links a {
  display: block;
  padding: 0.875rem 0;
  font-size: 0.95rem;
}

.nav-mobile-open .nav-links .nav-cta {
  margin-top: 0.75rem;
  display: inline-block;
  border-radius: 100px;
  padding: 0.6rem 1.5rem;
}
    section { padding: 4rem 1.5rem; }
    .partners-section { padding: 3rem 1.5rem; }
    .consortium-photo { height: 260px; }
    .hero-canvas-wrap { height: 340px; }
    .how-canvas-wrap { height: 320px; }
  }




  /* ── LINKEDIN BUTTONS ── */
  .btn-linkedin-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    color: var(--ink-2);
    background: transparent;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .btn-linkedin-hero:hover {
    border-color: #0A66C2;
    color: #0A66C2;
    background: rgba(10, 102, 194, 0.06);
    transform: translateY(-2px);
  }




  /* ── PROJECT PLAN ── */
  .project-plan-steps {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pp-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 2rem;
    position: relative;
  }

  .pp-connector {
    position: absolute;
    left: 27px;
    top: 52px;
    bottom: -1px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--deep-light));
    opacity: 0.35;
    z-index: 0;
  }

  .pp-step-last .pp-connector { display: none; }

  .pp-number-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.15rem;
    position: relative;
    z-index: 1;
  }

  .pp-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.01em;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px var(--accent-light);
  }

  .pp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }

  .pp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--deep));
    border-radius: 20px 0 0 20px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .pp-card:hover {
    box-shadow: 0 12px 36px rgba(10,14,26,0.08);
    transform: translateX(4px);
  }

  .pp-card:hover::before { opacity: 1; }

  .pp-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }

  .pp-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
  }

  .pp-desc {
    font-size: 0.9rem;
    color: var(--ink-2);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }

  .pp-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .pp-tag {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--ink-3);
    background: var(--surface);
  }

  .pp-cycle-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--teal);
    background: var(--teal-light);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    border: 1px solid rgba(13,140,110,0.2);
  }

  @media (max-width: 900px) {
    .pp-step { grid-template-columns: 44px 1fr; gap: 0 1.25rem; }
    .pp-number { width: 44px; height: 44px; font-size: 0.75rem; box-shadow: 0 0 0 4px var(--accent-light); }
    .pp-connector { left: 21px; top: 46px; }
    .pp-card { padding: 1.5rem; }
  }



/* About — solution card accent */
.about-solution-card {
  border-color: var(--accent);
  background: var(--accent-light);
}

.about-solution-card h4 { color: var(--accent-dark); }

  /* ── HERO IMAGE ── */
  .hero-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface-2);
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
  }

  .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Placeholder when no image */
  .hero-img-placeholder {
    min-height: 400px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--deep-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-img-placeholder::after {
    content: 'hero.jpg';
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.06em;
    opacity: 0.5;
  }

  /* Overlay with stats */
  .hero-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,8,26,0.65) 100%);
    pointer-events: none;
  }

  .hero-img-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.04em;
    width: fit-content;
  }

  .hero-img-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
    flex-shrink: 0;
  }

  .hero-img-stats {
    display: flex;
    gap: 1.5rem;
  }

  .hero-img-stat {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .hero-img-stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .hero-img-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
  }

  /* ── HOW IT WORKS IMAGE ── */
  .how-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
  }

  .how-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .how-img-placeholder {
    min-height: 320px;
    background: linear-gradient(135deg, var(--surface-2) 0%, var(--deep-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .how-img-placeholder::after {
    content: 'how-it-works.jpg';
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-3);
    letter-spacing: 0.06em;
    opacity: 0.6;
  }

  @media (max-width: 900px) {
    .hero-img-wrap    { aspect-ratio: 3 / 2; }
    .how-img-wrap     { aspect-ratio: 16 / 9; }
  }


  .about-solution-card .value-icon { color: var(--accent-dark); }

  .about-solution-card .value-icon { color: var(--accent-dark); }

  /* ── TUBITAK BADGE ── */
  .tubitak-badge-wrap {
    padding: 0 3rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .tubitak-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
  }

  .tubitak-badge-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--ink-3);
  }

  .tubitak-badge p {
    font-size: 0.825rem;
    color: var(--ink-3);
    line-height: 1.65;
  }

  .tubitak-badge strong { color: var(--ink-2); font-weight: 600; }

  @media (max-width: 900px) {
    .tubitak-badge-wrap { padding: 0 1.5rem 2.5rem; }
  }

  .eurostars-banner {
    background: var(--ink);
    color: var(--white);
    padding: 3rem 3rem;
    overflow: hidden;
  }

  .banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
  }

  .partner-divider {
    width: 1px; height: 2.5rem;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
  }

  .banner-logo {
    height: 82px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.2s;
  }

  .banner-logo:hover { opacity: 1; }
  /* ── SITE ICONS (images/icons/*.svg) ── */
  .site-icon {
    width: 24px;
    height: 24px;
    display: block;
  }

  .pillar-icon .site-icon {
    width: 22px;
    height: 22px;
  }
