    :root {
      --b2b-bg: #050313;
      --b2b-card: #090919;
      --b2b-card-soft: #0b0b1f;
      --b2b-border: rgba(120, 120, 180, 0.4);
      --b2b-text: #f9fafb;
      --b2b-muted: #9ca3af;
      --b2b-accent: #7c3aed;
      --b2b-accent-soft: rgba(124, 58, 237, 0.22);
      --b2b-accent-strong: #a855f7;
      --b2b-pill-bg: rgba(15, 23, 42, 0.9);
      --b2b-radius-xl: 1.75rem;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.15), transparent 60%),
        linear-gradient(180deg, #02010b, #050313 40%, #02010b);
      color: var(--b2b-text);
      min-height: 100vh;
    }

    a {
      text-decoration: none;
    }

    /* NAVBAR / HEADER TOP */

    .b2b-nav {
      padding: 1.1rem 0 0.7rem;
    }

    .b2b-logo {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .b2b-logo img {
      height: 28px;
      width: auto;
    }

    .b2b-nav-links a {
      font-size: 0.85rem;
      color: var(--b2b-muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .b2b-nav-links a:hover,
    .b2b-nav-links a:focus {
      color: var(--b2b-text);
    }

    .b2b-nav-cta {
      font-size: 0.8rem;
      padding: 0.45rem 1.2rem;
      border-radius: 999px;
      border: 1px solid rgba(167, 139, 250, 0.8);
      background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.45), rgba(15, 23, 42, 0.95));
      color: #f9fafb;
      box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4), 0 12px 35px rgba(15, 23, 42, 0.95);
      white-space: nowrap;
    }

    .b2b-nav-cta:hover {
      filter: brightness(1.08);
      transform: translateY(-1px);
    }

    /* HERO */

    .b2b-hero {
      padding: 1.5rem 0 3.5rem;
      position: relative;
      overflow: hidden;
    }

    .b2b-hero::before {
      content: "";
      position: absolute;
      inset: -150px;
      background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.4), transparent 60%),
        radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.25), transparent 55%);
      opacity: 0.5;
      z-index: -1;
    }

    .b2b-hero-title {
      font-size: clamp(2.4rem, 3.7vw, 3.1rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: 0.02em;
    }

    .b2b-hero-lead {
      margin-top: 1.4rem;
      color: var(--b2b-muted);
      max-width: 32rem;
    }

    .b2b-hero-cta-group {
      margin-top: 1.9rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    .b2b-btn-primary {
      border-radius: 999px;
      padding: 0.85rem 1.9rem;
      background: radial-gradient(circle at top left, var(--b2b-accent-strong), var(--b2b-accent));
      border: 1px solid rgba(191, 219, 254, 0.9);
      color: #f9fafb;
      font-weight: 600;
      box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.55), 0 20px 55px rgba(15, 23, 42, 0.95);
    }

    .b2b-btn-primary:hover {
      filter: brightness(1.07);
      transform: translateY(-1px);
    }

    .b2b-btn-outline {
      border-radius: 999px;
      padding: 0.85rem 1.9rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: var(--b2b-text);
      background: transparent;
      font-weight: 500;
    }

    .b2b-btn-outline:hover {
      background: rgba(15, 23, 42, 0.95);
      border-color: rgba(191, 219, 254, 0.8);
    }

    .b2b-hero-image {
      position: relative;
      border-radius: var(--b2b-radius-xl);
      background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.25), rgba(15, 23, 42, 0.98));
      box-shadow: 0 32px 85px rgba(0, 0, 0, 0.85);
      overflow: hidden;
    }

    .b2b-hero-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Categoria de servicii (pills orizontale sub hero) */

    .b2b-service-pills {
      margin-top: 2.5rem;
      padding: 0.9rem 1rem;
      border-radius: 999px;
      background: rgba(6, 6, 18, 0.95);
      border: 1px solid rgba(55, 65, 81, 0.8);
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      align-items: center;
    }

    .b2b-service-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.92);
      color: var(--b2b-muted);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      border: 1px solid rgba(75, 85, 99, 0.9);
    }

    .b2b-service-pill i {
      color: var(--b2b-accent-strong);
    }

    /* SECTIUNEA SERVICIILE NOASTRE B2B – CARDURI CU NUMERE MARI */

    .b2b-section-title {
      font-size: clamp(1.9rem, 3vw, 2.4rem);
      font-weight: 800;
    }

    .b2b-services-grid {
      margin-top: 2rem;
    }

    .b2b-service-card {
      position: relative;
      background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(6, 6, 20, 0.98));
      border-radius: var(--b2b-radius-xl);
      border: 1px solid rgba(55, 65, 81, 0.9);
      padding: 1.6rem 1.7rem;
      overflow: hidden;
      min-height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.1rem;
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.75);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .b2b-service-card::after {
      content: attr(data-number);
      position: absolute;
      right: -0.5rem;
      bottom: -1.2rem;
      font-size: 4.4rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: rgba(129, 140, 248, 0.06);
      text-shadow:
        0 0 35px rgba(129, 140, 248, 0.4),
        0 0 80px rgba(15, 23, 42, 0.9);
      pointer-events: none;
      user-select: none;
    }

    .b2b-service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9);
      border-color: rgba(167, 139, 250, 0.8);
    }

    .b2b-service-card-header {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--b2b-muted);
    }

    .b2b-service-card-header i {
      color: var(--b2b-accent-strong);
    }

    .b2b-service-card-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-top: 0.3rem;
    }

    .b2b-service-card-text {
      font-size: 0.9rem;
      color: var(--b2b-muted);
      max-width: 22rem;
    }

    .b2b-service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      font-size: 0.75rem;
    }

    .b2b-service-tag {
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(75, 85, 99, 0.9);
      color: rgba(229, 231, 235, 0.9);
    }

    .b2b-service-card-cta {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      font-size: 0.8rem;
    }

    .b2b-service-card-cta .btn {
      border-radius: 999px;
      padding-inline: 1.2rem;
    }

    /* DE CE iNES – IMAGINE + TEXT */

    .b2b-why {
      padding: 4rem 0 3.5rem;
    }

    .b2b-why-image {
      border-radius: var(--b2b-radius-xl);
      overflow: hidden;
      background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.35), rgba(6, 6, 18, 0.98));
      box-shadow: 0 30px 95px rgba(0, 0, 0, 0.9);
    }

    .b2b-why-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .b2b-why-title {
      font-size: 1.85rem;
      font-weight: 800;
      margin-bottom: 0.8rem;
    }

    .b2b-why-text {
      color: var(--b2b-muted);
      max-width: 32rem;
    }

    /* PROCES 1-2-3 */

    .b2b-process {
      margin-top: 3rem;
    }

    .b2b-process-step {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
      border-radius: var(--b2b-radius-xl);
      border: 1px solid rgba(55, 65, 81, 0.9);
      padding: 1.4rem 1.5rem;
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      min-height: 160px;
    }

    .b2b-process-number {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: radial-gradient(circle, var(--b2b-accent), var(--b2b-accent-strong));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      box-shadow: 0 0 0 1px rgba(191, 219, 254, 0.8), 0 18px 40px rgba(0, 0, 0, 0.85);
    }

    .b2b-process-title {
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

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

    /* DETALII SERVICII – CARDURI LUNGI */

    .b2b-details {
      padding: 4rem 0 3.5rem;
    }

    .b2b-details-header {
      text-align: center;
      max-width: 48rem;
      margin: 0 auto 2.5rem;
    }

    .b2b-details-header p {
      color: var(--b2b-muted);
    }

    .b2b-detail-card {
      background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(6, 6, 20, 0.98));
      border-radius: var(--b2b-radius-xl);
      border: 1px solid var(--b2b-border);
      padding: 1.6rem 1.7rem;
      margin-bottom: 1.2rem;
      display: grid;
      grid-template-columns: minmax(0, 4fr) minmax(0, 2fr);
      gap: 1rem;
      align-items: center;
    }

    .b2b-detail-eyebrow {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--b2b-muted);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.4rem;
    }

    .b2b-detail-eyebrow i {
      color: var(--b2b-accent-strong);
    }

    .b2b-detail-title {
      font-weight: 600;
      font-size: 1.05rem;
      margin-bottom: 0.45rem;
    }

    .b2b-detail-text {
      font-size: 0.9rem;
      color: var(--b2b-muted);
    }

    .b2b-detail-tags {
      margin-top: 0.6rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      font-size: 0.75rem;
    }

    .b2b-detail-tag {
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(75, 85, 99, 0.9);
      color: rgba(229, 231, 235, 0.9);
    }

    .b2b-detail-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.6rem;
      text-align: right;
    }

    .b2b-detail-actions .btn {
      border-radius: 999px;
      padding-inline: 1.4rem;
    }

    .b2b-detail-link {
      font-size: 0.85rem;
      color: var(--b2b-accent-strong);
    }
    /* Shared Hosting – card pe lățime completă în grilă */
