
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 2;
}

.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 3rem 0;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.2rem;
    color: #ffd700;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(238, 90, 82, 0.4);
    background: linear-gradient(135deg, #ee5a52 0%, #ff6b6b 100%);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    color: #667eea;
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

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

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    max-width: 500px;
}

.guarantee-icon {
    font-size: 2rem;
    color: #28a745;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.guarantee-text strong {
    font-size: 1.1rem;
    color: #333;
}

.guarantee-text span {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
    }
    
    .hero-text {
        font-size: 1rem;
    }
}

/* Block 2 */
.services-overview {
padding: 80px 0;
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
position: relative;
overflow: hidden;
}

.services-overview::before {
content: '';
width: 400px;
height: 400px;
background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
border-radius: 50%;
top: -200px;
right: -200px;
z-index: 1;
}

.services-overview::after {
content: '';
width: 300px;
height: 300px;
background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(59, 130, 246, 0.08));
border-radius: 50%;
bottom: -150px;
left: -150px;
z-index: 1;
}

.container {
position: relative;
z-index: 2;
}

.section-header {
text-align: center;
margin-bottom: 60px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.header-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: white;
padding: 8px 20px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
margin-bottom: 20px;
box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.section-title {
font-size: 3rem;
font-weight: 700;
color: #1e293b;
margin-bottom: 20px;
line-height: 1.2;
background: linear-gradient(135deg, #1e293b, #475569);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.section-subtitle {
font-size: 1.25rem;
color: #64748b;
line-height: 1.6;
margin: 0;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 30px;
margin-bottom: 60px;
}

.service-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
transition: all 0.4s ease;
border: 1px solid rgba(226, 232, 240, 0.8);
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
grid-column: span 2;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}

.service-card.featured .service-content {
color: white;
}

.service-card.featured .service-title {
color: white;
}

.service-image {
position: relative;
height: 250px;
overflow: hidden;
}

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

.service-card:hover .service-img {
transform: scale(1.05);
}

.service-overlay {
position: absolute;
top: 20px;
right: 20px;
width: 60px;
height: 60px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card.featured .service-overlay {
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
}

.service-icon {
font-size: 24px;
color: #6366f1;
}

.service-card.featured .service-icon {
color: white;
}

.service-content {
padding: 30px;
}

.service-title {
font-size: 1.5rem;
font-weight: 700;
color: #1e293b;
margin-bottom: 15px;
}

.service-description {
color: #64748b;
line-height: 1.6;
margin-bottom: 20px;
font-size: 1rem;
}

.service-card.featured .service-description {
color: rgba(255, 255, 255, 0.9);
}

.service-features {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 20px;
}

.feature-tag {
background: #f1f5f9;
color: #475569;
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.service-card.featured .feature-tag {
background: rgba(255, 255, 255, 0.2);
color: white;
}

.service-stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

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

.stat-number {
display: block;
font-size: 2rem;
font-weight: 700;
color: #6366f1;
}

.service-card.featured .stat-number {
color: white;
}

.stat-label {
font-size: 12px;
color: #64748b;
font-weight: 600;
}

.service-card.featured .stat-label {
color: rgba(255, 255, 255, 0.8);
}

.service-benefits {
display: flex;
flex-direction: column;
gap: 12px;
}

.benefit-item {
display: flex;
align-items: center;
gap: 12px;
}

.benefit-icon {
color: #22c55e;
font-size: 16px;
}

.service-tech-stack {
display: flex;
flex-wrap: wrap;
gap: 8px;
}

.tech-item {
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: white;
padding: 6px 14px;
border-radius: 15px;
font-size: 12px;
font-weight: 600;
}

.service-highlights {
display: flex;
flex-direction: column;
gap: 15px;
}

.highlight-item {
display: flex;
flex-direction: column;
gap: 4px;
}

.highlight-item strong {
color: #1e293b;
font-weight: 700;
font-size: 14px;
}

.highlight-item span {
color: #64748b;
font-size: 13px;
}

.expansion-metrics {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}

.metric-card {
display: flex;
align-items: center;
gap: 12px;
padding: 15px;
background: #f8fafc;
border-radius: 12px;
}

.metric-icon {
color: #6366f1;
font-size: 20px;
}

.metric-content {
display: flex;
flex-direction: column;
}

.metric-value {
font-size: 1.25rem;
font-weight: 700;
color: #1e293b;
}

.metric-desc {
font-size: 12px;
color: #64748b;
}

.development-areas {
display: flex;
flex-wrap: wrap;
gap: 8px;
}

.area-pill {
background: #e0e7ff;
color: #3730a3;
padding: 6px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.services-cta {
background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
color: white;
padding: 50px;
border-radius: 24px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 20px 60px rgba(30, 41, 59, 0.3);
flex-wrap: wrap;
gap: 30px;
}

.cta-content {
flex: 1;
min-width: 300px;
}

.cta-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 15px;
color: white;
}

.cta-description {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
margin-bottom: 25px;
}

.cta-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-primary-cta {
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: white;
padding: 14px 28px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
color: white;
text-decoration: none;
}

.btn-secondary-cta {
background: rgba(255, 255, 255, 0.1);
color: white;
padding: 14px 28px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
border: 2px solid rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
}

.btn-secondary-cta:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
color: white;
text-decoration: none;
}

.cta-guarantee {
display: flex;
align-items: center;
}

.guarantee-seal {
display: flex;
align-items: center;
gap: 15px;
background: rgba(255, 255, 255, 0.1);
padding: 20px 25px;
border-radius: 15px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-seal i {
font-size: 2.5rem;
color: #fbbf24;
}

.seal-text {
display: flex;
flex-direction: column;
}

.seal-text strong {
color: white;
font-weight: 700;
font-size: 1.1rem;
}

.seal-text span {
color: rgba(255, 255, 255, 0.8);
font-size: 0.9rem;
}

@media (max-width: 768px) {
.services-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.service-card.featured {
grid-column: span 1;
}

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

.services-cta {
flex-direction: column;
text-align: center;
padding: 40px 30px;
}

.cta-buttons {
justify-content: center;
}

.expansion-metrics {
grid-template-columns: 1fr;
}

.service-stats {
grid-template-columns: 1fr;
}
}

/* Block 3 */
.testimonials-showcase {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      position: relative;
      overflow: hidden;
    }

    .testimonials-showcase::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(45deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
      border-radius: 0 0 50px 50px;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .header-accent {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #6366f1, #a855f7);
      padding: 12px 24px;
      border-radius: 30px;
      margin-bottom: 20px;
    }

    .accent-icon {
      color: white;
      font-size: 18px;
    }

    .accent-text {
      color: white;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .testimonials-title {
      font-size: 42px;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .testimonials-subtitle {
      font-size: 18px;
      color: #64748b;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 30px;
      margin-bottom: 80px;
    }

    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 35px;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(226, 232, 240, 0.8);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
    }

    .testimonial-card.premium {
      background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
      border: 2px solid #f59e0b;
    }

    .testimonial-card.featured {
      background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
      border: 2px solid #8b5cf6;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 25px;
    }

    .client-avatar {
      position: relative;
      flex-shrink: 0;
    }

    .avatar-image {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid white;
      box-shadow: 0 4px 15px rgba(15, 23, 42, 0.1);
    }

    .avatar-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: linear-gradient(135deg, #f59e0b, #d97706);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 12px;
    }

    .client-name {
      font-size: 20px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 5px;
    }

    .client-position {
      font-size: 14px;
      color: #6366f1;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .client-company {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 0;
    }

    .rating-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 20px;
    }

    .rating-stars i {
      color: #fbbf24;
      font-size: 16px;
    }

    .testimonial-text {
      font-size: 16px;
      line-height: 1.7;
      color: #374151;
      margin-bottom: 25px;
      font-style: italic;
      border: none;
      padding: 0;
    }

    .testimonial-metrics {
      display: flex;
      gap: 30px;
      padding-top: 20px;
      border-top: 1px solid rgba(226, 232, 240, 0.7);
    }

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

    .metric-value {
      display: block;
      font-size: 24px;
      font-weight: 800;
      color: #059669;
      line-height: 1;
    }

    .metric-label {
      font-size: 12px;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .testimonial-achievements {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }

    .achievement-tag {
      background: rgba(99, 102, 241, 0.1);
      color: #6366f1;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
    }

    .testimonial-impact {
      margin-top: 20px;
    }

    .impact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .impact-icon {
      color: #059669;
      font-size: 14px;
    }

    .testimonial-timeline {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 25px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 15px;
    }

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

    .timeline-period {
      display: block;
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 5px;
    }

    .timeline-value {
      font-size: 18px;
      font-weight: 700;
      color: #1e293b;
    }

    .timeline-arrow {
      color: #6366f1;
      font-size: 20px;
    }

    .testimonial-specialization {
      margin-top: 15px;
    }

    .specialization-badge {
      background: rgba(34, 197, 94, 0.1);
      color: #22c55e;
      padding: 6px 12px;
      border-radius: 15px;
      font-size: 12px;
      font-weight: 600;
      margin-right: 10px;
    }

    .testimonials-stats {
      margin-bottom: 60px;
    }

    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      padding: 40px;
      background: white;
      border-radius: 25px;
      box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    }

    .stat-block {
      display: flex;
      align-items: center;
      gap: 15px;
      text-align: left;
    }

    .stat-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #6366f1, #a855f7);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      flex-shrink: 0;
    }

    .stat-number {
      display: block;
      font-size: 32px;
      font-weight: 900;
      color: #1e293b;
      line-height: 1;
      margin-bottom: 5px;
    }

    .stat-description {
      font-size: 14px;
      color: #64748b;
      font-weight: 600;
    }

    .testimonials-cta {
      text-align: center;
    }

    .cta-wrapper {
      background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
      padding: 50px 40px;
      border-radius: 25px;
      color: white;
    }

    .cta-heading {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .cta-text {
      font-size: 18px;
      color: #cbd5e1;
      margin-bottom: 35px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-testimonial-primary,
    .btn-testimonial-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 12px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .btn-testimonial-primary {
      background: linear-gradient(135deg, #6366f1, #a855f7);
      color: white;
    }

    .btn-testimonial-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
      color: white;
    }

    .btn-testimonial-secondary {
      background: transparent;
      color: white;
      border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-testimonial-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: white;
      color: white;
    }

    @media (max-width: 768px) {
      .testimonials-showcase {
        padding: 60px 0;
      }

      .testimonials-title {
        font-size: 32px;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .testimonial-card {
        padding: 25px;
      }

      .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }

      .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
      }

      .stat-block {
        flex-direction: column;
        text-align: center;
      }

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

      .btn-testimonial-primary,
      .btn-testimonial-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
    }

/* Block 4 */
.business-process-methodology {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.business-process-methodology::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.methodology-header {
  text-align: center;
  margin-bottom: 80px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.methodology-title {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1a1a1a, #333);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  line-height: 1.2;
}

.methodology-subtitle {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline {
  position: relative;
  margin: 80px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2196f3, #1976d2);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item.featured {
  transform: scale(1.02);
  z-index: 2;
}

.timeline-marker {
  position: relative;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 60px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
  z-index: 3;
}

.marker-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 3px solid #e3f2fd;
}

.marker-icon i {
  font-size: 24px;
  color: #2196f3;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.timeline-item.featured .timeline-content {
  background: linear-gradient(135deg, #f8faff, #e3f2fd);
  border: 2px solid #2196f3;
}

.step-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.step-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.step-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8faff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  color: #333;
  border: 1px solid #e3f2fd;
}

.detail-icon {
  color: #2196f3;
  font-size: 14px;
}

.step-duration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.opportunity-metrics {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.metric-card {
  background: white;
  padding: 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e3f2fd;
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2196f3;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.strategy-components {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.component-pill {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.strategy-guarantee {
  margin-top: 24px;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: white;
  padding: 16px 24px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.guarantee-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.guarantee-text span {
  font-size: 14px;
  opacity: 0.9;
}

.process-improvements {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.improvement-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #f8faff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #e3f2fd;
}

.improvement-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.improvement-icon i {
  color: white;
  font-size: 20px;
}

.improvement-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.improvement-content p {
  color: #666;
  margin: 0;
}

.digital-stack {
  margin-top: 24px;
}

.tech-category {
  margin-bottom: 24px;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.category-title i {
  color: #2196f3;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  background: white;
  color: #2196f3;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #2196f3;
}

.implementation-phases {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.phase-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phase-number {
  width: 40px;
  height: 40px;
  background: #2196f3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.phase-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.phase-content p {
  color: #666;
  margin: 0;
  font-size: 14px;
}

.monitoring-dashboard {
  margin-top: 24px;
}

.dashboard-metrics {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.metric-widget {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  border: 1px solid #e3f2fd;
}

.widget-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-icon i {
  color: white;
  font-size: 20px;
}

.widget-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #2196f3;
}

.widget-label {
  font-size: 14px;
  color: #666;
}

.ongoing-support {
  background: #f8faff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #e3f2fd;
}

.support-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2196f3;
  font-weight: 600;
  font-size: 14px;
}

.methodology-results {
  margin: 80px 0;
}

.results-header {
  text-align: center;
  margin-bottom: 60px;
}

.results-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

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

.results-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.result-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e3f2fd;
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.result-card.primary {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  transform: scale(1.05);
}

.result-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-card.primary .result-icon {
  background: rgba(255, 255, 255, 0.2);
}

.result-icon i {
  font-size: 32px;
  color: #2196f3;
}

.result-card.primary .result-icon i {
  color: white;
}

.result-value {
  font-size: 3.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 12px;
  color: #2196f3;
}

.result-card.primary .result-value {
  color: white;
}

.result-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.4;
}

.result-card.primary .result-description {
  color: rgba(255, 255, 255, 0.9);
}

.result-trend {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #4caf50;
  font-weight: 600;
}

.trend-icon {
  font-size: 16px;
}

.methodology-cta {
  background: linear-gradient(135deg, #1a1a1a, #333);
  padding: 80px 60px;
  border-radius: 30px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.methodology-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-methodology-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
  transition: all 0.3s ease;
}

.btn-methodology-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(33, 150, 243, 0.6);
  color: white;
}

.btn-methodology-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: white;
  padding: 18px 36px;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-methodology-secondary:hover {
  background: white;
  color: #1a1a1a;
}

.methodology-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon i {
  font-size: 24px;
  color: white;
}

.guarantee-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.guarantee-content p {
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .methodology-title {
    font-size: 2.5rem;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-marker {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .opportunity-metrics {
    flex-direction: column;
  }
  
  .dashboard-metrics {
    flex-direction: column;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .methodology-guarantee {
    flex-direction: column;
    text-align: center;
  }
}

/* Block 5 */
.contact-form-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #f1f5ff 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  padding: 60px;
  box-shadow: 
    0 32px 64px -12px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
}

.header-icon i {
  font-size: 32px;
  color: white;
}

.form-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
}

.form-subtitle {
  font-size: 20px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

.trust-item i {
  color: #10b981;
  font-size: 16px;
}

.form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.consultation-form {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
  font-size: 15px;
}

.form-label i {
  color: #6366f1;
  font-size: 14px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafbfc;
  position: relative;
  z-index: 2;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #6366f1;
  background: white;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.form-input:focus + .input-border,
.form-textarea:focus + .input-border {
  transform: scaleX(1);
}

.message-group {
  grid-column: 1 / -1;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
}

.privacy-agreement {
  margin-bottom: 24px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.privacy-checkbox {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkmark i {
  font-size: 12px;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.privacy-checkbox:checked + .checkmark {
  background: #6366f1;
  border-color: #6366f1;
}

.privacy-checkbox:checked + .checkmark i {
  opacity: 1;
  transform: scale(1);
}

.privacy-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
}

.privacy-link:hover {
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 20px 32px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.button-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.consultation-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-card {
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon i {
  font-size: 20px;
  color: #0284c7;
}

.benefit-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.contact-alternatives {
  margin-top: 50px;
  text-align: center;
}

.alternative-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  min-width: 200px;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.method-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-icon i {
  color: white;
  font-size: 16px;
}

.method-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.method-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.method-value {
  font-size: 14px;
  color: #1e293b;
  font-weight: 600;
}

.success-stories-preview {
  margin-top: 50px;
  text-align: center;
}

.stories-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
}

.success-ticker {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.success-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.company-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.company-name {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.success-metric {
  font-size: 14px;
  color: #059669;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .form-wrapper {
    padding: 40px;
  }
  
  .form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 80px 0;
  }
  
  .form-wrapper {
    padding: 30px 20px;
    border-radius: 24px;
  }
  
  .form-title {
    font-size: 32px;
  }
  
  .form-subtitle {
    font-size: 18px;
  }
  
  .trust-indicators {
    gap: 16px;
  }
  
  .consultation-form {
    padding: 24px;
  }
  
  .contact-methods {
    flex-direction: column;
    align-items: center;
  }
  
  .success-ticker {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 28px;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .submit-button {
    font-size: 16px;
    padding: 16px 24px;
  }
}
