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

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 127, 0.85) 0%, rgba(26, 35, 50, 0.75) 50%, rgba(44, 95, 127, 0.9) 100%);
}

.hero-content {
    text-align: center;
    padding: 2rem 0;
    animation: heroFadeIn 1.2s ease-out;
}

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

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.hero-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.hero-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.hero-btn i {
    font-size: 1.2rem;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
}

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Block 2 */
.smart-analytics-dashboard {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.smart-analytics-dashboard::before {
    content: '';
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 144, 184, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: -50px;
    z-index: 1;
}

.smart-analytics-dashboard::after {
    content: '';
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    left: -30px;
    z-index: 1;
}

.analytics-title {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.analytics-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(74, 144, 184, 0.1);
    height: 100%;
    position: relative;
    z-index: 2;
}

.analytics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.analytics-icon {
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 20px;
    transition: transform 0.3s ease;
}

.analytics-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    color: var(--dark-bg);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.metric-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(74, 144, 184, 0.05) 0%, rgba(243, 156, 18, 0.05) 100%);
    border-radius: 15px;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.card-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.progress-indicator {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 3px;
    transition: width 2s ease-in-out;
    animation: progressLoad 2s ease-out;
}

@keyframes progressLoad {
    from { width: 0%; }
}

.featured-card {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, white 0%, rgba(243, 156, 18, 0.02) 100%);
}

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

.feature-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cta-integration {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2c3e50 100%);
    border-radius: 25px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-integration::before {
    content: '';
    width: 100px;
    height: 100px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    top: -20px;
    right: 20%;
    animation: float 6s ease-in-out infinite;
}

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

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

.cta-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.integration-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.integration-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, #e67e22 0%, var(--accent-color) 100%);
}