.b2b-detail-card--full {
  grid-template-columns: minmax(0, 1fr);
}


    /* FAQ */

    .b2b-faq {
      padding: 4rem 0 3.5rem;
    }

    .b2b-faq-title {
      font-size: clamp(1.9rem, 3vw, 2.3rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: 2.2rem;
    }

    .b2b-accordion .accordion-item {
      background: transparent;
      border-color: rgba(55, 65, 81, 0.95);
      border-radius: 999px;
      overflow: hidden;
      margin-bottom: 0.7rem;
    }

    .b2b-accordion .accordion-button {
      background: rgba(15, 23, 42, 0.96);
      color: var(--b2b-text);
      padding: 0.95rem 1.3rem;
      font-weight: 500;
      font-size: 0.95rem;
      box-shadow: none;
    }

    .b2b-accordion .accordion-button:not(.collapsed) {
      background: linear-gradient(90deg, rgba(124, 58, 237, 0.9), rgba(129, 140, 248, 0.95));
      color: #f9fafb;
    }

    .b2b-accordion .accordion-button::after {
      filter: invert(1);
    }

    .b2b-accordion .accordion-body {
      background: rgba(6, 6, 20, 0.98);
      color: var(--b2b-muted);
      font-size: 0.9rem;
      padding: 1rem 1.3rem 1.15rem;
    }

    /* CTA FINAL */

    .b2b-cta {
      padding: 3.5rem 0 4rem;
    }

    .b2b-cta-box {
      text-align: center;
      background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.45), rgba(15, 23, 42, 0.98));
      border-radius: 2.5rem;
      border: 1px solid rgba(191, 219, 254, 0.8);
      padding: 2.6rem 1.6rem 2.9rem;
      box-shadow: 0 36px 95px rgba(0, 0, 0, 0.9);
    }

    .b2b-cta-title {
      font-size: clamp(2rem, 3.2vw, 2.6rem);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .b2b-cta-text {
      max-width: 32rem;
      margin: 0 auto 2rem;
      color: rgba(238, 242, 255, 0.92);
    }

    /* UTILITARE */

    .text-accent {
      color: var(--b2b-accent-strong);
    }

    /* RESPONSIVE */

    @media (max-width: 991.98px) {
      .b2b-hero {
        text-align: center;
      }

      .b2b-hero-lead {
        margin-inline: auto;
      }

      .b2b-hero-cta-group {
        justify-content: center;
      }

      .b2b-service-pills {
        border-radius: 1.3rem;
      }

      .b2b-detail-card {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
      }

      .b2b-detail-actions {
        align-items: flex-start;
        text-align: left;
      }
    }

    @media (max-width: 767.98px) {
      .b2b-service-pills {
        border-radius: 1.1rem;
      }

      .b2b-service-card {
        min-height: auto;
      }

      .b2b-accordion .accordion-item {
        border-radius: 1.3rem;
      }
    }
    /* * iNES Business – stil modern & responsive * (vizual only, text neschimbat la servicii) */ /* Paletă & bază */ :root { --custom-primary: var(--bs-primary); --custom-secondary: var(--bs-secondary); --custom-dark: #020617; --custom-darker: #020617; --custom-surface: rgba(15, 23, 42, 0.9); --custom-border: rgba(148, 163, 184, 0.35); --custom-text: #e5e7eb; } html { scroll-behavior: smooth; } body { overflow-x: hidden; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.8)), url('https://www.ines.ro/themes/ines/assets/images/main_bg_business.jpg') center/cover no-repeat fixed; color: #fff; } /* HERO – fundal cu imagine + overlay */ .hero { position: relative; min-height: 560px; color: #f9fafb; display: flex; align-items: center; padding: 4.5rem 0; isolation: isolate; overflow: hidden; } .hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), transparent 55%), radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.28), transparent 55%), linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9)), url("images/main_bg_business.jpg") center/cover no-repeat; opacity: 0.9; z-index: -2; } .hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(15, 23, 42, 0.5), transparent 55%); mix-blend-mode: screen; z-index: -1; } .hero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); line-height: 1.15; } .hero .lead { font-size: 1.05rem; max-width: 32rem; } .hero .features__section-content img { max-width: 100%; height: auto; border-radius: 1.5rem; box-shadow: 0 24px 70px rgba(15, 23, 42, 0.9); } /* CTA buttons */ .cta-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; } .btn { padding: 0.6rem 1.6rem; border-radius: 999px; font-weight: 500; transition: all 0.2s ease; } .btn-lg { padding: 0.8rem 1.9rem; } .btn-primary { box-shadow: 0 16px 40px rgba(var(--bs-primary-rgb), 0.4); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(var(--bs-primary-rgb), 0.55); } .btn-outline-primary, .btn-outline-secondary { border-width: 1px; } .btn-outline-primary:hover, .btn-outline-secondary:hover, .btn-outline-light:hover, .btn-outline-dark:hover { transform: translateY(-2px); } /* Carduri – look unitar, modern */ .card { background-color: var(--custom-surface) !important; backdrop-filter: blur(18px); border-radius: 1.25rem; border: 1px solid var(--custom-border) !important; color: var(--custom-text); box-shadow: 0 18px 55px rgba(15, 23, 42, 0.8) !important; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; } .card-body, .card-footer, .card-header { background: transparent !important; } .card .text-muted { color: rgba(226, 232, 240, 0.85) !important; } .card .card-text, .card .list-unstyled, .card .list-group-item { color: var(--custom-text) !important; } .card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95) !important; border-color: rgba(248, 250, 252, 0.45) !important; } /* Carduri servicii B2B */ #servicii .card { background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9)); } .icon-box { width: 3.5rem; height: 3.5rem; border-radius: 999px; background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 65%); display: flex; align-items: center; justify-content: center; margin-inline: auto; } .icon-box i { filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.75)); } /* Secțiune Servicii */ #servicii { position: relative; color: #f9fafb; background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.22), transparent 55%), radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.18), transparent 55%), linear-gradient(to bottom, #020617, #020617 40%, #020617); } #servicii .display-5 { font-size: clamp(1.8rem, 3vw, 2.4rem); } /* SECȚIUNE „DE CE iNES BUSINESS” */ .why-ines { background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.22), transparent 60%), linear-gradient(to bottom, #020617, #020617); } .why-ines-title { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 700; color: #f9fafb; } .why-ines-subtitle { max-width: 40rem; margin: 0.5rem auto 0; color: rgba(209, 213, 219, 0.9); } .why-ines-box { border-radius: 1.25rem; padding: 1.5rem 1.4rem; background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9)); border: 1px solid var(--custom-border); height: 100%; display: flex; flex-direction: column; gap: 0.5rem; } .why-ines-box-icon { width: 2.5rem; height: 2.5rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: rgba(37, 99, 235, 0.18); margin-bottom: 0.5rem; } .why-ines-box-title { font-weight: 600; font-size: 1.05rem; } .why-ines-box-text { font-size: 0.95rem; color: rgba(209, 213, 219, 0.9); } /* BANDĂ DE TRUST */ .trust-band { border-top: 1px solid rgba(31, 41, 55, 0.9); border-bottom: 1px solid rgba(31, 41, 55, 0.9); background: radial-gradient(circle at center, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98)); } .trust-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; color: rgba(156, 163, 175, 0.95); font-weight: 600; } .trust-items { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; } .trust-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.9rem; border-radius: 999px; border: 1px solid rgba(55, 65, 81, 0.9); background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98)); font-size: 0.85rem; white-space: nowrap; color: rgba(229, 231, 235, 0.96); } .trust-badge i { font-size: 0.85rem; color: #22c55e; } @media (max-width: 991.98px) { .trust-items { justify-content: flex-start; margin-top: 0.75rem; } } @media (max-width: 767.98px) { .trust-items { justify-content: center; } .trust-badge { white-space: normal; } } /* DETALII SERVICII – stil nou */ /* ========================= DETALII SERVICII – DESIGN NOU ========================= */ .service-details { padding: 4rem 0 3.5rem; background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.32), transparent 55%), radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.22), transparent 55%), linear-gradient(to bottom, #020617, #020617); } .service-details__header { text-align: center; margin-bottom: 2.5rem; } .service-details__title { font-size: clamp(1.9rem, 3vw, 2.4rem); font-weight: 700; color: #f9fafb; margin-bottom: .4rem; } .service-details__subtitle { max-width: 40rem; margin: 0 auto; color: rgba(209, 213, 219, 0.9); } /* NAV PILL – shortcut spre fiecare serviciu */ .service-details__nav { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; } .service-details__nav-link { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .9rem; border-radius: 999px; border: 1px solid rgba(55, 65, 81, 0.9); background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98)); font-size: .85rem; color: rgba(229, 231, 235, 0.96); text-decoration: none; transition: all .2s ease; white-space: nowrap; } .service-details__nav-link i { font-size: .85rem; color: #60a5fa; } .service-details__nav-link:hover { border-color: rgba(248, 250, 252, 0.6); transform: translateY(-1px); } /* CARD PRINCIPAL */ .service-details__item { margin-bottom: 2.25rem; } .service-details__card { border-radius: 1.75rem; background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92)); border: 1px solid rgba(148, 163, 184, 0.45); box-shadow: 0 20px 60px rgba(15, 23, 42, 0.95); padding: 2.2rem 2.1rem; } .service-details__image-wrapper { position: relative; border-radius: 1.35rem; overflow: hidden; background: radial-gradient(circle at center, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1)); } .service-details__image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.02); transition: transform .4s ease; } .service-details__image-tag { position: absolute; left: 1rem; bottom: 1rem; padding: .3rem .75rem; border-radius: 999px; background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(148, 163, 184, 0.6); font-size: .75rem; color: rgba(209, 213, 219, 0.95); display: inline-flex; align-items: center; gap: .35rem; } .service-details__image-tag i { font-size: .75rem; color: #22c55e; } .service-details__card:hover .service-details__image-wrapper img { transform: scale(1.06); } /* CONȚINUT TEXT */ .service-details__eyebrow { display: inline-flex; align-items: center; gap: .45rem; padding: .25rem .9rem; border-radius: 999px; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; background: rgba(31, 41, 55, 0.9); border: 1px solid rgba(55, 65, 81, 0.9); color: rgba(209, 213, 219, 0.95); margin-bottom: .9rem; } .service-details__eyebrow i { color: #60a5fa; } .service-details__heading { display: flex; flex-wrap: wrap; gap: .4rem .8rem; align-items: baseline; margin-bottom: .8rem; } .service-details__heading-title { font-size: 1.25rem; font-weight: 700; color: #f9fafb; } .service-details__heading-service { font-size: .9rem; opacity: .85; } .service-details__highlight { margin-top: .6rem; margin-bottom: 1rem; padding: .75rem 1rem; border-radius: .9rem; background: rgba(15, 23, 42, 0.95); border: 1px dashed rgba(75, 85, 99, 0.9); font-size: .93rem; } .service-details__body p { margin-bottom: .6rem; } .service-details__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .7rem; margin-bottom: .4rem; } .service-details__chip { font-size: .78rem; padding: .25rem .7rem; border-radius: 999px; border: 1px solid rgba(75, 85, 99, 0.95); background: rgba(15, 23, 42, 0.95); color: rgba(209, 213, 219, 0.95); } /* Tabel Shared Hosting – păstrat, doar ușor ajustat */ /* Tabel Shared Hosting – stil modern */ .service-details__table-wrapper .table-pricing { color: #e5e7eb; background: rgba(15, 23, 42, 0.96); border-radius: 1rem; overflow: hidden; border-collapse: separate; border-spacing: 0; } .service-details__table-wrapper .table-pricing thead tr { border-bottom: 1px solid rgba(148, 163, 184, 0.5); } .service-details__table-wrapper .table-pricing th, .service-details__table-wrapper .table-pricing td { border-color: rgba(55, 65, 81, 0.6) !important; padding: 0.9rem 0.9rem; vertical-align: middle; } .service-details__table-wrapper .table-pricing th:first-child, .service-details__table-wrapper .table-pricing td:first-child { padding-left: 1.3rem; } .service-details__table-wrapper .table-pricing th:not(:first-child), .service-details__table-wrapper .table-pricing td:not(:first-child) { text-align: center; min-width: 90px; } /* „Pills” pentru numele planurilor */ .plan-pill { display: inline-flex; align-items: center; justify-content: center; padding: 0.45rem 0.9rem; border-radius: 999px; font-size: 0.9rem; font-weight: 600; background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.3), rgba(15, 23, 42, 0.95)); border: 1px solid rgba(96, 165, 250, 0.7); color: #e5e7eb; } .plan-pill--highlight { background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.55), rgba(15, 23, 42, 0.98)); border-color: rgba(96, 165, 250, 0.95); box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3); } /* Rândul de preț – mai evidențiat */ /* Rândul de preț – bară evidențiată */ .table-pricing__price-row td { font-weight: 600; border-top-width: 2px !important; border-top-color: rgba(96, 165, 250, 0.7) !important; background: radial-gradient(circle at top, rgba(30, 64, 175, 0.55), rgba(15, 23, 42, 0.98) ); padding-top: 1rem; padding-bottom: 1rem; } /* „Pills” pentru prețuri */ .price-pill { display: inline-flex; align-items: baseline; justify-content: center; gap: 2px; padding: 0.35rem 0.9rem; border-radius: 999px; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.02em; background: rgba(15, 23, 42, 0.95); color: #e5e7eb; border: 1px solid rgba(148, 163, 184, 0.7); box-shadow: 0 4px 10px rgba(15, 23, 42, 0.7); } /* Prețul planului recomandat – mai „wow” */ .price-pill--highlight { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #f9fafb; border-color: rgba(191, 219, 254, 0.9); box-shadow: 0 0 0 1px rgba(59,130,246,0.4), 0 8px 18px rgba(37, 99, 235, 0.6); transform: translateY(-1px); } /* Alternare subtilă de rânduri (în loc de .table-striped default) */ .service-details__table-wrapper .table-pricing tbody tr:nth-child(odd):not(.table-pricing__price-row) { background-color: rgba(15, 23, 42, 0.96); } .service-details__table-wrapper .table-pricing tbody tr:nth-child(even):not(.table-pricing__price-row) { background-color: rgba(15, 23, 42, 0.9); } /* „da” / „nelimitat” un pic evidențiate */ .service-details__table-wrapper .table-pricing td { text-transform: none; } .service-details__table-wrapper .table-pricing td:nth-child(n+2) { font-size: 0.9rem; } .service-details__table-wrapper .table-pricing td:nth-child(n+2) { /* stil fin pentru valori */ } .service-details__table-wrapper .table-pricing td:first-child { font-weight: 500; font-size: 0.92rem; } /* Mobil: scroll orizontal (deja ajută .table-responsive) + padding mai mic */ @media (max-width: 767.98px) { .service-details__table-wrapper .table-pricing th, .service-details__table-wrapper .table-pricing td { padding: 0.6rem 0.6rem; } .service-details__table-wrapper .table-pricing th:first-child, .service-details__table-wrapper .table-pricing td:first-child { padding-left: 0.9rem; } } /* Carduri secundare din Telefonie */ .service-details__mini-cards .card { border-radius: 1rem; background-color: rgba(15, 23, 42, 0.95) !important; border: 1px solid rgba(55, 65, 81, 0.95) !important; box-shadow: none !important; } .service-details__mini-cards .card-body p { font-size: .9rem; } /* Footer buton */ .service-details__actions { margin-top: 1.5rem; text-align: right; } /* RESPONSIVE */ @media (max-width: 991.98px) { .service-details__card { padding: 1.6rem 1.4rem; } } @media (max-width: 767.98px) { .service-details { padding: 3rem 0 2.5rem; } .service-details__card { padding: 1.4rem 1.1rem; } .service-details__image-wrapper img { max-height: 260px; } .service-details__actions { text-align: left; margin-top: 1.2rem; } .service-details__nav-link { white-space: normal; } } /* Tabel Shared Hosting */ /* -------------------------------------------------- */ /* Vertical Glow Column Effect */ /* -------------------------------------------------- */ table.table-pricing { position: relative; } /* Wrap entire 3rd column (iNES-15) in a glow layer */ table.table-pricing .glow-col { position: relative; } /* Glow track */ table.table-pricing .glow-col::before { content: ""; position: absolute; top: -2000px; bottom: -2000px; left: 50%; transform: translateX(-50%); width: 145%; max-width: 140px; background: radial-gradient( circle, rgba(59,130,246,0.55) 0%, rgba(59,130,246,0.30) 30%, rgba(59,130,246,0.15) 60%, rgba(15,23,42,0.0) 100% ); filter: blur(18px); opacity: 0.45; pointer-events: none; z-index: 1; /* animația de pulse soft */ animation: glowPulseCol 6s ease-in-out infinite; } @keyframes glowPulseCol { 0% { opacity: 0.35; transform: translateX(-50%) scaleX(1); } 40% { opacity: 0.8; transform: translateX(-50%) scaleX(1.12); } 100% { opacity: 0.35; transform: translateX(-50%) scaleX(1); } } /* Ensure that text stays above the glow */ table.table-pricing th, table.table-pricing td { position: relative; z-index: 3; } /* Optional: subtle border highlight only for the 3rd column cells */ table.table-pricing td:nth-child(4), table.table-pricing th:nth-child(4) { background: rgba(59,130,246,0.06); } .table-responsive { overflow-x: auto; } .table { color: #e5e7eb; background-color: rgba(15, 23, 42, 0.9); border-radius: 0.75rem; overflow: hidden; } .table th, .table td { border-color: rgba(148, 163, 184, 0.45) !important; padding: 0.75rem 0.85rem; white-space: nowrap; } .table thead th { background-color: rgba(15, 23, 42, 0.95); } /* Marker Plan Recomandat */ /* --------------------------------------------- */ /* Soft Glow Recommended Badge */ /* --------------------------------------------- */ .recommended-badge { position: absolute; top: 48px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; background: rgba(59, 130, 246, 0.28); backdrop-filter: blur(6px); color: #eaf2ff; /* SOFT GLOW EFFECT */ box-shadow: 0 0 6px rgba(59, 130, 246, 0.5), 0 0 12px rgba(59, 130, 246, 0.35), inset 0 0 6px rgba(59, 130, 246, 0.3); border: 1px solid rgba(96, 165, 250, 0.6); } /* Highlight special pentru pill-ul Recomandat */ .plan-pill--recommended { background: radial-gradient(circle at top left, rgba(59,130,246,0.75), rgba(15,23,42,0.95) ); border-color: rgba(96,165,250,0.9); box-shadow: 0 0 6px rgba(96,165,250,0.55), 0 0 14px rgba(59,130,246,0.35); } /* FAQ */ .faq-item { background: rgba(15, 23, 42, 0.9); border-radius: .8rem; padding: 1rem 1.25rem; margin-bottom: .8rem; border: 1px solid rgba(148, 163, 184, 0.4); } .faq-question { font-weight: 600; cursor: pointer; } .faq-answer { display: none; margin-top: .6rem; border-left: 3px solid var(--bs-primary); padding-left: .75rem; font-size: .95rem; color: rgba(209, 213, 219, 0.95); } .faq { background: radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.2), transparent 60%), linear-gradient(to bottom, #020617, #020617); } .faq .display-6 { font-size: clamp(1.8rem, 3vw, 2.3rem); } .faq-intro { max-width: 38rem; margin: 0.5rem auto 0; color: rgba(209, 213, 219, 0.9); } .accordion-item { background-color: transparent; border-color: rgba(55, 65, 81, 0.85); } .accordion-button { background-color: rgba(15, 23, 42, 0.95); color: #e5e7eb; box-shadow: none; } .accordion-button::after { filter: invert(1) grayscale(1); } .accordion-button:not(.collapsed) { background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(79, 70, 229, 0.9)); color: #f9fafb; box-shadow: none; } .accordion-body { background-color: rgba(15, 23, 42, 0.9); color: #e5e7eb; } .accordion-body p { margin-bottom: 0.5rem; } /* Business Info (dacă vei folosi ulterior) */ .business-info { padding: 40px 0; margin-bottom: 30px; border-radius: 1.5rem; overflow: hidden; background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9)); border: 1px solid var(--custom-border); } .business-info__content { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; padding: 24px; gap: 1.5rem; } .business-info__content-text, .business-info__content-image { flex: 1; min-width: 280px; } .business-info__content-image img { max-width: 100%; height: auto; border-radius: 1.25rem; box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9); } .business-info__content-description { margin-bottom: 1rem; } .business-info--reversed .business-info__content { flex-direction: row-reverse; } /* Header generic */ .landing-header { text-align: center; padding: 1.5rem 0 1rem; margin-bottom: 1rem; } .landing-header__title { font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 700; color: #f9fafb; margin: 0; } .accent { color: var(--bs-primary); } .underline { text-decoration: underline; } /* Butoane tip „pills” custom */ .button { display: inline-block; padding: 0.6rem 1.6rem; background-color: transparent; border: 1px solid var(--bs-primary); color: #f9fafb; text-decoration: none; border-radius: 999px; font-weight: 500; transition: all 0.25s ease; cursor: pointer; } .button:hover { background-color: var(--bs-primary); color: #f9fafb; } .button--accent { background-color: var(--bs-primary); color: #f9fafb; } .button--rounded { border-radius: 999px; } .business-map iframe { border-radius: 1rem; box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9); margin-top: 30px; } .content--wbg { background-color: rgba(15, 23, 42, 0.9); padding: 1.5rem; border-radius: 1.25rem; margin: 1.25rem 0; } .list { list-style-type: none; padding-left: 0; } .list--center { text-align: center; } .list--center li { margin-bottom: 0.5rem; } .testimonial-avatar { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; } .navbar-nav .nav-link.active { font-weight: 600; position: relative; } .navbar-nav .nav-link.active:after { content: ""; position: absolute; bottom: 0; left: 0.5rem; right: 0.5rem; height: 2px; background-color: var(--bs-primary); } /* ========== RESPONSIVE ========== */ @media (max-width: 991.98px) { .hero { padding: 3.5rem 0; } .hero .row { text-align: center; } .hero .col-lg-6:first-child { margin-bottom: 2rem; } .cta-buttons { justify-content: center; } .display-4 { font-size: 2.2rem; } .display-5 { font-size: 1.9rem; } .lead { font-size: 1rem; } .business-info__content, .business-info--reversed .business-info__content { flex-direction: column; align-items: flex-start; } } @media (max-width: 767.98px) { .hero { padding: 3rem 0; min-height: auto; } .py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; } .cta-buttons { flex-direction: column; } .cta-buttons .btn { width: 100%; text-align: center; white-space: normal; } .business-info { padding: 1.5rem 0; } .service-detail-card .card-body > .row { flex-direction: column; } .service-detail-card .col-lg-5, .service-detail-card .col-lg-7 { width: 100%; } .service-detail-card__image img { max-height: 260px; } } .service-details__header { text-align: center; max-width: 800px; margin: 0 auto 2rem auto; /* centrăm și containerul */ } .service-details__title { text-align: center; } .service-details__subtitle { text-align: center; margin-top: 0.5rem; color: rgba(255, 255, 255, 0.85); } /* Bandă de Trust – container general */ .trust-band { margin: 2rem 0; } .trust-band .d-flex { /* ne asigurăm că nu se înghesuie la mijloc */ align-items: flex-start; } /* Textul din stânga */ .trust-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; color: rgba(209, 213, 219, 0.9); } .trust-label + .fw-semibold { color: #f9fafb; font-size: 1.05rem; line-height: 1.5; max-width: 420px; } /* Badge-urile din dreapta – GRID RESPONSIVE */ .trust-items { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, minmax(0, 1fr)); min-width: 260px; } /* Badge individual */ .trust-badge { background: rgba(15, 23, 42, 0.9); padding: 0.75rem 1.1rem; border-radius: 999px; font-size: 0.9rem; font-weight: 500; display: flex; flex-direction: column; /* icon sus, text jos */ align-items: center; /* centru orizontal */ text-align: center; /* centru text */ gap: 0.4rem; /* distanță între icon și text */ border: 1px solid rgba(148, 163, 184, 0.4); backdrop-filter: blur(5px); white-space: normal; /* permite text pe mai multe rânduri */ line-height: 1.3; word-break: keep-all; } .trust-badge i { font-size: 1.1rem; color: #60a5fa; } /* Desktop mare: 4 pe un rând */ @media (min-width: 1200px) { .trust-items { grid-template-columns: repeat(4, minmax(0, 1fr)); } } /* Sub 992px: text deasupra, badge-uri dedesubt pe 2 coloane */ @media (max-width: 991.98px) { .trust-band .d-flex { align-items: flex-start; } .trust-items { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); } } /* Mobil: badge-uri pe o singură coloană */ @media (max-width: 576.98px) { .trust-items { grid-template-columns: 1fr; } .trust-badge { width: 100%; justify-content: flex-start; white-space: normal; } } .hero, #servicii, .trust-band, .service-details-container, .service-details, .trust-bar, .content--wbg { background: transparent !important; } /* Elimină orice background local */ .hero, .why-ines, .business-info, .business-info *, .why-ines *, #home, #why-ines { background: transparent !important; } .hero::before, .why-ines::before, .business-info::before { background: transparent !important; } .why-ines, .why-ines * { text-align: center !important; } /* Iconițe din cardurile “De ce iNES Business” */ .why-ines i, .business-info i { display: block; margin: 0 auto 0.75rem auto; /* centrează iconul */ font-size: 2rem; /* îl facem puțin mai mare */ color: var(--bs-primary); /* culoare corporate */ } /* Cardurile "De ce iNES Business" */ .why-ines-box { text-align: center !important; } /* Centrare HARD pentru icon în cardurile "De ce iNES Business" */ .why-ines-box { display: flex; flex-direction: column; align-items: center; /* tot conținutul cardului centrat */ text-align: center; } .why-ines-box-icon { display: flex !important; justify-content: center !important; align-items: center !important; width: 100% !important; margin-bottom: 0.75rem; padding: 0; } .why-ines-box-icon i { font-size: 2.4rem !important; margin: 0 !important; }
/* Categoriile din "Serviciile noastre B2B" – ascunse implicit */
.service-category {
  display: none;
  margin-top: 2rem;
}

/* Categoria activă (când se apasă pe un element din bara de sus) */
.service-category.active {
  display: block;
}

/* Titlul categoriei – centrat */
.service-category-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5e7eb;
}

/* ================================
   PARTENERI CERTIFICAȚI (Premium B&W)
   ================================ */

.why-ines-partners {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    text-align: center;
}

.why-ines-partners-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: rgba(156, 163, 175, 0.9);
}

