#fw-section-custom-html-d8b2e002-ae2f-4d6d-b35c-37a202a42adb {

/* HERO PROFESIONAL */
.section-hero-professional {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 216, 0, 0.1);
}

/* Background Pattern */
.section-hero-professional::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 216, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 216, 0, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

/* Container */
.section-hero-professional .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Layout Grid */
.section-hero-professional .hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Content Column */
.section-hero-professional .hero-content {
    padding-right: 2rem;
}

/* Header */
.section-hero-professional .hero-header {
    margin-bottom: 3.5rem;
}

.section-hero-professional .hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-hero-professional .hero-title .text-accent {
    color: #FFD800;
    position: relative;
}

.section-hero-professional .hero-title .text-accent::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFD800;
    opacity: 0.5;
}

.section-hero-professional .hero-subtitle {
    color: #ddd;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
}

/* Problem Statement */
.section-hero-professional .problem-statement {
    margin-bottom: 3rem;
}

.section-hero-professional .problem-intro {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid #FFD800;
}

.section-hero-professional .problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.section-hero-professional .problem-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-hero-professional .problem-item:hover {
    background: rgba(255, 216, 0, 0.05);
    border-color: rgba(255, 216, 0, 0.2);
    transform: translateX(5px);
}

.section-hero-professional .problem-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FFD800;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-hero-professional .problem-item:hover::before {
    opacity: 1;
}

.section-hero-professional .problem-marker {
    width: 6px;
    height: 6px;
    background: #FFD800;
    border-radius: 50%;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.section-hero-professional .problem-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Insight Container */
.section-hero-professional .insight-container {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 216, 0, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 216, 0, 0.1);
}

.section-hero-professional .insight-line {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.section-hero-professional .insight-line:last-child {
    margin-bottom: 0;
}

.section-hero-professional .insight-line.highlight {
    background: rgba(255, 216, 0, 0.1);
    padding: 1rem;
    border-radius: 6px;
    margin: 0 -0.5rem;
}

.section-hero-professional .insight-arrow {
    color: #FFD800;
    font-size: 1.5rem;
    margin-right: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.section-hero-professional .insight-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
}

.section-hero-professional .insight-line.highlight .insight-text {
    color: #FFD800;
    font-weight: 600;
}

/* Solution Box */
.section-hero-professional .solution-box {
    background: linear-gradient(135deg, rgba(255, 216, 0, 0.1), rgba(255, 216, 0, 0.05));
    border: 1px solid rgba(255, 216, 0, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-hero-professional .solution-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD800, rgba(255, 216, 0, 0.5));
}

.section-hero-professional .solution-label {
    color: #FFD800;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: block;
}

.section-hero-professional .solution-text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* CTA Container */
.section-hero-professional .cta-container {
    margin-top: 2.5rem;
}

.section-hero-professional .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD800 0%, #ffaa00 100%);
    color: #000;
    text-decoration: none;
    padding: 1.4rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 8px 25px rgba(255, 216, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.section-hero-professional .cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.section-hero-professional .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 216, 0, 0.4);
}

.section-hero-professional .cta-button:hover::before {
    left: 100%;
}

.section-hero-professional .button-icon {
    font-size: 1.4rem;
    margin-right: 1rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.section-hero-professional .cta-button:hover .button-icon {
    transform: translateX(5px);
}

.section-hero-professional .button-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Visual Column */
.section-hero-professional .hero-visual {
    padding-left: 2rem;
    position: sticky;
    top: 2rem;
}

.section-hero-professional .visual-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    height: 100%;
}

.section-hero-professional .card-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Progress Indicator */
.section-hero-professional .progress-indicator {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 216, 0, 0.1);
}

.section-hero-professional .progress-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.section-hero-professional .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD800, #ffaa00);
    border-radius: 3px;
    transition: width 1s ease;
}

