
/* Block 1 */
.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 60, 114, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

@media (max-width: 768px) {
  .hero-banner {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

/* Block 2 */
.ai-transformation-showcase {
      background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
      padding: 5rem 0;
      margin: 3rem 0;
    }

    .showcase-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

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

    .header-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
    }

    .showcase-title {
      font-size: 3rem;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .showcase-subtitle {
      font-size: 1.25rem;
      color: #4a5568;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .feature-card {
      background: white;
      padding: 2.5rem;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

    .primary-card {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      grid-row: span 1;
    }

    .primary-card .feature-title,
    .primary-card .feature-description {
      color: white;
    }

    .feature-icon {
      margin-bottom: 1.5rem;
    }

    .icon-image {
      width: 60px;
      height: 60px;
      border-radius: 12px;
    }

    .feature-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 1rem;
    }

    .feature-description {
      color: #4a5568;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .feature-metrics {
      display: flex;
      gap: 1rem;
    }

    .metric-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .metric-number {
      font-size: 2rem;
      font-weight: 800;
      color: #ffd700;
    }

    .metric-label {
      font-size: 0.85rem;
      opacity: 0.9;
    }

    .progress-indicator {
      margin-top: 1rem;
    }

    .progress-bar {
      height: 8px;
      background: #e2e8f0;
      border-radius: 10px;
      position: relative;
      overflow: hidden;
    }

    .progress-bar::after {
      content: '';
      display: block;
      height: 100%;
      width: 92%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 10px;
      transition: width 2s ease-in-out;
    }

    .progress-text {
      display: block;
      margin-top: 0.5rem;
      font-weight: 600;
      color: #667eea;
      font-size: 0.9rem;
    }

    .feature-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .tag {
      background: #667eea;
      color: white;
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .transformation-stats {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 4rem;
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    }

    .stats-image {
      width: 100%;
      height: auto;
      border-radius: 15px;
    }

    .stats-heading {
      font-size: 2rem;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 2rem;
    }

    .stats-grid {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .stat-block {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      background: #f8faff;
      border-radius: 12px;
    }

    .stat-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .stat-info {
      display: flex;
      flex-direction: column;
    }

    .stat-value {
      font-size: 1.8rem;
      font-weight: 800;
      color: #667eea;
    }

    .stat-label {
      color: #4a5568;
      font-size: 0.9rem;
    }

    .cta-section {
      background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
      padding: 3rem;
      border-radius: 20px;
      color: white;
      text-align: center;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }

    .cta-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .cta-description {
      opacity: 0.9;
      line-height: 1.5;
    }

    .cta-actions {
      display: flex;
      gap: 1rem;
      flex-shrink: 0;
    }

    .btn-primary-cta {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .btn-primary-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    }

    .btn-secondary-cta {
      background: transparent;
      color: white;
      border: 2px solid white;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .btn-secondary-cta:hover {
      background: white;
      color: #2d3748;
    }

    @media (max-width: 768px) {
      .showcase-container {
        padding: 0 1rem;
      }

      .showcase-title {
        font-size: 2rem;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .feature-card {
        padding: 2rem;
      }

      .transformation-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
      }

      .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
      }

      .cta-actions {
        flex-direction: column;
        width: 100%;
      }

      .btn-primary-cta,
      .btn-secondary-cta {
        width: 100%;
      }
    }

/* Block 3 */
.quantum-learning-ecosystem {
background: radial-gradient(ellipse at center, #0a0e27 0%, #1a1a2e 50%, #16213e 100%);
color: #ffffff;
padding: 6rem 0;
overflow: hidden;
position: relative;
}

.quantum-learning-ecosystem::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
pointer-events: none;
}

.ecosystem-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}

.section-intro {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
margin-bottom: 6rem;
}

.intro-visual {
position: relative;
}

.intro-image {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.floating-elements {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}

.element-node {
position: absolute;
animation: float 3s ease-in-out infinite;
}

.element-node:nth-child(1) {
top: 20%;
left: 10%;
animation-delay: 0s;
}

.element-node:nth-child(2) {
top: 60%;
right: 15%;
animation-delay: 1s;
}

.element-node:nth-child(3) {
bottom: 30%;
left: 70%;
animation-delay: 2s;
}

.node-icon {
width: 48px;
height: 48px;
filter: drop-shadow(0 4px 12px rgba(0, 255, 255, 0.6));
}

.section-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, #00ffff 0%, #0080ff 100%);
color: #000;
padding: 0.5rem 1rem;
border-radius: 25px;
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 1.5rem;
}

.section-title {
font-size: 3.2rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #0080ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.section-description {
font-size: 1.2rem;
line-height: 1.6;
color: #b8c6db;
margin-bottom: 2rem;
}

.feature-spotlight {
background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 128, 255, 0.05) 100%);
border: 1px solid rgba(0, 255, 255, 0.2);
border-radius: 24px;
padding: 3rem;
margin-bottom: 4rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.spotlight-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}

.spotlight-icon {
width: 64px;
height: 64px;
}

.spotlight-title {
font-size: 2rem;
font-weight: 600;
margin: 0;
}

.spotlight-text {
font-size: 1.1rem;
line-height: 1.7;
color: #d1d9e6;
margin-bottom: 2rem;
}

.biometric-indicators {
background: rgba(0, 0, 0, 0.3);
border-radius: 16px;
padding: 1.5rem;
}

.indicator-row {
display: flex;
justify-content: space-between;
gap: 1rem;
}

.indicator-item {
display: flex;
align-items: center;
gap: 0.75rem;
}

.indicator-icon {
background: linear-gradient(135deg, #00ffff 0%, #0080ff 100%);
color: #000;
width: 36px;
height: 36px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
}

.indicator-data {
display: flex;
flex-direction: column;
}

.data-value {
font-size: 1.1rem;
font-weight: 600;
color: #fff;
}

.data-label {
font-size: 0.8rem;
color: #9ba3af;
}

.data-status {
font-size: 0.75rem;
padding: 0.2rem 0.5rem;
border-radius: 12px;
margin-top: 0.25rem;
}

.data-status.optimal {
background: rgba(34, 197, 94, 0.2);
color: #22c55e;
}

.data-status.focused {
background: rgba(59, 130, 246, 0.2);
color: #3b82f6;
}

.data-status.excellent {
background: rgba(168, 85, 247, 0.2);
color: #a855f7;
}

.spotlight-visual {
position: relative;
}

.dashboard-image {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 16px;
}

.pulse-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 100px;
background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}

.quantum-modules {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-bottom: 5rem;
}

.module-card {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 255, 255, 0.02) 100%);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 2rem;
transition: all 0.3s ease;
}