.why-ines-partners-title {
    font-size: 1.1rem;
    color: rgba(229, 231, 235, 0.95);
    margin-top: 0.5rem;
    margin-bottom: 1.8rem;
}

.why-ines-partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem 2.4rem;
}

.partner-logo {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.35);
    backdrop-filter: blur(6px);
    padding: 0.9rem 1.4rem;
    border-radius: 1rem;
    min-width: 150px;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo img {
    max-height: 42px;
    width: auto;
    filter: grayscale(100%) brightness(1.3) contrast(1.15);
    opacity: 0.8;
    transition: all 0.25s ease;
}

.partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 576px) {
    .partner-logo {
        min-width: 130px;
        max-width: 160px;
        padding: 0.7rem 1rem;
    }

    .partner-logo img {
        max-height: 32px;
    }
}
/* Elimină linia albă de sub imagine în HERO */
.features__section-content {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    -webkit-mask-image: linear-gradient(to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 98%,
        rgba(0,0,0,0) 100%
    );
    mask-image: linear-gradient(to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 98%,
        rgba(0,0,0,0) 100%
    );
}

/* Mărim imaginea ca să împingem complet linia în afară */
.features__section-img {
    display: block;
    width: 103%;
    height: auto;
    transform: translateY(-4px);
}
/* =========================
   HERO – variantă PDF
   ========================= */