.section-hero-professional .progress-label {
    color: #FFD800;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benefit Points */
.section-hero-professional .benefit-points {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.section-hero-professional .benefit {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.section-hero-professional .benefit:hover {
    background: rgba(255, 216, 0, 0.05);
    transform: translateX(3px);
}

.section-hero-professional .benefit-check {
    background: #FFD800;
    color: #000;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.2rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.section-hero-professional .benefit-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-hero-professional .hero-layout {
        gap: 3rem;
    }
    
    .section-hero-professional .hero-title {
        font-size: 2.5rem;
    }
    
    .section-hero-professional .hero-visual {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .section-hero-professional {
        padding: 3rem 1rem;
        min-height: auto;
    }
    
    .section-hero-professional .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-hero-professional .hero-content {
        padding-right: 0;
    }
    
    .section-hero-professional .hero-visual {
        position: static;
        padding-left: 0;
    }
    
    .section-hero-professional .hero-title {
        font-size: 2.2rem;
    }
    
    .section-hero-professional .solution-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-hero-professional .hero-title {
        font-size: 1.8rem;
    }
    
    .section-hero-professional .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-hero-professional .problem-item {
        padding: 0.8rem 1rem;
    }
    
    .section-hero-professional .problem-text {
        font-size: 1rem;
    }
    
    .section-hero-professional .insight-text {
        font-size: 1.1rem;
    }
    
    .section-hero-professional .cta-button {
        width: 100%;
        padding: 1.2rem 2rem;
    }
    
    .section-hero-professional .visual-card {
        padding: 1.5rem;
    }
}
}
#fw-section-video-6930bbdd-0c37-40dc-bbfc-878e71d0841e {

/* Default for mobile */
.video-section__video {
  width: 100%;
  height: auto;
  border-radius: 14px; /* Rounded corners for mobile */
}

/* For desktop */
@media (min-width: 768px) {
  .video-section__video {
    max-height: 70vh; /* Adjust this value */
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 14px; /* Rounded corners for desktop */
  }
  
  /* Optional: Add to a specific container */
  .video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 14px; /* For container too */
  }
}
}
#fw-section-custom-html-9e73d0db-2ec7-4138-a5cb-642d6d56ae10 {

.section-target {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 4rem 1rem;
  border-bottom: 3px solid #FFD800;
}

.section-target .section-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-target .section-title .highlight {
  color: #FFD800;
  font-weight: 800;
}

.section-target .section-subtitle {
  text-align: center;
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.section-target .checklist {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-target .check-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 10px;
  border-left: 4px solid #FFD800;
}

.section-target .check-icon {
  background: #FFD800;
  color: #000;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
  flex-shrink: 0;
}

.section-target .check-text {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
}

.section-target .warning-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
}

.section-target .warning-title {
  color: #ff5555;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.section-target .warning-item {
  color: #ff9999;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.section-target .warning-item:before {
  content: "•";
  color: #ff5555;
  position: absolute;
  left: 0;
}
}
#fw-section-custom-html-b29750a6-2b87-48ae-bd05-4ef9a0de1ede {

.section-stagnare {
  background-color: #111;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.section-stagnare:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FFD800, #ffaa00);
}

