:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.18);
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow-light: 0 8px 32px rgba(31, 38, 135, 0.15);
    --shadow-strong: 0 20px 60px rgba(31, 38, 135, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #eaf2ff 0%, #f8fbff 100%);
    color: #18181b;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 30%, #e0e7ff 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, #dbeafe 0%, transparent 70%),
        radial-gradient(ellipse at 60% 10%, #4f8cff 0%, transparent 80%),
        radial-gradient(ellipse at 10% 80%, #2563eb 0%, transparent 80%),
        linear-gradient(120deg, #2563eb 0%, #4f8cff 40%, #dbeafe 80%, #e0e7ff 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

.bg-animation::before, .bg-animation::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.bg-animation::before {
    width: 400px;
    height: 400px;
    left: 10vw;
    top: 10vh;
    background: radial-gradient(circle, #4f8cff 0%, transparent 80%);
    animation: moveGlow1 18s ease-in-out infinite alternate;
}

.bg-animation::after {
    width: 300px;
    height: 300px;
    right: 8vw;
    bottom: 12vh;
    background: radial-gradient(circle, #2563eb 0%, transparent 80%);
    animation: moveGlow2 22s ease-in-out infinite alternate;
}

@keyframes moveGlow1 {
    0% { left: 10vw; top: 10vh; opacity: 0.45; }
    50% { left: 18vw; top: 16vh; opacity: 0.7; }
    100% { left: 10vw; top: 10vh; opacity: 0.45; }
}

@keyframes moveGlow2 {
    0% { right: 8vw; bottom: 12vh; opacity: 0.5; }
    50% { right: 14vw; bottom: 18vh; opacity: 0.7; }
    100% { right: 8vw; bottom: 12vh; opacity: 0.5; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.5; }
}

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

.hero {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.hero-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.logo-icon {
    font-size: 3rem;
    color: #2563eb !important;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb !important;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #52525b;
    margin-bottom: 2rem;
    font-weight: 400;
}

.button-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.cta-button, .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(90deg, #2563eb 0%, #4f8cff 100%);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    border: 2px solid #1742a0;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.08);
    min-width: 180px;
    justify-content: center;
}

.cta-button:hover, .cta-button:focus, .contact-link:hover, .contact-link:focus {
    background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
    box-shadow: 0 0 16px 0 rgba(37,99,235,0.25);
    border-color: #2563eb;
}

.cta-button i, .contact-link i {
    color: #fff !important;
    font-size: 1em;
}

@media (max-width: 600px) {
    .button-row {
        flex-direction: column;
        gap: 0.7rem;
        align-items: stretch;
    }
    .cta-button, .contact-link {
        width: 100%;
        min-width: 110px;
    }
}

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

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover,
.feature-card:focus,
.feature-card.active {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.feature-card:hover::before,
.feature-card:focus::before,
.feature-card.active::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 1.7rem;
    color: #2563eb;
    background: linear-gradient(90deg, #2563eb 0%, #4f8cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px #2563eb33);
    margin-bottom: 0.8rem;
    transition: filter 0.2s;
}

.feature-card:hover .feature-icon {
    filter: drop-shadow(0 4px 16px #2563eb55);
}

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

.feature-description {
    color: #52525b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #eaf2ff 100%);
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #4f8cff 100%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.pricing-section {
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: #2563eb !important;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.pricing-card:hover,
.pricing-card:focus,
.pricing-card.active {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.pricing-card.featured {
    border: 2px solid #2563eb !important;
}

.pricing-card.featured::before {
    content: 'ҰСЫНЫЛАДЫ';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    display: block;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #2563eb !important;
}

.price-features {
    font-size: 0.9rem;
    color: #52525b;
    line-height: 1.8;
}

.faq-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(107, 114, 128, 0.2);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-answer {
    color: #52525b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 16px 0 rgba(37,99,235,0.04);
}

.contact-section .section-title {
    color: #2563eb !important;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(90deg, #2563eb 0%, #4f8cff 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.65rem 1.3rem;
    border-radius: 24px;
    font-size: 0.98rem;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.08);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    min-width: 140px;
    justify-content: center;
}

.contact-link i {
    color: #fff !important;
    font-size: 1em;
}

.contact-link:hover,
.contact-link:focus {
    background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 0 16px 0 rgba(37,99,235,0.18);
}

@media (max-width: 600px) {
    .contact-links {
        flex-direction: column;
        gap: 0.7rem;
        align-items: stretch;
    }
    .contact-link {
        width: 100%;
        min-width: unset;
    }
}

.stats-counter {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2563eb !important;
    display: block;
}

.stat-label {
    color: #52525b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Мобильные стили */
@media (max-width: 768px) {
    .container {
        padding: 0.75rem;
    }

    .hero {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }

    .hero-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .logo-icon {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .stats-counter {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .pricing-section {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .price {
        font-size: 1.75rem;
    }

    .price-features {
        font-size: 0.85rem;
    }

    .faq-section {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 1.5rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .contact-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .stats-counter {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

    .pricing-card.featured::before {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Модальное окно */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  align-items: center;
  justify-content: center;
}
.modal.show { display: flex; }
.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  max-width: 350px;
  width: 90vw;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.copy-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  max-width: 350px;
  width: 90vw;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.copy-modal-icon {
  font-size: 32px;
  color: #4caf50;
  margin-bottom: 8px;
}
.copy-modal-title {
  font-size: 22px;
  font-weight: bold;
  color: #4caf50;
  margin-bottom: 10px;
}
.copy-modal-desc {
  font-size: 16px;
  color: #222;
  margin-bottom: 12px;
}
.copy-modal-message {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
  font-family: inherit;
  word-break: break-word;
}
.copy-modal-note {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}
.copy-modal-btn {
  padding: 10px 20px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.hero-title {
  color: #2563eb;
}
.text-secondary {
  color: var(--text-secondary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.mt-1-5 {
  margin-top: 1.5rem;
}
.small-text {
  font-size: 0.9rem;
}
.copy-success {
  display: none;
  color: green;
  margin-top: 1rem;
}
.modal-title {
  margin-bottom: 1rem;
}

/* === Инструкция по премиуму === */
.premium-instruction {
  margin: 2rem auto 1.5rem auto;
}
#premium-instruction {
  max-width: 800px;
  width: 95vw;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
}
#instruction-slider {
  position: relative;
  width: 100%;
  min-height: 300px;
  height: auto;
  transition: min-height 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.instruction-slide {
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1), transform 0.45s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
  position: absolute;
  top: 0; left: 0; width: 100%;
  display: block;
  pointer-events: none;
}
.instruction-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
  pointer-events: auto;
}
.instruction-slide.fade-out {
  opacity: 0;
  transform: translateX(-40px);
  z-index: 1;
}
.instruction-slide .slide-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.instruction-slide .slide-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.instruction-slide .slide-desc {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 16px;
}
.instruction-slide .slide-box {
  background: #f8f9fb;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.instruction-slide .slide-link {
  display: inline-block;
  margin: 0 0 20px 0;
  padding: 12px 24px;
  background: #229ED9;
  color: #fff;
  border-radius: 8px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
}
.instruction-slide .slide-note {
  font-size: 1.1rem;
  color: #888;
}
#instruction-prev, #instruction-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
}
#instruction-prev { left: 15px; right: auto; }
#instruction-next { right: 15px; left: auto; }

.instruction-slide {
  padding: 32px 40px;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}
@media (max-width: 600px) {
  #premium-instruction {
    max-width: 98vw;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  }
  #instruction-slider {
    min-height: 0;
    padding: 0;
  }
  .instruction-slide {
    padding: 16px 7vw 10px 7vw;
  }
  .instruction-slide .slide-icon {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  .instruction-slide .slide-title {
    font-size: 1.08rem;
    margin-bottom: 8px;
  }
  .instruction-slide .slide-desc,
  .instruction-slide .slide-box,
  .instruction-slide .slide-link,
  .instruction-slide .slide-note {
    font-size: 1rem;
    padding: 8px 10px;
  }
  .instruction-slide .slide-box {
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
  }
  .instruction-slide .slide-link {
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
  }
  #instruction-prev { left: 8px; right: auto; width: 36px; height: 36px; font-size: 1.3rem; }
  #instruction-next { right: 8px; left: auto; width: 36px; height: 36px; font-size: 1.3rem; }
  .slide-step {
    top: 8px;
    left: 8px;
    font-size: 1rem;
    padding: 2px 8px;
  }
}

/* === Карусель-анимация для слайдов инструкции === */
.instruction-slide {
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1), transform 0.45s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
  position: absolute;
  top: 0; left: 0; width: 100%;
  display: block;
}
.instruction-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}
.instruction-slide.to-left {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 1;
}
.instruction-slide.to-right {
  opacity: 0;
  transform: translateX(100%);
  z-index: 1;
}

/* Конец блока инструкции */ 

.slide-success {
  margin-top: 12px;
  color: #22c55e;
  font-size: 1.08rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
@media (max-width: 600px) {
  .slide-success {
    font-size: 0.98rem;
    margin-top: 8px;
  }
} 

.instruction-slide {
  position: absolute;
  top: 0; left: 0; width: 100%;
  box-sizing: border-box;
}
.slide-step {
  position: absolute;
  top: 24px;
  left: 24px;
  margin: 0;
  width: 48px;
  height: 48px;
  background: #e3f0ff;
  color: #2563eb;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(37,99,235,0.10);
  z-index: 3;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .slide-step {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    top: 10px;
    left: 10px;
  }
} 

.premium-options {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 18px;
}
.premium-option {
  background: linear-gradient(90deg, #2563eb 0%, #4f8cff 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  outline: none;
  min-width: 60px;
  min-height: 40px;
  line-height: 1.1;
  text-align: center;
  word-break: break-word;
}
.premium-option:hover, .premium-option:focus {
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 0 16px 0 rgba(37,99,235,0.18);
} 