.b2b-hero {
  padding: 5rem 0 4.5rem;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.b2b-hero .container {
  max-width: 920px;
}

/* ascundem vechiul nav din header dacă a rămas */
.b2b-nav {
  display: none !important;
}

/* chip București */
.b2b-location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 10, 25, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  font-size: 0.8rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75);
}

.b2b-location-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left,
    rgba(124, 58, 237, 0.8),
    rgba(37, 99, 235, 0.4));
  font-size: 0.9rem;
}

/* titlu mare */

.b2b-hero-title {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}

/* subtitlu */

.b2b-hero-lead {
  color: #9ca3af;
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.b2b-hero-lead-strong {
  display: inline-block;
  margin-top: 0.1rem;
  font-weight: 700;
  color: #e5e7eb;
}

/* CTA buttons */

.b2b-hero-cta-group {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.8rem;
}

.b2b-btn-primary,
.b2b-btn-outline {
  border-radius: 999px;
  padding: 0.9rem 1.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  border-width: 1px;
  transition: all 0.2s ease;
}

.b2b-btn-primary {
  background: radial-gradient(circle at top left,
    #8b5cf6,
    #7c3aed);
  border-color: rgba(191, 219, 254, 0.9);
  color: #f9fafb;
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.55),
    0 24px 60px rgba(0, 0, 0, 0.9);
}

.b2b-btn-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.b2b-btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: #f9fafb;
}

