
/* Block 1 */
.hero-banner {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  background-image: url('hero-data-protection.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.9) 100%);
  backdrop-filter: blur(1px);
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-content {
  color: white;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.feature-item i {
  color: #ffd700;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-cta {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  border: none;
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-shadow: none;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.floating-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  position: relative;
  top: -50px;
  left: -30px;
  animation-delay: 0s;
}

.card-2 {
  position: relative;
  top: -80px;
  right: -40px;
  animation-delay: 1.5s;
}

.floating-card i {
  font-size: 1.5rem;
}

.floating-card strong {
  display: block;
  color: #333;
  font-size: 0.9rem;
}

.floating-card small {
  color: #666;
  font-size: 0.8rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator a {
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
  opacity: 1;
}

.consultation-form .form-label {
  font-weight: 500;
  color: #333;
}

.consultation-form .form-control,
.consultation-form .form-select {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .hero-banner {
    background-attachment: scroll;
    min-height: 90vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-stats {
    justify-content: space-around;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-features {
    gap: 0.75rem;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
}

/* Block 2 */
.ai-integration-showcase {
  padding: 120px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.ai-integration-showcase::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="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  pointer-events: none;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-badge i {
  color: #ffd700;
  font-size: 1.1rem;
}

.ai-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.7;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.ai-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ai-feature-icon {
  background: rgba(255, 255, 255, 0.15);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.ai-feature-icon i {
  font-size: 1.5rem;
  color: #ffd700;
}

.ai-feature-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.ai-feature-content p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

.ai-stats-row {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.ai-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ai-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.btn-ai-demo {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-ai-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
}

.ai-visual-container {
  position: relative;
  padding: 2rem;
}

.ai-main-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.ai-floating-element {
  position: absolute;
  z-index: 10;
}

.ai-element-1 {
  top: 15%;
  right: -5%;
  animation: aiFloat1 6s ease-in-out infinite;
}

.ai-element-2 {
  bottom: 25%;
  left: -8%;
  animation: aiFloat2 8s ease-in-out infinite;
}

.ai-element-3 {
  top: 45%;
  right: -12%;
  animation: aiFloat3 7s ease-in-out infinite;
}

.ai-mini-card {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
}

.ai-mini-card i {
  color: #667eea;
  font-size: 1.2rem;
}

.ai-neural-network {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.3;
}

.ai-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: aiPulse 3s ease-in-out infinite;
}

.ai-node-1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.ai-node-2 {
  top: 60%;
  left: 25%;
  animation-delay: 1s;
}

.ai-node-3 {
  top: 40%;
  right: 35%;
  animation-delay: 2s;
}

.ai-node-4 {
  bottom: 30%;
  right: 30%;
  animation-delay: 1.5s;
}

.ai-connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  animation: aiFlow 4s linear infinite;
}

.ai-connection-1 {
  top: 35%;
  left: 25%;
  width: 150px;
  transform: rotate(25deg);
}

.ai-connection-2 {
  top: 50%;
  left: 35%;
  width: 120px;
  transform: rotate(-15deg);
  animation-delay: 1s;
}

.ai-connection-3 {
  bottom: 40%;
  right: 25%;
  width: 100px;
  transform: rotate(45deg);
  animation-delay: 2s;
}

@keyframes aiFloat1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(2deg);
  }
  66% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes aiFloat2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes aiFloat3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-12px) rotate(-2deg);
  }
  75% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes aiPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

@keyframes aiFlow {
  0% {
    opacity: 0;
    transform: translateX(-50px) scaleX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(0px) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(50px) scaleX(0);
  }
}

@media (max-width: 991px) {
  .ai-title {
    font-size: 2.5rem;
  }
  
  .ai-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ai-stats-row {
    gap: 2rem;
    justify-content: center;
  }
  
  .ai-visual-container {
    margin-top: 3rem;
  }
  
  .ai-floating-element {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 1rem 0;
    animation: none !important;
  }
  
  .ai-element-1,
  .ai-element-2,
  .ai-element-3 {
    display: inline-block;
    margin: 0.5rem;
  }
}

@media (max-width: 767px) {
  .ai-integration-showcase {
    padding: 80px 0;
  }
  
  .ai-title {
    font-size: 2rem;
  }
  
  .ai-stats-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .btn-ai-demo {
    width: 100%;
    justify-content: center;
  }
}

/* Block 3 */
.quantum-security-vault {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.quantum-security-vault::before {
  content: '';
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.quantum-badge i {
  font-size: 1.1rem;
  animation: pulse 2s infinite;
}

.quantum-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffff, #ffffff, #ff00ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.quantum-subtitle {
  font-size: 1.3rem;
  color: #b8c5d6;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.quantum-visual-stack {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.quantum-layer {
  position: relative;
  border-radius: 15px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.quantum-layer-1 {
  top: -400px;
  left: -20px;
  width: 150px;
  height: 150px;
  animation-delay: -2s;
}

.quantum-layer-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.quantum-layer-2 {
  top: -250px;
  right: -30px;
  width: 120px;
  height: 120px;
  animation-delay: -4s;
}

.quantum-layer-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.quantum-floating-badge {
  position: relative;
  background: rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: glow 3s ease-in-out infinite alternate;
}

.quantum-badge-1 {
  top: -550px;
  left: 20px;
}

.quantum-badge-2 {
  top: -450px;
  right: 20px;
}

.quantum-floating-badge i {
  font-size: 1.5rem;
  color: #00ffff;
}

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

.badge-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
}

.badge-subtitle {
  font-size: 0.75rem;
  color: #b8c5d6;
}

.quantum-content-area {
  padding-left: 2rem;
}

.quantum-security-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.security-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.security-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.security-icon-wrapper {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-icon-wrapper i {
  font-size: 1.5rem;
  color: #000;
}

.security-feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.security-feature-content p {
  color: #b8c5d6;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

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

.metric {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.quantum-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 140px;
}

.trust-badge img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.trust-badge span {
  font-size: 0.8rem;
  color: #b8c5d6;
  font-weight: 500;
}

.quantum-action-panel {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.action-content h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.action-content p {
  color: #b8c5d6;
  margin-bottom: 1.5rem;
}

.quantum-cta-btn {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border: none;
  color: #000;
  padding: 0.875rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.quantum-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

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

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

@keyframes glow {
  0% { box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2); }
  100% { box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4); }
}

@media (max-width: 991px) {
  .quantum-content-area {
    padding-left: 0;
    margin-top: 3rem;
  }
  
  .quantum-title {
    font-size: 2.5rem;
  }
  
  .quantum-visual-stack {
    height: 400px;
  }
  
  .quantum-floating-badge {
    display: none;
  }
  
  .quantum-layer {
    display: none;
  }
}

@media (max-width: 768px) {
  .quantum-security-vault {
    padding: 4rem 0;
  }
  
  .quantum-title {
    font-size: 2rem;
  }
  
  .quantum-subtitle {
    font-size: 1.1rem;
  }
  
  .trust-badge {
    min-width: 120px;
  }
  
  .feature-metrics {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Block 4 */
.order-form-2025 {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.order-form-2025::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"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>') repeat;
  background-size: 50px 50px;
  animation: float 20s linear infinite;
}

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

.form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

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

.form-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.order-form {
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 32px;
  position: relative;
}

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

.form-label i {
  color: #667eea;
  width: 20px;
}

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

.form-input:focus {
  outline: none;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.input-highlight {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.form-actions {
  margin-bottom: 32px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

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

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(4px);
}

.trust-indicators {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.form-benefits {
  border-top: 1px solid #e5e7eb;
  padding-top: 32px;
  display: grid;
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 16px;
  border-left: 4px solid #667eea;
}

.benefit-item img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.benefit-content h4 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
}

.benefit-content p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .order-form-2025 {
    padding: 60px 0;
  }

  .form-wrapper {
    padding: 32px 20px;
    margin: 0 16px;
  }

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

  .form-subtitle {
    font-size: 1rem;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }

  .trust-item {
    justify-content: center;
  }
}