.section-stagnare .section-title {
  text-align: center;
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.section-stagnare .highlight {
  color: #FFD800;
  text-decoration: underline;
}

.section-stagnare .intro-text {
  text-align: center;
  color: #ddd;
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

.section-stagnare .reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.section-stagnare .reason-card {
  background: rgba(255, 216, 0, 0.1);
  border: 1px solid rgba(255, 216, 0, 0.3);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.section-stagnare .reason-card:hover {
  transform: translateY(-10px);
}

.section-stagnare .reason-number {
  background: #FFD800;
  color: #000;
  font-weight: bold;
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.section-stagnare .reason-title {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.section-stagnare .reason-desc {
  color: #ccc;
  font-size: 1rem;
}

.section-stagnare .result-box {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.section-stagnare .result-title {
  color: #FFD800;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.section-stagnare .result-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.section-stagnare .result-step {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
}

.section-stagnare .step-arrow {
  font-size: 1.2rem;
  margin-right: 0.8rem;
}

.section-stagnare .step-text {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}
}
#fw-section-custom-html-85451d49-fc4a-4cac-bb3a-54a5a3075c04 {

.section-solution {
  background: #000;
  padding: 4rem 1rem;
  border-top: 2px solid #333;
}

.section-solution .solution-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-solution .section-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-solution .highlight {
  color: #FFD800;
  background: rgba(255, 216, 0, 0.1);
  padding: 0 10px;
  border-radius: 5px;
}

.section-solution .section-subtitle {
  color: #ddd;
  font-size: 1.3rem;
}

.section-solution .pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-solution .pillar {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 2rem;
  border-top: 5px solid #FFD800;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.section-solution .pillar-number {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-solution .pillar-title {
  color: #FFD800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section-solution .pillar-desc {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.section-solution .pillar-list {
  color: #ccc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-solution .pillar-list li {
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.section-solution .pillar-note {
  color: #aaa;
  font-style: italic;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.section-solution .pillar-badge {
  background: #FFD800;
  color: #000;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
}

.section-solution .process {
  margin: 1.5rem 0;
}

.section-solution .process-step {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem;
  border-radius: 8px;
}

.section-solution .step-check {
  margin-right: 1rem;
  font-size: 1.2rem;
}

.section-solution .step-text {
  color: #fff;
}

.section-solution .pillar-highlight {
  background: rgba(255, 216, 0, 0.15);
  color: #FFD800;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  margin-top: 1.5rem;
}
}
#fw-section-custom-html-368c3d78-f7c7-4352-be04-9ba7c9dda1c1 {

/* 📊 CSS GENERAL PENTRU TOATE BLOCURILE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    transition: all 0.3s ease;
}

/* 📊 BLOC 1 – TITLU */
.section-structure-title {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 3rem 1rem;
    border-bottom: 3px solid #FFD800;
    position: relative;
    overflow: hidden;
}

.section-structure-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD800, transparent);
}

.section-structure-title .main-title {
    text-align: center;
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.section-structure-title .title-decor {
    color: #FFD800;
    margin-right: 15px;
}

.section-structure-title .title-gradient {
    background: linear-gradient(90deg, #FFD800, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

/* 📊 BLOC 2 – TEXT CLARIFICATOR */
.section-clarification {
    background: #111;
    padding: 4rem 1rem;
    position: relative;
}

.section-clarification:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: #FFD800;
}

.section-clarification .clarification-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 216, 0, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 216, 0, 0.3);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.section-clarification .clarification-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 216, 0, 0.2);
}

.section-clarification .warning-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    animation: pulse 2s infinite;
}

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

.section-clarification .clarification-title {
    color: #FFD800;
    font-size: 1.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-clarification .clarification-content {
    margin-bottom: 2rem;
}

.section-clarification .clarification-text {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: center;
}

.section-clarification .clarification-text strong {
    color: #FFD800;
    background: rgba(255, 216, 0, 0.1);
    padding: 0 5px;
    border-radius: 3px;
}

.section-clarification .clarification-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 4px solid #FFD800;
}

.section-clarification .footer-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.section-clarification .footer-text {
    color: #FFD800;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 📊 BLOC 3 – DIAGRAMA */
.section-diagram {
    background: linear-gradient(135deg, #000 0%, #111 100%);
    padding: 4rem 1rem;
    position: relative;
}

.section-diagram:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 216, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 216, 0, 0.05) 0%, transparent 50%);
}

.section-diagram .diagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-diagram .diagram-card {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-diagram .diagram-card:hover {
    border-color: #FFD800;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 216, 0, 0.15);
}

.section-diagram .diagram-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD800, #ffaa00);
}

.section-diagram .card-level {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-diagram .level-badge {
    background: #FFD800;
    color: #000;
    font-weight: bold;
    font-size: 2.2rem;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 216, 0, 0.3);
}

.section-diagram .level-title {
    color: #FFD800;
    font-size: 1.8rem;
    font-weight: bold;
}

.section-diagram .card-content {
    flex-grow: 1;
}

.section-diagram .card-heading {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(255, 216, 0, 0.3);
    min-height: 4.5rem;
}

.section-diagram .card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-diagram .card-list li {
    color: #ccc;
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.section-diagram .card-list li:before {
    content: "→";
    color: #FFD800;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 📊 BLOC 4 – MICRO-CLARIFICARE */
.section-micro-clarification {
    background: #0a0a0a;
    padding: 3rem 1rem;
    position: relative;
}

.section-micro-clarification:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD800, transparent);
}

.section-micro-clarification .micro-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 216, 0, 0.05);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 216, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.section-micro-clarification .micro-box:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 216, 0, 0.05) 0%, transparent 70%);
}

.section-micro-clarification .micro-icon {
    font-size: 3rem;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(10deg); }
    20%, 40%, 60%, 80% { transform: rotate(-10deg); }
}