.b2b-btn-outline:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(191, 219, 254, 0.9);
}

.b2b-btn-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: rgba(15, 23, 42, 0.9);
}

.b2b-btn-icon-outline {
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
}

/* Bara servicii */

.b2b-hero-services-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.b2b-hero-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-radius: 1.8rem;
  background: radial-gradient(circle at top left,
    rgba(15, 23, 42, 0.98),
    rgba(6, 6, 18, 0.98));
  border: 1px solid rgba(75, 85, 99, 0.9);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85);
}

.b2b-hero-service {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 150px;
  justify-content: center;
}

.b2b-hero-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid rgba(129, 140, 248, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #f9fafb;
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.95),
    0 0 40px rgba(129, 140, 248, 0.55);
}

.b2b-hero-service-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f9fafb;
  text-align: left;
}

/* text sub bară */

.b2b-hero-services-footnote {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.b2b-hero-bold {
  font-weight: 700;
}

/* responsive */

@media (max-width: 991.98px) {
  .b2b-hero {
    padding-top: 4rem;
    min-height: auto;
  }

  .b2b-hero-services {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .b2b-hero {
    padding: 3.5rem 0 3rem;
  }

  .b2b-hero-services {
    flex-direction: column;
    align-items: stretch;
  }

  .b2b-hero-service {
    justify-content: flex-start;
  }
}
/* Subtitlu HERO — versiune corectată */
.b2b-hero-lead {
  margin-top: 0.5rem;
  margin-bottom: 2.2rem;
  line-height: 1.45;
  text-align: center;
}

.b2b-hero-lead-line1 {
  font-size: 1.15rem;     /* mai mare */
  color: #d1d5db;         /* gri deschis modern */
  font-weight: 500;       /* semi-bold */
}

.b2b-hero-lead-line2 {
  font-size: 1.2rem;      /* puțin mai mare decât linia 1 */
  color: #ffffff;         /* alb + vizibilitate */
  font-weight: 700;       /* bold */
  display: inline-block;
  margin-top: 0.3rem;
}
/* HERO - Footnote centrat și mai mare */
.b2b-hero-services-footnote {
  text-align: center;
  font-size: 1.1rem; /* mai mare */
  color: rgba(229, 231, 235, 0.9);
  margin-top: 1.5rem;
  line-height: 1.45;
  font-weight: 400;
}

.b2b-hero-bold {
  font-weight: 700;
  color: #ffffff;
}
.b2b-section-title {
    text-align: center;
  font-size: clamp(2.4rem, 3.7vw, 3.1rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.02em !important;
}
/* Titlul secțiunii Serviciile Noastre B2B */
.b2b-section-title {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

/* Subtitlul de sub Serviciile Noastre – acum identic ca dimensiune cu b2b-hero-lead */
.b2b-subtitle-2 {
    font-size: clamp(1rem, 1.5vw, 1.1rem); /* identic cu hero lead */
    font-weight: 400;
    color: rgba(209, 213, 219, 0.9);
    text-align: center;
    max-width: 1100px;
    margin: 0.8rem auto 0 auto;
    line-height: 1.45; /* exact ca hero lead */
}

.b2b-subtitle-2 .bold {
    font-weight: 700;
    color: #fff;
}

/* Titlu WHY iNES – identic cu "Serviciile Noastre B2B" */
.why-ines-title {
    font-size: clamp(1.9rem, 3vw, 2.4rem); /* exact ca b2b-section-title */
    font-weight: 800;
    color: #f9fafb;
    text-align: center;
    letter-spacing: 0.01em;
}

/* Subtitlu WHY iNES – identic cu b2b-subtitle-2 */
.why-ines-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1rem); /* identic cu hero-lead & subtitle-2 */
    font-weight: 400;
    line-height: 1.45;
    max-width: 1100px;
    margin: 0.8rem auto 0 auto;
    color: rgba(209, 213, 219, 0.9);
    text-align: center;
}
/* Scoatem complet fundalul CTA FINAL */
#cta.b2b-cta {
    background: transparent !important;
}

.b2b-cta-box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
/* CTA – text pe două rânduri, centrat, cu al doilea rând evidențiat */
.b2b-cta-text {
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.5;
    max-width: 40rem;
    margin: 0 auto 2rem;
    color: rgba(238, 242, 255, 0.92);
}

.b2b-cta-strong {
    display: block;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.15rem;
}
/* =========================
   Proces colaborare 1-2-3
   ========================= */
.why-ines-process {
  margin-top: 3rem;
}

/* bara cu 1–2–3 de deasupra cardurilor */
.why-ines-process-track {
  max-width: 820px;
  margin: 0 auto 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;            /* distanța între buline și linii */
}

/* segmentele dintre buline */
.why-ines-process-line {
  flex: 1;
  height: 0; /* linia e dată de border, nu de background */
  border-top: 2px solid rgba(148, 163, 184, 0.85);
  margin: 0;
}

.why-ines-process-line--dashed {
  border-top-style: dashed; /* doar stilul devine punctat */
}

/* bulinele 1–2–3 */
.why-ines-process-dot {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 2px solid rgba(249, 250, 251, 0.95);
  background: radial-gradient(circle at top,
      rgba(55, 65, 81, 0.4),
      rgba(15, 23, 42, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: #f9fafb;
  box-shadow:
    0 0 0 4px rgba(15, 23, 42, 1),
    0 12px 30px rgba(0, 0, 0, 0.85);
}

/* mobil: lăsăm bara orizontală, doar micșorăm spațiile */
@media (max-width: 767.98px) {
  .why-ines-process-track {
    max-width: 100%;
    gap: 0.75rem;
  }
}

.why-ines-box {
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  background: radial-gradient(circle at top left, rgba(15,23,42,.96), rgba(15,23,42,.9));
  border: 1px solid var(--custom-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hero {
  padding-top: 3.5rem;
  padding-bottom: 1rem; /* micșorat */
}
.b2b-icon-tilt {
    font-size: 0.95em;
    transform: rotate(35deg) scale(0.95);
    display: inline-block;
    opacity: 0.9;
    margin-left: 2px;

    /* Glow subtil ca în PDF */
    filter: drop-shadow(0 0 4px rgba(124, 58, 237, 0.45));
    transition: 0.2s ease;
}

.b2b-btn-outline:hover .b2b-icon-tilt,
.b2b-btn-primary:hover .b2b-icon-tilt {
    transform: rotate(35deg) scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.6));
}
/* Fundal pentru rândurile de caracteristici în Shared Hosting */
.service-details__table-wrapper .table-pricing tbody tr.feature-row td {
    background-color: rgba(59, 130, 246, 0.07) !important;
}

.service-details__table-wrapper .table-pricing tbody tr.feature-row:nth-child(even) td {
    background-color: rgba(59, 130, 246, 0.10) !important;
}

/* Centrare card pentru categoria "Suport IT externalizat" */
#cat-suport .row {
    display: flex;
    justify-content: center;
}

#cat-suport .col-md-6 {
    max-width: 500px; /* opțional – menține un look premium */
}
/* footer pentru cardurile de servicii (tag-uri + buton) */
.b2b-service-card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;   /* aliniază butonul jos, la același nivel cu tag-urile */
  gap: 0.75rem;
  margin-top: 1.2rem;
}