.module-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15);
border-color: rgba(0, 255, 255, 0.3);
}

.module-card.enhanced {
border-color: rgba(0, 255, 255, 0.4);
box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.module-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}

.module-icon {
width: 48px;
height: 48px;
}

.module-title {
font-size: 1.3rem;
font-weight: 600;
margin: 0;
}

.module-description {
color: #b8c6db;
line-height: 1.6;
margin-bottom: 1.5rem;
}

.module-stats {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}

.stat-chip {
display: flex;
align-items: center;
gap: 0.5rem;
background: rgba(0, 255, 255, 0.1);
color: #00ffff;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 500;
}

.progress-rings {
display: flex;
gap: 2rem;
justify-content: center;
}

.ring-container {
position: relative;
}

.progress-ring {
width: 80px;
height: 80px;
border-radius: 50%;
background: conic-gradient(from 0deg, #00ffff 0deg, #0080ff 180deg, rgba(255, 255, 255, 0.1) 360deg);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}

.progress-ring::before {
content: '';
position: absolute;
inset: 8px;
background: #1a1a2e;
border-radius: 50%;
}

.ring-value {
position: relative;
z-index: 2;
font-weight: 600;
font-size: 0.9rem;
}

.ring-label {
position: relative;
z-index: 2;
font-size: 0.7rem;
color: #9ba3af;
}

.flow-indicators {
margin-top: 1rem;
}

.flow-meter {
position: relative;
height: 8px;
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
overflow: hidden;
margin-bottom: 0.5rem;
}

.meter-fill {
height: 100%;
background: linear-gradient(90deg, #00ffff 0%, #0080ff 100%);
border-radius: 4px;
width: 92%;
animation: fillMeter 1.5s ease-out;
}

.meter-label {
font-size: 0.85rem;
color: #00ffff;
font-weight: 500;
}

.ecosystem-results {
margin-bottom: 4rem;
}

.results-header {
text-align: center;
margin-bottom: 3rem;
}

.results-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.results-subtitle {
font-size: 1.1rem;
color: #b8c6db;
}

.results-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.result-metric {
background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(0, 128, 255, 0.04) 100%);
border: 1px solid rgba(0, 255, 255, 0.15);
border-radius: 16px;
padding: 2rem;
text-align: center;
}

.metric-visual {
margin-bottom: 1.5rem;
}

.metric-image {
width: 80px;
height: 80px;
margin: 0 auto;
display: block;
}

.metric-number {
display: block;
font-size: 2.5rem;
font-weight: 700;
color: #00ffff;
margin-bottom: 0.5rem;
}

.metric-description {
color: #d1d9e6;
line-height: 1.5;
}

.quantum-cta {
position: relative;
background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 100%);
border-radius: 24px;
overflow: hidden;
}

.cta-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.3;
}