.section-micro-clarification .micro-content {
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.section-micro-clarification .micro-text {
    color: #FFD800;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 0 10px rgba(255, 216, 0, 0.3);
}

.section-micro-clarification .micro-decoration {
    font-size: 2rem;
    margin-left: 2rem;
    position: relative;
    z-index: 2;
    opacity: 0.7;
}

/* 📊 BLOC 5 – SEPARATOR */
.section-divider {
    background: #000;
    padding: 2rem 1rem;
}

.section-divider .divider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-divider .divider-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD800, transparent);
}

.section-divider .divider-arrow {
    color: #FFD800;
    font-size: 1.5rem;
    margin: 0 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 📊 STILURI RESPONSIVE */
@media (max-width: 768px) {
    .section-structure-title .main-title {
        font-size: 2.2rem;
    }
    
    .section-structure-title .title-gradient {
        font-size: 1.8rem;
    }
    
    .section-clarification .clarification-text {
        font-size: 1.1rem;
    }
    
    .section-clarification .clarification-box {
        padding: 1.5rem;
    }
    
    .section-diagram .diagram-grid {
        grid-template-columns: 1fr;
    }
    
    .section-diagram .diagram-card {
        padding: 2rem 1.5rem;
    }
    
    .section-micro-clarification .micro-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .section-micro-clarification .micro-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .section-micro-clarification .micro-decoration {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .section-micro-clarification .micro-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-structure-title .main-title {
        font-size: 1.8rem;
    }
    
    .section-clarification .clarification-title {
        font-size: 1.4rem;
    }
    
    .section-diagram .diagram-card {
        padding: 1.8rem 1.2rem;
    }
    
    .section-diagram .level-badge {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .section-diagram .card-heading {
        font-size: 1.3rem;
        min-height: auto;
    }
    
    .section-diagram .card-list li {
        font-size: 1rem;
    }
}
}
#fw-section-custom-html-aafd6d54-8376-481e-8df2-a62086f4d965 {

.section-styles {
  background: linear-gradient(135deg, #1a0f0f 0%, #2a1a1a 100%);
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.section-styles:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 216, 0, 0.1) 0%, transparent 70%);
}

.section-styles .section-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-styles .intro-text {
  text-align: center;
  color: #ddd;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.section-styles .styles-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.section-styles .dance-category {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 216, 0, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.section-styles .category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #FFD800;
}

.section-styles .category-title {
  color: #FFD800;
  font-size: 1.5rem;
  margin: 0;
}

.section-styles .category-icon {
  font-size: 2rem;
}

.section-styles .dance-list {
  margin-bottom: 2rem;
}

.section-styles .dance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.section-styles .dance-item:hover {
  background: rgba(255, 216, 0, 0.1);
}

.section-styles .dance-name {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

.section-styles .dance-level {
  color: #aaa;
  font-size: 0.9rem;
  text-align: right;
}

.section-styles .category-note {
  display: flex;
  align-items: center;
  background: rgba(255, 216, 0, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #FFD800;
}

.section-styles .note-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.section-styles .note-text {
  color: #FFD800;
  font-weight: bold;
}
}
#fw-section-custom-html-40c83bec-b3ff-47f5-b272-d2c58cfa0f9d {

.section-benefits {
  background: #000;
  padding: 4rem 1rem;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.section-benefits .section-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.section-benefits .highlight {
  color: #FFD800;
}

.section-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.section-benefits .benefit-card {
  background: #111;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.section-benefits .benefit-card:hover {
  border-color: #FFD800;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 216, 0, 0.1);
}

.section-benefits .benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-benefits .benefit-title {
  color: #FFD800;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.section-benefits .benefit-desc {
  color: #ccc;
  font-size: 0.95rem;
}

.section-benefits .benefits-footer {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 216, 0, 0.05);
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.section-benefits .footer-text {
  color: #FFD800;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
}
}

#fw-section-custom-html-74f00f32-96e6-4996-986e-0ec38b5cecba {

.section-process {
  background: #111;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.section-process:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFD800, transparent);
  transform: translateY(-50%);
  z-index: 1;
}

.section-process .section-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.section-process .highlight {
  color: #FFD800;
}

.section-process .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.section-process .step {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.section-process .step:hover {
  border-color: #FFD800;
  transform: translateY(-5px);
}

.section-process .step-number {
  font-size: 2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.section-process .step-content {
  flex-grow: 1;
}

.section-process .step-title {
  color: #FFD800;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.section-process .step-desc {
  color: #ccc;
  font-size: 0.95rem;
}

.section-process .process-footer {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.section-process .footer-text {
  color: #FFD800;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}
}
#fw-section-video-with-text-f930abc3-ee79-4a73-90f5-fd32bab0c508 {

/* Default for mobile */
.video-section__video {
  width: 100%;
  height: auto;
  border-radius: 14px; /* Rounded corners for mobile */
}

/* For desktop */
@media (min-width: 768px) {
  .video-section__video {
    max-height: 70vh; /* Adjust this value */
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 14px; /* Rounded corners for desktop */
  }
  
  /* Optional: Add to a specific container */
  .video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 14px; /* For container too */
  }
}
}
#fw-section-custom-html-05da6b4f-44d1-4882-a98c-6e0436c0c954 {

.section-faq {
  background: #000;
  padding: 4rem 1rem;
}

.section-faq .section-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.section-faq .highlight {
  color: #FFD800;
}

.section-faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.section-faq .faq-item {
  background: #111;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #333;
}

.section-faq .faq-question {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.section-faq .faq-question:hover {
  background: rgba(255, 216, 0, 0.1);
}

.section-faq .faq-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.section-faq .faq-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  flex-grow: 1;
}

.section-faq .faq-toggle {
  color: #FFD800;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.section-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.section-faq .faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-faq .faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.section-faq .faq-answer p {
  color: #ccc;
  margin: 0;
  line-height: 1.5;
}
}
#fw-section-custom-html-e1ef90c4-295c-48bd-8b18-04ba53b2ee5e {

.section-final-cta {
  background: linear-gradient(135deg, #000 0%, #222 100%);
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-final-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 216, 0, 0.1) 0%, transparent 70%);
}

.section-final-cta .cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.section-final-cta .cta-title {
  color: #FFD800;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-final-cta .cta-subtitle {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

.section-final-cta .cta-buttons {
  margin-bottom: 3rem;
}

.section-final-cta .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD800 0%, #ffaa00 100%);
  color: #000;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 216, 0, 0.3);
}

.section-final-cta .cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 216, 0, 0.5);
}