/* pe mobil punem butonul sub tag-uri, pe coloană */
@media (max-width: 767.98px) {
  .b2b-service-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Aranjare frumoasă text în bara de servicii */

/* Mai bună aliniere verticală și spacing */
.b2b-hero-service {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.3rem;
}

/* Iconul */
.b2b-hero-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 50%;
    font-size: 1.2rem;
}

/* TEXT — îmbunătățit */
.b2b-hero-service-text {
    display: flex;
    flex-direction: column;
    line-height: 1.22;
}

/* Primul rând */
.b2b-hero-service-text span:first-child {
    font-weight: 600;
    font-size: 0.92rem;
    color: #ffffff;
}

/* Al doilea rând (dacă există) */
.b2b-hero-service-text span:last-child {
    font-size: 1.18rem;
    opacity: 0.85;
}

/* Pe mobil: centrare totală */
@media (max-width: 576px) {
  .b2b-hero-service {
      justify-content: center;
      text-align: center;
  }
}
/* Servicii principale – text pe un singur rând */
.b2b-hero-service {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.3rem;
    cursor: pointer;
}

/* Icon – proporții premium */
.b2b-hero-service-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 1.15rem;
}

/* TEXT — acum 1 singur rând, bine echilibrat */
.b2b-hero-service-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;    /* împiedică împărțirea pe două rânduri */
    letter-spacing: 0.2px;  /* mai premium */
}

/* Pe mobil – centrat */
@media (max-width: 576px) {
  .b2b-hero-service {
      justify-content: center;
      text-align: center;
  }
}
/* =========================
   De ce iNES Business – Magic Bento
   ========================= */
.why-ines-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.why-ines-bento-item {
  position: relative;
  --bento-offset-y: 0px;
}

/* offset-uri ca în layout-ul PDF: stânga jos, centru sus, dreapta jos */
.why-ines-bento-item:nth-child(1) { --bento-offset-y: 10px; }
.why-ines-bento-item:nth-child(2) { --bento-offset-y: 0px; }
.why-ines-bento-item:nth-child(3) { --bento-offset-y: 18px; }

.why-ines-bento-card {
  position: relative;
  padding: 1.8rem 1.6rem;
  border-radius: 1.75rem;
  background: radial-gradient(circle at top left,
              rgba(15, 23, 42, 0.98),
              rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
  overflow: hidden;
  transform-origin: center center;
  transform: translateY(var(--bento-offset-y));
  transition:
    transform .45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow .45s ease,
    border-color .45s ease,
    background .45s ease;
}

/* glow subtil pe hover */
.why-ines-bento-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left,
      rgba(59, 130, 246, 0.35),
      transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.why-ines-bento-card:hover {
  transform:
    translateY(calc(var(--bento-offset-y) - 10px))
    rotate3d(1, -1, 0, 7deg);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 1);
  border-color: rgba(191, 219, 254, 0.85);
  background: radial-gradient(circle at top left,
              rgba(30, 64, 175, 0.55),
              rgba(15, 23, 42, 0.98));
}

.why-ines-bento-card:hover::before {
  opacity: 1;
}

/* icon + text în card – folosim deja stilurile existente */
.why-ines-bento-card .why-ines-box-icon {
  margin-bottom: 0.85rem;
}

.why-ines-bento-card .why-ines-box-title {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.why-ines-bento-card .why-ines-box-text {
  font-size: 0.95rem;
  color: rgba(209, 213, 219, 0.9);
}

/* responsive */
@media (max-width: 991.98px) {
  .why-ines-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-ines-bento-item:nth-child(3) {
    --bento-offset-y: 0px;
  }
}

@media (max-width: 576.98px) {
  .why-ines-bento {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .why-ines-bento-item {
    --bento-offset-y: 0px;
  }
  .why-ines-bento-card {
    transform: translateY(0);
  }
}
/* =========================
   3D Magic Bento – model global pentru carduri
   ========================= */

/* Baza pentru toate cardurile mari */
.b2b-service-card,
.b2b-detail-card,
.service-details__card,
.why-ines-process-cards .why-ines-box {
  position: relative;
  z-index: 0;
  border-radius: 1.75rem;
  background: radial-gradient(circle at top left,
              rgba(15, 23, 42, 0.98),
              rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.95);
  overflow: hidden;
  transform-origin: center center;
  --card-offset-y: 0px;
  transform: translateY(var(--card-offset-y));
  transition:
    transform .45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow .45s ease,
    border-color .45s ease,
    background .45s ease;
}

/* Asigurăm că textul stă deasupra glow-ului */
.b2b-service-card > *,
.b2b-detail-card > *,
.service-details__card > *,
.why-ines-process-cards .why-ines-box > * {
  position: relative;
  z-index: 1;
}

/* Strat de glow în spate */
.b2b-service-card::before,
.b2b-detail-card::before,
.service-details__card::before,
.why-ines-process-cards .why-ines-box::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left,
      rgba(59, 130, 246, 0.35),
      transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
  z-index: 0;
}

/* Hover 3D + glow */
.b2b-service-card:hover,
.b2b-detail-card:hover,
.service-details__card:hover,
.why-ines-process-cards .why-ines-box:hover {
  transform:
    translateY(calc(var(--card-offset-y) - 10px))
    rotate3d(1, -1, 0, 7deg);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 1);
  border-color: rgba(191, 219, 254, 0.85);
  background: radial-gradient(circle at top left,
              rgba(30, 64, 175, 0.55),
              rgba(15, 23, 42, 0.98));
}

