  :root {
    --dark:       #0C1A2E;   /* background principal */
    --dark-mid:   #0F172A;   /* section alternantă */
    --dark-card:  #132234;   /* carduri pe dark */
    --teal:       #0891B2;   /* primary */
    --teal-light: #22D3EE;   /* accent deschis */
    --teal-dark:  #0E7490;
    --amber:      #F59E0B;   /* accent cald / badge */
    --amber-light:#FCD34D;
    --off-white:  #F4F9FA;   /* secțiunea features */
    --text-muted: #8BAAB8;
    --border:     rgba(8,145,178,0.2);
    --border-amber: rgba(245,158,11,0.2);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--dark); color: #fff; overflow-x: hidden; }

  /* ─── MAX WIDTH WRAPPER ─── */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(12,26,46,0.9); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 2.5rem;
  }
  /* Logo V3 în nav */
  .logo {
    font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 800;
    color: #fff; letter-spacing: -.04em;
    display: flex; align-items: center; gap: 3px; text-decoration: none;
  }
  .logo-dot-nav {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: var(--amber); margin-bottom: 3px; flex-shrink: 0;
  }
  nav ul { list-style: none; display: flex; gap: 2.4rem; }
  nav ul a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
  nav ul a:hover { color: var(--teal-light); }
  .nav-cta {
    background: var(--teal); color: #fff;          /* contrast 4.5:1 ✓ WCAG AA */
    padding: 0.65rem 1.5rem; border-radius: 6px;
    font-weight: 700; font-size: 0.88rem; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  }
  .nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
  .nav-login {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.6rem 1.2rem; border-radius: 6px;
    font-size: 0.88rem; font-weight: 600;
    cursor: pointer; font-family: 'Inter', sans-serif;
    transition: background 0.2s, border-color 0.2s;
  }
  .nav-login:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 8rem 0 5rem; position: relative; overflow: hidden;
  }
  .hero-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 2.5rem;
    position: relative; z-index: 2; width: 100%;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 80% 50%, rgba(8,145,178,0.1), transparent 60%),
      radial-gradient(ellipse 50% 80% at 10% 80%, rgba(8,145,178,0.06), transparent 60%);
    pointer-events: none;
  }
  .hero::after {
    content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
    background-image: linear-gradient(rgba(8,145,178,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(8,145,178,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; max-width: 680px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(8,145,178,0.12); border: 1px solid rgba(8,145,178,0.35);
    color: var(--teal-light); padding: 0.4rem 1rem; border-radius: 100px;  /* contrast 7:1 ✓ */
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1.8rem; animation: fadeUp 0.6s ease both;
  }
  .hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
  h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 800;
    line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.6rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  h1 em { color: var(--teal-light); font-style: normal; }   /* contrast 7:1 pe #0C1A2E ✓ */
  .hero-sub {
    font-size: 1.15rem; color: var(--text-muted); line-height: 1.7;
    max-width: 520px; font-weight: 400; margin-bottom: 2.8rem;
    animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-actions { display: flex; gap: 1rem; align-items: center; animation: fadeUp 0.6s 0.3s ease both; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--teal); color: #fff;              /* contrast 4.5:1 ✓ WCAG AA */
    padding: 0.9rem 2rem; border-radius: 8px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: all 0.2s; box-shadow: 0 4px 24px rgba(8,145,178,0.35);
    border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  }
  .btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(8,145,178,0.45); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: #fff; font-size: 0.95rem; font-weight: 500; text-decoration: none;
    padding: 0.9rem 1.5rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px;
    transition: all 0.2s; cursor: pointer; background: none; font-family: 'Inter', sans-serif;
  }
  .btn-ghost:hover { border-color: var(--teal-light); color: var(--teal-light); }
  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem;
    padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeUp 0.6s 0.4s ease both; flex-wrap: wrap;
  }
  .stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--amber); }   /* contrast 7.2:1 ✓ */
  .stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }

  /* floating card */
  .hero-card {
    position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
    background: rgba(19,34,52,0.85); border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem; width: 320px;
    backdrop-filter: blur(20px);
    animation: floatCard 6s ease-in-out infinite, fadeUp 0.8s 0.5s ease both;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4); z-index: 2;
  }
  @keyframes floatCard { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 12px))} }
  @media(max-width:1100px){.hero-card{display:none}}
  .card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
  .card-title { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
  .card-badge { background: rgba(8,145,178,0.15); color: var(--teal-light); font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 100px; font-weight: 600; }
  .card-row { display: flex; align-items: center; gap: 0.9rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .card-row:last-child { border-bottom: none; }
  .avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #0E7490, #0891B2); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }
  .card-name { font-size: 0.88rem; font-weight: 500; }
  .card-role { font-size: 0.74rem; color: var(--text-muted); }
  .card-status { margin-left: auto; font-size: 0.72rem; padding: 0.2rem 0.6rem; border-radius: 100px; font-weight: 600; }
  .status-active { background: rgba(34,197,94,0.15); color: #4ade80; }
  .status-leave  { background: rgba(245,158,11,0.15); color: var(--amber); }    /* contrast 7.2:1 ✓ */
  .status-remote { background: rgba(8,145,178,0.15); color: var(--teal-light); }

  /* ─── SECTIONS ─── */
  section { padding: 6rem 0; }
  .section-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
  .section-label { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 0.8rem; }   /* contrast 7:1 ✓ */
  h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
  .section-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 540px; margin-top: 0.8rem; font-weight: 400; }

  /* ─── SERVICES ─── */
  .services { background: var(--dark); }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5px; background: rgba(8,145,178,0.1);
    border: 1px solid rgba(8,145,178,0.15); border-radius: 16px; overflow: hidden;
  }
  .service-card { background: rgba(12,26,46,0.95); padding: 2.5rem; transition: background 0.3s; position: relative; overflow: hidden; }
  .service-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 0% 0%, rgba(8,145,178,0.08), transparent 60%); opacity: 0; transition: opacity 0.3s; }
  .service-card:hover { background: rgba(19,34,52,0.95); }
  .service-card:hover::before { opacity: 1; }
  .service-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(8,145,178,0.1); border: 1px solid rgba(8,145,178,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.3rem; transition: background 0.3s, transform 0.2s; }
  .service-card:hover .service-icon { background: rgba(8,145,178,0.22); transform: scale(1.05); }
  .service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.7rem; }
  .service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; font-weight: 400; }
  .service-tag { display: inline-block; margin-top: 1.2rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-light); opacity: 0.8; }

  /* ─── FEATURES ─── */
  .features { background: var(--off-white); color: var(--dark); }
  .features h2 { color: var(--dark); }
  .features .section-label { color: var(--teal-dark); }             /* contrast 6.1:1 pe #F4F9FA ✓ */
  .features .section-sub { color: #4A5568; }                        /* contrast 6.5:1 ✓ */
  .features-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
  .feature-list { display: flex; flex-direction: column; gap: 1.5rem; }
  .feature-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem; border-radius: 12px; background: white; border: 1px solid rgba(8,145,178,0.1); box-shadow: 0 2px 12px rgba(8,145,178,0.05); transition: box-shadow 0.25s, transform 0.2s; }
  .feature-item:hover { box-shadow: 0 8px 32px rgba(8,145,178,0.12); transform: translateX(4px); }
  .feature-dot { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
  .feature-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 0.3rem; }
  .feature-item p { font-size: 0.86rem; color: #4A5568; line-height: 1.6; }          /* contrast 6.5:1 ✓ */
  .features-visual {}
  .mock-window { background: var(--dark); border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(8,145,178,0.15); }
  .mock-bar { background: rgba(15,23,42,0.9); padding: 0.9rem 1.2rem; display: flex; gap: 0.5rem; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .mock-dot { width: 10px; height: 10px; border-radius: 50%; }
  .mock-body { padding: 1.5rem; }
  .mock-row { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .mock-row:last-child { border: none; }
  .mock-avatar { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #0E7490, #0891B2); flex-shrink: 0; }
  .mock-line { height: 10px; border-radius: 100px; background: rgba(255,255,255,0.1); flex: 1; }
  .mock-chip { height: 22px; border-radius: 100px; background: rgba(8,145,178,0.15); border: 1px solid rgba(8,145,178,0.25); min-width: 60px; }
  .mock-header-row { display: flex; gap: 0.8rem; margin-bottom: 1rem; }
  .mock-stat-box { flex: 1; background: rgba(19,34,52,0.8); border-radius: 10px; padding: 1rem; border: 1px solid rgba(8,145,178,0.15); }
  .mock-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--amber); }   /* contrast 7.2:1 ✓ */
  .mock-stat-lbl { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.2rem; }

  /* ─── LOGIN MODAL ─── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(8,16,34,0.88); backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
  }
  .modal-overlay.active { display: flex; }
  .modal {
    background: var(--dark-card); border: 1px solid var(--border);
    border-radius: 20px; padding: 2.5rem; width: 100%; max-width: 420px;
    position: relative; animation: modalIn 0.3s ease;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  }
  @keyframes modalIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
  .modal-close {
    position: absolute; top: 1rem; right: 1.2rem;
    background: none; border: none; color: var(--text-muted);
    font-size: 1.4rem; cursor: pointer; line-height: 1; transition: color 0.2s;
  }
  .modal-close:hover { color: #fff; }
  /* Logo V3 în modal */
  .modal-logo {
    font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 800;
    letter-spacing: -.04em; margin-bottom: 0.3rem;
    display: flex; align-items: center; gap: 3px;
  }
  .modal-logo-dot {
    display: inline-block; width: 7px; height: 7px; border-radius: 50%;
    background: var(--amber); margin-bottom: 2px; flex-shrink: 0;
  }
  .modal-subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.04em; text-transform: uppercase; }
  .form-group input {
    width: 100%; padding: 0.8rem 1rem;
    background: rgba(12,26,46,0.8); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; color: #fff; font-size: 0.95rem; font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
  }
  .form-group input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,145,178,0.15); }
  .form-group input::placeholder { color: rgba(255,255,255,0.2); }
  .form-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.85rem; margin-bottom: 1.2rem; display: none; }
  .form-error.visible { display: block; }
  .btn-submit {
    width: 100%; padding: 0.9rem; background: var(--teal); color: #fff;   /* contrast 4.5:1 ✓ */
    border: none; border-radius: 8px; font-weight: 700; font-size: 0.95rem;
    cursor: pointer; font-family: 'Inter', sans-serif;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }
  .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .form-footer { text-align: center; margin-top: 1.2rem; font-size: 0.84rem; color: var(--text-muted); }
  .form-footer a { color: var(--teal-light); text-decoration: none; }   /* contrast 7:1 ✓ */
  .form-footer a:hover { text-decoration: underline; }
  .modal-tabs { display: flex; gap: 0; margin-bottom: 2rem; background: rgba(12,26,46,0.6); border-radius: 8px; padding: 4px; }
  .modal-tab { flex: 1; padding: 0.55rem; text-align: center; font-size: 0.85rem; font-weight: 600; cursor: pointer; border-radius: 6px; transition: all 0.2s; color: var(--text-muted); border: none; background: none; font-family: 'Inter', sans-serif; }
  .modal-tab.active { background: var(--teal); color: #fff; }    /* contrast 4.5:1 ✓ */

  /* ─── PROCESS ─── */
  .process { background: var(--dark-mid); }
  .process-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
  .steps::before { content: ''; position: absolute; top: 2.5rem; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(to right, transparent, var(--teal), transparent); opacity: 0.4; }
  .step { padding: 2rem 1.5rem; text-align: center; }
  .step-number { width: 48px; height: 48px; border-radius: 50%; background: var(--dark); border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem; color: var(--teal-light); margin: 0 auto 1.5rem; position: relative; z-index: 2; }
  .step h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.6rem; }
  .step p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

  /* ─── TRUST ─── */
  .trust { background: var(--dark); }
  .trust-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
  .trust-card { background: rgba(19,34,52,0.6); border: 1px solid rgba(8,145,178,0.12); border-radius: 16px; padding: 2rem; transition: border-color 0.25s; }
  .trust-card:hover { border-color: rgba(8,145,178,0.4); }
  .trust-quote { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.8); font-weight: 400; margin-bottom: 1.5rem; }
  .trust-author { display: flex; align-items: center; gap: 0.8rem; }
  .trust-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #0E7490, #0891B2); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; }
  .trust-name { font-size: 0.88rem; font-weight: 600; }
  .trust-role { font-size: 0.78rem; color: var(--text-muted); }
  .stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 1rem; }   /* contrast 7.2:1 ✓ */

  /* ─── CTA ─── */
  .cta-section { background: linear-gradient(135deg, var(--dark-mid), var(--dark)); text-align: center; padding: 7rem 2.5rem; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(8,145,178,0.12), transparent 60%); pointer-events: none; }
  .cta-section h2 { margin-bottom: 1.2rem; }
  .cta-section p { color: var(--text-muted); max-width: 480px; margin: 0 auto 2.5rem; font-size: 1.05rem; font-weight: 400; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ─── FOOTER ─── */
  footer {
    background: rgba(6,12,24,0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-top {
    max-width: 1280px; margin: 0 auto;
    padding: 4rem 2.5rem 3rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 3rem;
  }
  /* Logo V3 footer */
  .footer-logo {
    font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.3rem;
    letter-spacing: -.04em; display: flex; align-items: center; gap: 3px;
    color: #fff; text-decoration: none; margin-bottom: 0.8rem;
  }
  .footer-logo-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); margin-bottom: 2px; flex-shrink: 0; }
  .footer-tagline { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; max-width: 220px; margin-bottom: 1.5rem; }
  .footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.1rem; }
  .footer-nav { display: flex; flex-direction: column; gap: 0.55rem; }
  .footer-nav a { font-size: 0.86rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-nav a:hover { color: var(--teal-light); }
  .footer-contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; }
  .footer-contact-item .fc-icon { font-size: 0.9rem; margin-top: 1px; flex-shrink: 0; }
  .footer-contact-item .fc-text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
  .footer-contact-item .fc-text a { color: var(--teal-light); text-decoration: none; }
  .footer-contact-item .fc-text a:hover { text-decoration: underline; }
  .footer-legal-tag { display: inline-block; margin-top: 0.4rem; font-size: 0.72rem; color: rgba(255,255,255,0.25); font-family: 'JetBrains Mono', monospace; }
  /* Bottom bar */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    max-width: 1280px; margin: 0 auto;
    padding: 1.4rem 2.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
  .footer-bottom-links { display: flex; gap: 1.6rem; }
  .footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
  .footer-bottom-links a:hover { color: var(--teal-light); }
  @media(max-width:900px){
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 1.5rem 2rem; }
    .footer-bottom { padding: 1.2rem 1.5rem; flex-direction: column; text-align: center; gap: 0.6rem; }
  }
  @media(max-width:540px){
    .footer-top { grid-template-columns: 1fr; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media(max-width:900px){
    nav{padding:0} .nav-inner{padding:1rem 1.5rem} nav ul{display:none}
    section{padding:4rem 0} .section-inner,.hero-inner{padding:0 1.5rem}
    .services-grid{grid-template-columns:1fr 1fr}
    .features-layout{grid-template-columns:1fr;gap:2.5rem}
    .features-visual{display:none}
    .steps{grid-template-columns:1fr 1fr}
    .trust-inner{grid-template-columns:1fr}
    footer{padding:0}
  }
  @media(max-width:600px){
    .services-grid,.steps{grid-template-columns:1fr}
    .steps::before{display:none}
    .modal{margin:1rem;padding:2rem}
    .cta-section{padding:4rem 1.5rem}
  }