.section-final-cta .button-icon {
  font-size: 1.8rem;
  margin-right: 1rem;
}

.section-final-cta .button-text {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-final-cta .cta-guarantee {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.section-final-cta .guarantee-item {
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.section-final-cta .guarantee-item:before {
  content: "✓";
  margin-right: 0.5rem;
}
}




#fw-section-rich-text-0ff4647b-a2e9-4483-9cbf-e5acd3d3da3f {
--color-primary: #ffd800;
--color-primary-rgb: 255, 216, 0;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-product-image-background: #000000;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}
#fw-section-recent-posts-0071e421-9226-40b4-b0ed-cf55a6a5bba9 {

.post-tile__date {
  display: none !important;
}

.post-tile__feedback {
  display: none !important;
}
}
#fw-section-rich-text-963fa72f-213d-45eb-8905-cfa0eb7a7370 {
--color-primary: #ffffff;
--color-primary-rgb: 255, 255, 255;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-product-image-background: #000000;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}

































#fw-section-links-list-1726494266 {
--color-primary: #ffffff;
--color-primary-rgb: 255, 255, 255;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-product-image-background: #000000;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}


















































#fw-section-rich-text-032dded4-5636-4e74-88b6-aab55bb4a61b {
--color-primary: #ffffff;
--color-primary-rgb: 255, 255, 255;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-product-image-background: #000000;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}
#fw-section-video-011a30cf-e230-4a67-a89d-e08ea4fc37a5 {

/* Default for mobile */
.video-section__video {
  width: 100%;
  height: auto;
  border-radius: 14px; /* Rounded corners for mobile */
}

/* For desktop */
@media (min-width: 768px) {
  .video-section__video {
    max-height: 70vh; /* Adjust this value */
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 14px; /* Rounded corners for desktop */
  }
  
  /* Optional: Add to a specific container */
  .video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 14px; /* For container too */
  }
}
}




#fw-section-rich-text-a5f7254b-cc34-43a8-82da-4de60d4360f7 {
--color-primary: #ffd800;
--color-primary-rgb: 255, 216, 0;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #838383;
--color-on-background-rgb: 131, 131, 131;
--color-product-image-background: #000000;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}