:root {
    --primary-color: #e30613;
    --text-color: #222222;
    --bg-light: #f8f9fa;
    --border-color: #eaeaea;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Meniu */
.site-header {
    border-bottom: 1px solid var(--border-color);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.logo span {
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 24px 0;
    display: inline-block;
}

/* Efectul de linie roșie de la stânga la dreapta */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.search-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Meniu Mobil (Hamburger) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Zona Main */
.main-content {
    padding: 40px 20px;
}

.hero-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.badge {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.hero-card h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Footer */
.site-footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    padding-bottom: 40px;
}

.footer-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 0.98rem;
    color: #000;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding: 20px;
    font-size: 0.89rem;
    color: #000;
}

/* Responsive (Mobil) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .search-icon {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .main-nav.active {
        max-height: 300px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .main-nav a {
        padding: 12px 20px;
        width: 100%;
    }

    .main-nav a::after {
        display: none; /* Linia roșie pe mobil se transformă în border simplu pe stânga dacă dorești */
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--primary-color);
        background-color: var(--bg-light);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}


 :root {
  --ppc-bg: #0B0F0E;
  --ppc-card-bg: #16211F;
  --ppc-card-border: #2A3A37;
  --ppc-text: #FFFFFF;
  --ppc-muted: #C9D2D0;
  --ppc-moss: #4FA98C;
  --ppc-amber: #E0A24B;
}

/* Secțiunea ocupă toată lățimea ecranului, indiferent de .container-ul site-ului */
.ppc-section {
  width: 100%;
  background: var(--ppc-bg);
  color: var(--ppc-text);
  padding: 72px 0;
}

/* Conținutul din interior e limitat la 1300px, la fel ca restul site-ului */
.ppc-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.ppc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ppc-amber);
  margin-bottom: 16px;
}

.ppc-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ppc-amber);
  display: inline-block;
}

.ppc-header {
  text-align: center;
  margin: 0 auto 52px;
  max-width: 680px;
}

.ppc-title {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--ppc-text);
}

.ppc-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ppc-muted);
  margin: 0;
}

.ppc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ppc-card {
  background: var(--ppc-card-bg);
  border: 1px solid var(--ppc-card-border);
  border-radius: 14px;
  padding: 26px 22px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ppc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  border-color: var(--ppc-moss);
}

.ppc-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--ppc-moss);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ppc-icon svg {
  width: 22px;
  height: 22px;
  stroke: #0B0F0E;
  fill: none;
  stroke-width: 1.8;
}

.ppc-card h3 {
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--ppc-text);
}

.ppc-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ppc-muted);
  margin: 0 0 6px;
}

.ppc-phones {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ppc-phones li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ppc-muted);
}

.ppc-phones a {
  color: var(--ppc-amber);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 162, 75, 0.4);
}

.ppc-phones a:hover {
  border-bottom-color: var(--ppc-amber);
}

.ppc-card a.ppc-link {
  color: var(--ppc-moss);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(79, 169, 140, 0.4);
}

.ppc-card a.ppc-link:hover {
  border-bottom-color: var(--ppc-moss);
}

@media (max-width: 900px) {
  .ppc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .ppc-grid { grid-template-columns: 1fr; }
  .ppc-section { padding: 48px 0; }
}


/* Secțiune Pași Transmitere (Light Theme) */
.steps-section {
    background-color: #ffffff;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.steps-header {
    text-align: center;
    margin-bottom: 30px;
}

.sub-title {
    color: #e30613;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.steps-header h2 {
    font-size: 1.8rem;
    color: #111111;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Tab-uri */
.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tab-btn {
    background-color: #f1f3f5;
    color: #495057;
    border: 1px solid #e9ecef;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background-color: #000; /* albastru modern sau #e30613 roșu, după preferință */
    color: #ffffff;
    border-color: #fd0d0d;
}

/* Caseta de alertă */
.info-alert {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 35px;
    text-align: center;
    font-size: 0.95rem;
    color: #333333;
}

.info-alert strong {
    color: #e30613;
}

/* Timeline Vertical */
.timeline {
    position: relative;
    padding-left: 10px;
}

.timeline-item {
    position: relative;
    padding-left: 55px;
    padding-bottom: 35px;
}

/* Linia de legătură între pași */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
}

.timeline-item:last-child::before {
    display: none;
}

/* Cercul cu numărul pasului */
.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
}

.timeline-content h3 {
    font-size: 1.15rem;
    color: #111111;
    margin-bottom: 6px;
    font-weight: 700;
}

.timeline-content p {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Lista numerelor de telefon */
.phone-list {
    list-style: none;
    margin-top: 10px;
    padding: 0;
}

.phone-list li {
    font-size: 0.98rem;
    color: #111;
    margin-bottom: 4px;
}

.phone-list strong {
    color: #c3030a; /* portocaliu/roșu pentru numere */
}




/* Secțiune FAQ */
.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #0b2545;
    font-weight: 800;
    margin-bottom: 30px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active {
    background-color: #ffffff;
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.08);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    font-family: inherit;
}

.faq-item.active .faq-question {
    color: #0d6efd;
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 400;
    color: #0d6efd;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 20px;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
    padding: 0 20px 20px 20px;
    border-top: 1px solid #f1f3f5;
    margin-top: 5px;
}

.faq-answer ol {
    margin-top: 10px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}



/* Secțiune Date Companie */
.company-details-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.company-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.company-card h2 {
    font-size: 1.5rem;
    color: #111111;
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f3f5;
    padding-bottom: 10px;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item.full-width {
    grid-column: span 2;
}

.info-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.95rem;
    color: #212529;
    font-weight: 500;
}

.company-link {
    color: #e30613;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.company-link:hover {
    color: #b8040f;
    text-decoration: underline;
}

.iban-text span {
    color: #6c757d;
    font-weight: 400;
    font-size: 0.85rem;
}

/* Responsivitate pentru dispozitive mobile */
@media (max-width: 600px) {
    .company-info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item.full-width {
        grid-column: span 1;
    }
}