.b2b-service-card:hover::before,
.b2b-detail-card:hover::before,
.service-details__card:hover::before,
.why-ines-process-cards .why-ines-box:hover::before {
  opacity: 1;
}
/* Stagger – Serviciile Noastre B2B (toate grilele cu .b2b-services-grid) */
.b2b-services-grid > [class*="col-"]:nth-child(odd) .b2b-service-card {
  --card-offset-y: 12px;
}
.b2b-services-grid > [class*="col-"]:nth-child(even) .b2b-service-card {
  --card-offset-y: 0px;
}

/* Stagger – Procesul 1–2–3 */
.why-ines-process-cards > [class*="col-"]:nth-child(1) .why-ines-box {
  --card-offset-y: 6px;
}
.why-ines-process-cards > [class*="col-"]:nth-child(2) .why-ines-box {
  --card-offset-y: 0px;
}
.why-ines-process-cards > [class*="col-"]:nth-child(3) .why-ines-box {
  --card-offset-y: 10px;
}

/* Cardurile din Detalii servicii și Shared Hosting – rămân pe linie,
   doar 3D la hover (offset 0 implicit) */
/* Bara cu serviciile principale */
.b2b-hero-services {
  display: flex;
  align-items: center;
  justify-content: space-evenly;  /* în loc de space-between */
  gap: 2.5rem;                    /* spațiu egal între ele */
}

/* Fiecare serviciu din bară */
.b2b-hero-service {
  flex: 0 0 auto;                 /* nu se întind forțat */
  min-width: 260px;               /* toate au lățime apropiată */
  display: flex;
  align-items: center;
  justify-content: center;        /* icon + text centrate în “pastilă” */
}

/* Textul din pastilă */
.b2b-hero-service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;               /* sau center, dacă îi vrei perfect centrați */
}
/* Rândul de sus - normal */
.b2b-services-grid > .col-md-6 {
    display: flex;
}

/* Card 3 – tras spre stânga */
.datacenter-lower-left {
    justify-content: flex-start;
    padding-right: 80px;   /* ajustează vizual */
}

/* Card 4 – tras spre dreapta */
.datacenter-lower-right {
    justify-content: flex-end;
    padding-left: 80px;    /* ajustează vizual */
}

/* Cardurile să nu se întindă pe toată lățimea la row 2 */
.datacenter-lower-left .b2b-service-card,
.datacenter-lower-right .b2b-service-card {
    width: 85%;            /* păstrează proporția, poți ajusta */
}
/* Layout special pentru secțiunea Datacenter */
.datacenter-row > .col-md-6 {
  display: flex;
}

/* Rândul de sus: 2 carduri centrate frumos */
.datacenter-top .b2b-service-card {
  max-width: 94%;
  margin: 0 auto;
}

/* Rândul de jos: cardurile trase spre margini */
@media (min-width: 992px) {
  .datacenter-lower-left {
    justify-content: flex-start;
  }

  .datacenter-lower-right {
    justify-content: flex-end;
  }

  .datacenter-lower-left .b2b-service-card,
  .datacenter-lower-right .b2b-service-card {
    max-width: 88%;
  }

  /* împingem puțin spre margini */
  .datacenter-lower-left .b2b-service-card {
    margin-left: -40px;
  }

  .datacenter-lower-right .b2b-service-card {
    margin-right: -40px;
  }
}

/* pe mobil/tabletă rămân normale, pe două rânduri */
@media (max-width: 991.98px) {
  .datacenter-row > .col-md-6 {
    display: block;
  }

  .datacenter-row .b2b-service-card {
    max-width: 100%;
    margin: 0;
  }
}
/* --- CARDURI 1 și 2 – aliniere perfectă, aceeași lățime --- */
.datacenter-top {
  display: flex;
  justify-content: center;
}

.datacenter-top .b2b-service-card {
  width: 92%;               /* Lățime fixă identică */
  max-width: 550px;         /* Ca să fie egale indiferent de text */
  margin: 0 auto;
}

/* Micsorăm puțin distanța dintre cele două carduri */
@media (min-width: 992px) {
  .datacenter-top:nth-child(1) .b2b-service-card {
    margin-right: 10px;
  }
  .datacenter-top:nth-child(2) .b2b-service-card {
    margin-left: 10px;
  }
}
/* Carduri 3 și 4 – în trepte */
@media (min-width: 992px) {
  .datacenter-lower-left {
    display: flex;
    justify-content: flex-start;
  }

  .datacenter-lower-right {
    display: flex;
    justify-content: flex-end;
  }

  .datacenter-lower-left .b2b-service-card,
  .datacenter-lower-right .b2b-service-card {
    width: 88%;
    max-width: 520px;
  }

  .datacenter-lower-left .b2b-service-card {
    margin-left: -40px;
  }

  .datacenter-lower-right .b2b-service-card {
    margin-right: -40px;
  }
}
/* =========================
   Datacenter – Hexagon core node
   ========================= */

.datacenter-core {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: -30px 0 -10px 0; /* urcă nodul între rânduri */
  pointer-events: none;
  z-index: 2;
}

/* container hexagon */
.datacenter-core-hex {
  position: relative;
  width: 96px;
  height: 56px;
  background: radial-gradient(circle at center,
      rgba(59,130,246,0.25),
      rgba(10,16,35,0.98));
  margin-bottom: 0.65rem;
  clip-path: polygon(
      25% 0%, 75% 0%,
      100% 50%,
      75% 100%, 25% 100%,
      0% 50%
  );
  box-shadow:
    0 0 0 1px rgba(148,163,184,0.8),
    0 0 18px rgba(59,130,246,0.9),
    0 22px 50px rgba(0,0,0,0.9);
  animation: hexGlow 5s ease-in-out infinite;
}

/* inner glow layer */
.datacenter-core-hex-inner {
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  background: radial-gradient(circle at top,
      rgba(37,99,235,0.6),
      rgba(15,23,42,0.98));
  opacity: 0.85;
  filter: blur(0.2px);
}

/* icon în hexagon */
.datacenter-core-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5edff;
  font-size: 1.4rem;
  text-shadow:
    0 0 8px rgba(191,219,254,0.8),
    0 0 16px rgba(59,130,246,0.9);
}

/* animație glow */
@keyframes hexGlow {
  0% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 0 1px rgba(148,163,184,0.8),
      0 0 14px rgba(59,130,246,0.7),
      0 18px 45px rgba(0,0,0,0.85);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
      0 0 0 1px rgba(191,219,254,1),
      0 0 26px rgba(96,165,250,1),
      0 26px 60px rgba(0,0,0,0.95);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 0 1px rgba(148,163,184,0.8),
      0 0 14px rgba(59,130,246,0.7),
      0 18px 45px rgba(0,0,0,0.85);
  }
}

/* eticheta de sub nod */
.datacenter-core-label {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(209,213,219,0.9);
  text-align: center;
}

/* linii către carduri */
.datacenter-core-line {
  position: absolute;
  height: 2px;
  width: 20vw;
  max-width: 260px;
  background: linear-gradient(
      to right,
      transparent,
      rgba(148,163,184,0.7),
      rgba(96,165,250,0.9),
      transparent
  );
  filter: blur(0.7px);
  opacity: 0.55;
}