.cta-bg-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.energy-particles {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(2px 2px at 20px 30px, #00ffff, transparent),
            radial-gradient(2px 2px at 40px 70px, #0080ff, transparent),
            radial-gradient(1px 1px at 90px 40px, #ffffff, transparent);
background-size: 100px 100px;
animation: sparkle 4s linear infinite;
}

.cta-wrapper {
position: relative;
z-index: 2;
padding: 4rem;
text-align: center;
}

.cta-headline {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 1rem;
background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.cta-subtext {
font-size: 1.2rem;
color: #b8c6db;
margin-bottom: 3rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.cta-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.quantum-btn {
padding: 1rem 2rem;
border: none;
border-radius: 30px;
font-weight: 600;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.quantum-btn.primary {
background: linear-gradient(135deg, #00ffff 0%, #0080ff 100%);
color: #000;
}

.quantum-btn.primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

.quantum-btn.secondary {
background: transparent;
color: #00ffff;
border: 2px solid #00ffff;
}

.quantum-btn.secondary:hover {
background: rgba(0, 255, 255, 0.1);
transform: translateY(-3px);
}

.beta-counter {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}

.counter-label {
color: #9ba3af;
}

.counter-number {
font-size: 1.5rem;
font-weight: 700;
color: #ff4444;
background: rgba(255, 68, 68, 0.1);
padding: 0.5rem 1rem;
border-radius: 12px;
}

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

@keyframes pulse {
0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
}

@keyframes fillMeter {
from { width: 0%; }
to { width: 92%; }
}

@keyframes sparkle {
0% { background-position: 0 0; }
100% { background-position: 100px 100px; }
}

@media (max-width: 768px) {
.section-intro {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}

.section-title {
font-size: 2.5rem;
}

.feature-spotlight {
grid-template-columns: 1fr;
gap: 2rem;
padding: 2rem;
}

.indicator-row {
flex-direction: column;
gap: 1rem;
}

.cta-wrapper {
padding: 2rem;
}

.cta-headline {
font-size: 2rem;
}

.cta-buttons {
flex-direction: column;
align-items: center;
}

.quantum-btn {
width: 100%;
max-width: 300px;
}
}

/* Block 4 */
.premium-consultation-form {
background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
padding: 4rem 0;
position: relative;
overflow: hidden;
}

.premium-consultation-form::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
pointer-events: none;
}

.form-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
z-index: 1;
}

.form-header {
text-align: center;
margin-bottom: 3rem;
position: relative;
}

.header-accent {
display: inline-block;
position: relative;
margin-bottom: 1.5rem;
}

.accent-image {
width: 80px;
height: 80px;
filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.shimmer-effect {
position: absolute;
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.3) 50%, transparent 70%);
border-radius: 50%;
animation: shimmer 3s ease-in-out infinite;
}

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

.form-title {
font-size: 2.8rem;
font-weight: 800;
color: #ffffff;
margin-bottom: 1rem;
text-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.form-subtitle {
font-size: 1.2rem;
color: #c4b5fd;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.consultation-details {
margin-bottom: 4rem;
}

.details-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 900px;
margin: 0 auto;
}

.detail-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.5rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 16px;
border: 1px solid rgba(147, 51, 234, 0.2);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}

.detail-item:hover {
transform: translateY(-4px);
background: rgba(255, 255, 255, 0.08);
border-color: rgba(147, 51, 234, 0.4);
box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
}

.detail-icon {
flex-shrink: 0;
}

.icon-img {
width: 48px;
height: 48px;
filter: brightness(1.2) drop-shadow(0 2px 8px rgba(147, 51, 234, 0.3));
}

.detail-content {
flex: 1;
}

.detail-title {
font-size: 1.1rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 0.5rem;
}

.detail-text {
font-size: 0.95rem;
color: #a5b4fc;
line-height: 1.5;
margin: 0;
}

.booking-form-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.form-visual {
position: relative;
text-align: center;
}

.booking-visual {
width: 100%;
max-width: 400px;
height: auto;
filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.3));
}

.floating-indicators {
position: absolute;
top: 20px;
right: 20px;
display: flex;
flex-direction: column;
gap: 1rem;
}

.indicator-badge {
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.5rem;
animation: float 3s ease-in-out infinite;
}

.indicator-badge.priority {
background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
color: #1f2937;
animation-delay: 0s;
}

.indicator-badge.exclusive {
background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
color: #ffffff;
animation-delay: 1.5s;
}

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

.consultation-form {
background: rgba(255, 255, 255, 0.08);
border-radius: 20px;
padding: 2.5rem;
border: 1px solid rgba(147, 51, 234, 0.3);
backdrop-filter: blur(15px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.premium-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-group {
position: relative;
}

.input-wrapper {
position: relative;
}

.input-icon {
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: #a855f7;
font-size: 1.1rem;
z-index: 2;
}

.form-input {
width: 100%;
padding: 1rem 1rem 1rem 3rem;
border: 2px solid rgba(147, 51, 234, 0.3);
border-radius: 12px;
background: rgba(255, 255, 255, 0.05);
color: #ffffff;
font-size: 1rem;
transition: all 0.3s ease;
}

.form-input:focus {
outline: none;
border-color: #a855f7;
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.form-input::placeholder {
color: #9ca3af;
}

.input-border {
position: absolute;
bottom: 0;
left: 0;
height: 2px;
width: 0;
background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
transition: width 0.3s ease;
}

.form-input:focus + .input-border {
width: 100%;
}

.form-benefits {
margin: 1.5rem 0;
padding: 1.5rem;
background: rgba(168, 85, 247, 0.1);
border-radius: 12px;
border-left: 4px solid #a855f7;
}

.benefits-title {
font-size: 1rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 1rem;
}

.benefits-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.benefit-item {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 0.9rem;
color: #e0e7ff;
}

.benefit-item i {
color: #10b981;
font-size: 1rem;
}

.form-footer {
margin-top: 1rem;
}

.pricing-info {
text-align: center;
margin-bottom: 1.5rem;
}

.price-container {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin-bottom: 0.5rem;
}

.price-label {
color: #9ca3af;
font-size: 0.9rem;
}

.price-original {
color: #ef4444;
text-decoration: line-through;
font-size: 1.2rem;
}

.price-current {
color: #10b981;
font-size: 1.5rem;
font-weight: 800;
text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.limited-offer {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
color: #fbbf24;
font-size: 0.85rem;
font-weight: 600;
}

.submit-btn {
width: 100%;
padding: 1.2rem;
background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
border: none;
border-radius: 12px;
color: #ffffff;
font-size: 1.1rem;
font-weight: 700;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}

.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.btn-text {
position: relative;
z-index: 2;
}

.btn-shine {
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;
}

.submit-btn:hover .btn-shine {
left: 100%;
}

@media (max-width: 768px) {
.form-container {
padding: 0 1rem;
}
    
.form-title {
font-size: 2.2rem;
}
    
.booking-form-wrapper {
grid-template-columns: 1fr;
gap: 2rem;
}
    
.details-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
    
.consultation-form {
padding: 1.5rem;
}
    
.floating-indicators {
position: static;
flex-direction: row;
justify-content: center;
margin-top: 1rem;
}
    
.price-container {
flex-direction: column;
gap: 0.5rem;
}
}
