/* Self-hosted Plus Jakarta Sans (variable, 400-800).
   Served from our own origin - no request ever leaves a2.software, so no
   visitor IP reaches a third-party CDN. See cookie.html. */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inline SVG icons, replacing the Font Awesome webfont.
   Icons: Font Awesome Free 6.4.0 - fontawesome.com - CC BY 4.0 */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: currentColor;
  flex-shrink: 0;
}

:root {
    --bg-main: #07090E;
    --bg-card: #0D111A;
    --bg-card-hover: #131B2E;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --accent-blue: #4B5896;
    --accent-purple: #4B5896;
    --accent-gradient: linear-gradient(135deg, #4B5896 0%, #3b5aca 100%);

    --navy: #1C2340;
    --blue: #3D4E8C;
    --blue-soft: #5A6BAE;
    --paper: #F7F8FC;
    --panel: #E9ECF8;
    --ink: #14172B;
    --ink-soft: #4A4F6B;
    --ember: #FF8A3D;
    --ember-deep: #E5701F;
    --line: rgba(28,35,64,0.12);
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* Typography */
  h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.03em;
  }

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

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 0.85rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    cursor: pointer;
  }

  .btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 25px rgba(59, 130, 246, 0.35);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
  }

  .btn-ghost {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
  }

  .btn-ghost:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ember);
    font-weight: 700;
    margin-bottom: 1rem;
    background: rgba(255, 138, 61, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 138, 61, 0.2);
  }

  /* Header / Navigation */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
  }

  .nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
  }

  .logo-chip {
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .logo-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .brand span span {
    color: var(--accent-blue);
  }

  .links {
    display: none;
    gap: 2.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  .links a:hover {
    color: var(--text-main);
  }

   .links .active{
    color: var(--ember);
   }

  @media (min-width: 768px) {
    .links {
      display: flex;
    }
  }

  .desktop-only {
    display: none;
  }

  @media (min-width: 768px) {
    .desktop-only {
      display: inline-flex;
    }
  }

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

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }

  @media (min-width: 768px) {
    .menu-toggle {
      display: none;
    }
  }

   @media (max-width: 580px) {
    .logo-chip{height: 40px;}
   }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
  }

  /* Hero Section */
  .hero {
    position: relative;
    padding: 11rem 0 7rem;
    overflow: hidden;
  }

  .hero-glow-1 {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 60%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
  }

  @media (min-width: 992px) {
    .hero-inner {
      grid-template-columns: 1fr 0;
    }
  }

  @media (max-width: 992px) {
    .hero-lede{max-width: 100% !important;}

    .hero-actions .btn,
    .cta-band .btn,
    .cta-band .cta-actions {
      width: 100%;
    }
  }

  .hero h1 {
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .hero-lede {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 50%;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
  }


  /* Sections General */
  section {
    padding: 7rem 0;
  }

  .section-head {
    max-width: 700px;
    margin-bottom: 4rem;
  }

  .section-head h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .section-head p {
    color: var(--text-muted);
    font-size: 1.1rem;
  }

  /* Pillars (De ce A2) */
  .pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .pillars {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .pillar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 1.25rem;
    transition: all 0.25s ease;
  }

  .pillar:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    background: var(--bg-card-hover);
  }

  .pillar-num {
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: 800;
    margin-bottom: 1rem;
  }

    .pillar-num img{
      width: 50px;
      height: 50px;
    }

  .pillar h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .pillar p {
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  /* Services List */
  .services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .services-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .service-row {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.25rem;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.25s ease;
  }

  .service-row:hover {
    background: var(--bg-card-hover);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
  }

  .service-mark {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-blue);
  }

  .service-row h3 {
    font-size: 1.25rem;
  }

  .service-row p {
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  /* Projects Grid */
  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
  }

  .project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    background: var(--bg-card-hover);
  }

  .project-media {
    height: auto;
    background: linear-gradient(135deg, #151c2e 0%, #0d111a 100%);
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
  }

   .project-media img{
    width: 100%;
   }

  .project-tag {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
  }

  .project-mark {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.2);
    font-weight: 800;
  }

  .project-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .project-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }

  .project-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .project-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #9ca3af;
  }

  .projects-more {
    text-align: center;
    margin-top: 3.5rem;
  }

  /* AI Section */
  .ai-band {
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(13, 17, 26, 0.8) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  .ai-band .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
  }

  @media (min-width: 992px) {
    .ai-band .wrap {
      grid-template-columns: 1fr 1fr;
    }
  }

  .lede {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .ai-checklist {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .ai-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #d1d5db;
  }

  .ai-checklist .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-blue);
  }

  .ai-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 1.5rem;
  }

  .ai-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .ai-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .ai-flow-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .step-label {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
  }

  .ai-flow-step strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .ai-flow-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  /* Process Section */
  .process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .process {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .process-step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.25rem;
    border-radius: 1.25rem;
    position: relative;
  }

  .process-step .marker {
    width: 38px;
    height: 38px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

  .process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  .process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  /* CTA Band */
  .cta-band {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
  }

  @media (min-width: 992px) {
    .cta-band {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
      padding: 4rem;
    }
  }

  .cta-band h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
  }

  .cta-band p {
    color: var(--text-muted);
    font-size: 1.05rem;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 40%;
  }

  /* FAQ */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
  }

  .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
  }

  .faq-q {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
  }

  .faq-q::-webkit-details-marker {
    display: none;
  }

  .faq-q .icon {
    font-size: 1.1rem;
    color: var(--accent-blue);
    transition: transform 0.25s;
  }

  .faq-item[open] .faq-q .icon {
    transform: rotate(45deg);
  }

  .faq-a {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Footer */
  footer {
    background: #04060a;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  @media (min-width: 768px) {
    .footer-top {
      grid-template-columns: 2fr 1fr 1fr 1fr;
    }
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
  }

  .footer-top h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .footer-top ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-top ul a:hover {
    color: #fff;
  }

  .footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
    }
  }

  .inner-pg.hero{
    padding: 8rem 0 2rem;
  }

  .angajament.hero{
    padding-bottom: 2rem;
  }


  .inner-pg.hero h1{
    font-size: clamp(2.75rem, 5vw, 2.25rem);
  }

  .inner-pg .hero-lede{
    font-size: 1rem;
    margin-bottom: 0.5em;
  }

  .inner-content.contact-section{
    background: var(--paper);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  @media (min-width: 992px) {
    .contact-grid {
      grid-template-columns: 1.5fr 1fr;
    }
  }

  .contact-form-wrapper{
    background:#f9fafb;
    border: 1px solid #e5e7eb;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  }

  .contact-info{
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .contact-info h3{
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: normal;
  }

  .contact-info p{color: var(--ink-soft);}

  .contact-info .company-details p{
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .contact-info .company-details p:last-child,
  .company-info .info-item:last-child{
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .company-info .info-item{
    color: var(--ink-soft);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap:20px;
    margin-bottom: 20px;
  }

  .company-info .info-item .info-txt{
    display: flex;
    flex-direction: column;
  }

  .company-info .info-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 0.5rem;
  }

  .form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #FFFFFF;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    color: var(--ink-soft);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
  }

  .form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  }

  textarea.form-control {
    resize: vertical;
    min-height: 130px;
  }

  .form-submit {
    width: 100%;
    margin-top: 0.5rem;
    border: 0;
  }
  /* Contact — direct email card (replaces the old form) */
  .contact-direct h3 {
    color: var(--ink);
    letter-spacing: normal;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }

  .contact-direct-lede {
    color: var(--ink-soft);
    margin-bottom: 2rem;
  }

  .contact-mail-btn {
    width: 100%;
  }

  .contact-direct-alt {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
    word-break: break-word;
  }

  .contact-direct-alt a {
    color: var(--blue);
  }

  .contact-hint {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
  }

  .contact-hint h4 {
    color: var(--ink);
    font-size: 0.95rem;
    letter-spacing: normal;
    margin-bottom: 1rem;
  }

  .contact-hint ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .contact-hint li {
    color: var(--ink-soft);
    font-size: 0.92rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .contact-hint li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-blue);
  }

  .company-info .info-item .info-txt span {
    color: var(--ink-soft);
  }

  /* Legal pages — termeni, cookie */
  .legal {
    max-width: 820px;
  }

  .legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }

  .legal h2 {
    font-size: 1.4rem;
    margin: 3rem 0 1rem;
    line-height: 1.3;
  }

  .legal h2:first-of-type {
    margin-top: 0;
  }

  .legal h3 {
    font-size: 1.05rem;
    margin: 2rem 0 0.75rem;
    color: var(--text-main);
  }

  .legal p,
  .legal li {
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  .legal ul {
    list-style: none;
    margin-bottom: 1.5rem;
  }

  .legal ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.65rem;
  }

  .legal ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-blue);
  }

  .legal a {
    color: var(--blue-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .legal a:hover {
    color: var(--text-main);
  }

  .legal-note {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
  }

  .legal-note p:last-child {
    margin-bottom: 0;
  }