/* sus-stânga (spre cardul 1) */
.datacenter-core-line.line-tl {
  top: 38px;
  left: calc(50% - 20vw);
  transform-origin: right center;
  transform: rotate(-16deg);
}

/* sus-dreapta (spre cardul 2) */
.datacenter-core-line.line-tr {
  top: 38px;
  right: calc(50% - 20vw);
  transform-origin: left center;
  transform: rotate(16deg);
}

/* jos-stânga (spre cardul 3) */
.datacenter-core-line.line-bl {
  bottom: 38px;
  left: calc(50% - 20vw);
  transform-origin: right center;
  transform: rotate(16deg);
}

/* jos-dreapta (spre cardul 4) */
.datacenter-core-line.line-br {
  bottom: 38px;
  right: calc(50% - 20vw);
  transform-origin: left center;
  transform: rotate(-16deg);
}

/* responsive fine tuning */
@media (max-width: 1199.98px) {
  .datacenter-core-line {
    width: 24vw;
  }
}

@media (max-width: 991.98px) {
  .datacenter-core {
    height: 140px;
    margin: -10px 0 0 0;
  }
  .datacenter-core-line {
    opacity: 0.4;
    width: 32vw;
  }
}

@media (max-width: 767.98px) {
  .datacenter-core {
    height: 110px;
  }
  .datacenter-core-hex {
    width: 80px;
    height: 48px;
  }
  .datacenter-core-line {
    display: none; /* pe mobil poți să le ascunzi ca să nu fie încărcat */
  }
}
/* =========================
   Datacenter – Hexagon core node (v2)
   ========================= */

.datacenter-core {
  position: relative;
  width: 100%;
  height: 120px;               /* mai mic, mai aproape de carduri */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px 0 10px 0;     /* urcă nodul între rândul 1 și 2 */
  pointer-events: none;
  z-index: 2;
}

/* container hexagon */
.datacenter-core-hex {
  position: relative;
  width: 88px;
  height: 52px;
  background: radial-gradient(circle at center,
      rgba(59,130,246,0.25),
      rgba(10,16,35,0.98));
  margin-bottom: 0.4rem;
  clip-path: polygon(
      25% 0%, 75% 0%,
      100% 50%,
      75% 100%, 25% 100%,
      0% 50%
  );
  box-shadow:
    0 0 0 1px rgba(148,163,184,0.8),
    0 0 18px rgba(59,130,246,0.9),
    0 18px 45px rgba(0,0,0,0.9);
  animation: hexGlow 5s ease-in-out infinite;
}

/* inner glow layer */
.datacenter-core-hex-inner {
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  background: radial-gradient(circle at top,
      rgba(37,99,235,0.6),
      rgba(15,23,42,0.98));
  opacity: 0.85;
}

/* icon */
.datacenter-core-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5edff;
  font-size: 1.35rem;
  text-shadow:
    0 0 8px rgba(191,219,254,0.8),
    0 0 16px rgba(59,130,246,0.9);
}

/* animație glow */
@keyframes hexGlow {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* label sub nod */
.datacenter-core-label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(209,213,219,0.9);
  text-align: center;
}

/* linii către carduri */
.datacenter-core-line {
  position: absolute;
  height: 2px;
  width: 18vw;                 /* mai scurte, mai „curate” */
  max-width: 230px;
  background: linear-gradient(
      to right,
      transparent,
      rgba(148,163,184,0.7),
      rgba(96,165,250,0.9),
      transparent
  );
  filter: blur(0.7px);
  opacity: 0.55;
}

/* sus-stânga (card 1) */
.datacenter-core-line.line-tl {
  top: 34px;
  left: calc(50% - 18vw - 40px);
  transform-origin: right center;
  transform: rotate(-14deg);
}

/* sus-dreapta (card 2) */
.datacenter-core-line.line-tr {
  top: 34px;
  right: calc(50% - 18vw - 40px);
  transform-origin: left center;
  transform: rotate(14deg);
}

/* jos-stânga (card 3) */
.datacenter-core-line.line-bl {
  bottom: 30px;
  left: calc(50% - 18vw - 40px);
  transform-origin: right center;
  transform: rotate(14deg);
}

/* jos-dreapta (card 4) */
.datacenter-core-line.line-br {
  bottom: 30px;
  right: calc(50% - 18vw - 40px);
  transform-origin: left center;
  transform: rotate(-14deg);
}

/* responsive fine tuning */
@media (max-width: 1199.98px) {
  .datacenter-core-line {
    width: 22vw;
    max-width: 220px;
  }
}

@media (max-width: 991.98px) {
  .datacenter-core {
    height: 110px;
    margin: -30px 0 0 0;
  }
  .datacenter-core-line {
    opacity: 0.45;
    width: 28vw;
  }
}

@media (max-width: 767.98px) {
  .datacenter-core {
    height: 100px;
  }
  .datacenter-core-hex {
    width: 78px;
    height: 46px;
  }
  .datacenter-core-line {
    display: none; /* pe mobil, păstrăm doar nodul */
  }
}
@media (min-width: 992px) {
  .datacenter-lower-left .b2b-service-card {
    margin-top: -60px;
  }

  .datacenter-lower-right .b2b-service-card {
    margin-top: -60px;
  }
}
/* Aliniere perfectă carduri jos cu nodul central */
@media (min-width: 992px) {

  /* Ridicăm ușor cardurile de jos */
  .datacenter-lower-left .b2b-service-card,
  .datacenter-lower-right .b2b-service-card {
    margin-top: -60px;  /* Ajustează între -50 și -70 după preferință */
  }

  /* Lățime egală pentru simetrie absolută */
  .datacenter-lower-left .b2b-service-card,
  .datacenter-lower-right .b2b-service-card,
  .datacenter-upper-left .b2b-service-card,
  .datacenter-upper-right .b2b-service-card {
    width: 92%; /* forțează carduri simetrice sus/jos */
  }

  /* Repoziționare pentru margini elegante */
  .datacenter-lower-left .b2b-service-card {
    margin-left: -20px; /* mai aproape de colț */
  }

  .datacenter-lower-right .b2b-service-card {
    margin-right: -20px;
  }
}
/* Ascundem bullet-ul implicit al lui <summary> */
.b2b-detail-more summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Elimină triunghiul default în unele browsere */
.b2b-detail-more summary::-webkit-details-marker {
  display: none;
}

/* Stil pentru text */
.b2b-detail-more .label-less {
  display: none;
}

/* Când <details> este deschis, arătăm „Arată mai puțin” */
.b2b-detail-more[open] .label-more {
  display: none;
}

.b2b-detail-more[open] .label-less {
  display: inline;
}

/* Spațiere conținut detaliat */
.b2b-detail-more-content {
  margin-top: 0.5rem;
  font-size: 0.95em;
}
#detalii-internet ul {
  list-style: none;
  padding-left: 0;
}

#detalii-internet li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 4px;
}

#detalii-internet li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff4e16; /* schimbă cu accentul tău iNES */
  font-weight: bold;
}
/* Stil dedicat doar pentru listele din detalii conectivitate */
#detalii-internet ul {
  list-style: none;          /* scoatem orice list-style global */
  margin: 0 0 0.75rem 0;
  padding: 0;
}

#detalii-internet li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
  font-size: 0.92em;
}

/* Bullet custom (nu depinde de list-style) */
#detalii-internet li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  font-size: 1.1em;
  color: #ff4e16; /* schimbă cu culoarea accent iNES dacă e altă nuanță */
  font-weight: 700;
}
/* Conținut detalii – titlurile mai discrete */
.b2b-detail-more-content h4 {
  font-size: 0.95em;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

/* Text general – mai mic cu ~20% decât textul cardului */
.b2b-detail-more-content {
  margin-top: 0.5rem;
  font-size: 0.85em;
  line-height: 1.4;
}

/* Liste cu bullets */
.b2b-detail-more-content ul {
  list-style: none;
  margin: 0 0 0.75rem 0;
  padding: 0;
}

.b2b-detail-more-content li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
  font-size: 0.85em;
  line-height: 1.4;
}

/* Bullet premium */
.b2b-detail-more-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  font-size: 1em;
  color: #ff4e16; /* culoarea accent iNES */
  font-weight: 700;
}
.b2b-detail-more .label-more {
  color: #ff4e16; /* când detaliile sunt ascunse */
}

.b2b-detail-more[open] .label-less {
  color: #ff4e16; /* când detaliile sunt deschise */
}