@media (max-width: 768px) {
    .analytics-title {
        font-size: 2.2rem;
    }
    
    .analytics-subtitle {
        font-size: 1rem;
    }
    
    .analytics-card {
        padding: 1.5rem;
    }
    
    .cta-integration {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .smart-analytics-dashboard {
        padding: 3rem 0;
    }
    
    .feature-tags {
        justify-content: center;
    }
    
    .integration-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Block 3 */
.futuristic-tech-showcase {
      padding: 4rem 0;
      background: linear-gradient(135deg, #0a0e27 0%, #1a1b3a 50%, #2d1b69 100%);
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .futuristic-tech-showcase::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        radial-gradient(circle at 25% 25%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .tech-title {
      font-size: 2.8rem;
      font-weight: 700;
      background: linear-gradient(45deg, #64b5f6, #81c784, #ffb74d);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
    }

    .tech-subtitle {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
    }

    .tech-feature-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 0;
      height: 100%;
      transition: all 0.4s ease;
      backdrop-filter: blur(10px);
      overflow: hidden;
    }

    .tech-feature-card:hover {
      transform: translateY(-8px);
      border-color: rgba(100, 181, 246, 0.4);
      box-shadow: 0 20px 40px rgba(100, 181, 246, 0.15);
    }

    .quantum-card:hover {
      box-shadow: 0 20px 40px rgba(129, 199, 132, 0.15);
      border-color: rgba(129, 199, 132, 0.4);
    }

    .neural-card:hover {
      box-shadow: 0 20px 40px rgba(255, 183, 77, 0.15);
      border-color: rgba(255, 183, 77, 0.4);
    }

    .feature-header {
      position: relative;
      height: 250px;
      overflow: hidden;
    }

    .feature-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .tech-feature-card:hover .feature-image {
      transform: scale(1.05);
    }

    .tech-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(100, 181, 246, 0.9);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      backdrop-filter: blur(10px);
    }

    .quantum-card .tech-badge {
      background: rgba(129, 199, 132, 0.9);
    }

    .neural-card .tech-badge {
      background: rgba(255, 183, 77, 0.9);
    }

    .feature-content {
      padding: 2rem;
    }

    .feature-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #ffffff;
    }

    .feature-description {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .tech-metrics {
      display: flex;
      gap: 2rem;
      margin-bottom: 1.5rem;
    }

    .metric-item {
      text-align: center;
    }

    .metric-value {
      display: block;
      font-size: 1.8rem;
      font-weight: 700;
      color: #64b5f6;
    }

    .quantum-card .metric-value {
      color: #81c784;
    }

    .neural-card .metric-value {
      color: #ffb74d;
    }

    .metric-label {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
    }

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

    .capability-chip {
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.9);
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mini-tech-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 1.5rem;
      height: 100%;
      transition: all 0.3s ease;
      text-align: center;
    }

    .mini-tech-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .mini-feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1rem;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .mini-icon {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .mini-feature-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      color: #ffffff;
    }

    .mini-feature-desc {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .tech-status {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .status-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .status-indicator.active {
      background: #4caf50;
    }

    .status-indicator.beta {
      background: #ff9800;
    }

    .status-indicator.development {
      background: #2196f3;
    }

    .status-text {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
    }

    .innovation-timeline {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 2.5rem;
      margin-top: 2rem;
    }

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

    .timeline-title {
      font-size: 2rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 0.5rem;
    }

    .timeline-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

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

    .timeline-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.5rem;
      border-radius: 15px;
      transition: all 0.3s ease;
    }

    .timeline-item.current {
      background: rgba(76, 175, 80, 0.1);
      border: 1px solid rgba(76, 175, 80, 0.3);
    }

    .timeline-item.upcoming {
      background: rgba(255, 152, 0, 0.1);
      border: 1px solid rgba(255, 152, 0, 0.3);
    }

    .timeline-item.future {
      background: rgba(33, 150, 243, 0.1);
      border: 1px solid rgba(33, 150, 243, 0.3);
    }

    .timeline-item.visionary {
      background: rgba(156, 39, 176, 0.1);
      border: 1px solid rgba(156, 39, 176, 0.3);
    }

    .timeline-marker {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-bottom: 1rem;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .timeline-icon {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .timeline-period {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 0.5rem;
    }

    .timeline-feature {
      font-size: 1.1rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 0.8rem;
    }

    .timeline-description {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.5;
    }

    @keyframes pulse {
      0% { opacity: 1; }
      50% { opacity: 0.5; }
      100% { opacity: 1; }
    }

    @media (max-width: 768px) {
      .tech-title {
        font-size: 2.2rem;
      }
      
      .tech-metrics {
        flex-direction: column;
        gap: 1rem;
      }
      
      .timeline-content {
        grid-template-columns: 1fr;
      }
      
      .feature-capabilities {
        justify-content: center;
      }
    }

/* Block 4 */
.premium-booking-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.premium-booking-form::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.form-container {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

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

.form-icon-wrapper {
    display: inline-block;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 95, 127, 0.3);
}

.form-header-icon {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.form-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.consultation-benefits {
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.booking-form {
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.input-group {
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    object-fit: cover;
    z-index: 2;
    border-radius: 4px;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(74, 144, 184, 0.1);
}

.form-input:focus + .floating-label,
.form-input:not(:placeholder-shown) + .floating-label {
    transform: translateY(-2.2rem) scale(0.85);
    color: var(--secondary-color);
    background: white;
    padding: 0 0.5rem;
}

.floating-label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.input-validation {
    margin-top: 0.5rem;
    min-height: 1.5rem;
}

.premium-features {
    margin-bottom: 2.5rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.feature-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
}

.feature-details {
    flex: 1;
}

.feature-name {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.feature-benefit {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.feature-value {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.pricing-display {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
}

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

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.savings-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.limited-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.offer-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
}

.offer-text {
    font-size: 1rem;
    font-weight: 500;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.4);
}

.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.security-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-badge {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.trust-label {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 768px) {
    .form-container {
        padding: 2rem;
        margin: 1rem;
        border-radius: 16px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .price-breakdown {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 1.5rem;
    }
}
