/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    min-height: 100vh;
    color: #1e293b;
    line-height: 1.6;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header span {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.flag {
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Pages */
.page {
    display: none;
    min-height: calc(100vh - 52px);
}

.page.active {
    display: block;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 24px;
    max-width: 420px;
    margin: 0 auto;
}

/* Start Page */
#start-page {
    display: none;
    padding: 32px 16px;
    align-items: center;
    justify-content: center;
}

#start-page.active {
    display: flex;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.icon-circle svg {
    color: #fff;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #1e293b;
}

.subtitle {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    margin-bottom: 8px;
}

.time-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 24px;
}

.steps {
    margin-bottom: 24px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 8px;
}

.step-num {
    width: 24px;
    height: 24px;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    font-size: 14px;
    color: #475569;
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.social-proof {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 16px;
}

/* Quiz Page */
#quiz-page {
    padding: 24px 16px;
}

.quiz-container {
    max-width: 420px;
    margin: 0 auto;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    border-radius: 5px;
    transition: width 0.5s ease;
    width: 0%;
}

.question-card {
    padding: 24px;
}

.question-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e293b;
}

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

.option-btn {
    width: 100%;
    padding: 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.option-btn:hover {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #1e293b;
}

/* Analyzing Page */
#analyzing-page {
    display: none;
    padding: 32px 16px;
    align-items: center;
    justify-content: center;
}

#analyzing-page.active {
    display: flex;
}

.analyzing-card {
    text-align: center;
    padding: 32px 24px;
}

.spinner-container {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
}

.spinner {
    position: absolute;
    inset: 0;
    border: 4px solid #e2e8f0;
    border-top-color: #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.spinner-container span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #dc2626;
}

.analyzing-card h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.analyzing-card p {
    color: #64748b;
    margin-bottom: 24px;
}

/* Results Page */
#results-page {
    padding-bottom: 100px;
}

#results-page.active .header {
    display: none;
}

.results-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-weight: 500;
}

/* Block 1: Result */
.block-result {
    background: linear-gradient(180deg, #dc2626, #b91c1c);
    padding: 32px 16px;
    text-align: center;
}

.result-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.result-label {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

.result-percent {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.result-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 500;
}

.result-text {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    max-width: 420px;
    margin: 0 auto;
}

.highlight {
    color: #fde047;
    font-weight: 700;
}

/* Block 2: Warning */
.block-warning {
    background: #0f172a;
    padding: 32px 16px;
}

.block-warning > * {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.warning-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.warning-icon {
    width: 48px;
    height: 48px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-icon svg {
    color: #fff;
}

.warning-header h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.warning-intro {
    color: #cbd5e1;
    margin-bottom: 16px;
}

.warning-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(127, 29, 29, 0.3);
    border: 1px solid #991b1b;
    border-radius: 12px;
    padding: 12px 16px;
}

.x-icon {
    color: #f87171;
    font-weight: 700;
    font-size: 16px;
}

.warning-item span:last-child {
    color: #fff;
    font-weight: 500;
}

.recommendation-box {
    background: rgba(161, 98, 7, 0.4);
    border: 1px solid #a16207;
    border-radius: 12px;
    padding: 16px;
}

.recommendation-box p {
    color: #fef08a;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
}

/* Block 3: Product */
.block-product {
    background: linear-gradient(180deg, #f1f5f9, #fff);
    padding: 40px 16px;
}

.block-product > * {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.product-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    color: #1e293b;
    margin-bottom: 4px;
}

.product-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.product-question {
    background: linear-gradient(90deg, #fef2f2, #fff7ed);
    border-left: 4px solid #dc2626;
    padding: 16px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 24px;
}

.product-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.product-intro {
    color: #475569;
    margin-bottom: 24px;
    text-align: center;
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    margin: 0 auto 24px;
    display: block;
    text-align: center;
    width: fit-content;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 30px rgba(239, 68, 68, 0.8); }
}

.product-image-container {
    position: relative;
    text-align: center;
    margin-bottom: 32px;
}

.discount-tag {
    position: absolute;
    top: -10px;
    right: calc(50% - 100px);
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;
}

.product-image {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: float 3s ease-in-out infinite;
}

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

.benefits-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 24px;
    margin-bottom: 24px;
}

.benefits-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

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

.check {
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    color: #475569;
    font-weight: 500;
}

.product-description {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
}

.product-description p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

/* Block 4: CTA */
.block-cta {
    background: linear-gradient(180deg, #1e293b, #0f172a);
    padding: 40px 16px;
}

.block-cta > * {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.pricing {
    text-align: center;
    margin-bottom: 8px;
}

.old-price {
    color: red;
    text-decoration: line-through;
    font-size: 20px;
    margin-right: 16px;
}

.new-price {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
}

.savings {
    text-align: center;
    color: #4ade80;
    font-weight: 500;
    margin-bottom: 24px;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input::placeholder {
    color: #64748b;
}

.form-group input:focus {
    outline: none;
    border-color: #22c55e;
}

.btn-cta {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.btn-cta:hover {
    transform: scale(1.02);
}

.btn-cta:active {
    transform: scale(0.98);
}

.urgency-box {
    background: rgba(127, 29, 29, 0.5);
    border: 1px solid #991b1b;
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    margin-bottom: 24px;
    color: #fde047;
    font-size: 14px;
    animation: pulse 2s infinite;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #334155;
}

.badge {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.badge-icon {
    font-size: 20px;
}

.badge span:last-child {
    color: #94a3b8;
    font-size: 12px;
}

.flag-small {
    border-radius: 2px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #0f172a, rgba(15, 23, 42, 0.95), transparent);
    padding: 32px 16px 16px;
    display: none;
    z-index: 100;
}

.btn-floating {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 16px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

/* Mobile responsive */
@media (max-width: 640px) {
    h1 {
        font-size: 22px;
    }

    .result-percent {
        font-size: 60px;
    }

    .new-price {
        font-size: 32px;
    }

    #results-page.active .floating-cta {
        display: block;
    }
}

@media (min-width: 641px) {
    .floating-cta {
        display: none !important;
    }
}



/* базу не чіпаємо, тільки акуратне ховання */
#floating-cta {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .25s ease, visibility .25s ease;
}

#floating-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}








/* =========================
   QUIZ SLIDE ANIMATIONS
========================= */

.question-card {
  position: relative;
  overflow: hidden;
}

#question-text,
#options-container {
  transition: transform .45s cubic-bezier(.22,.61,.36,1),
              opacity .35s ease;
}

.quiz-anim-exit {
  transform: translateX(-30px);
  opacity: 0;
}

.quiz-anim-enter {
  transform: translateX(30px);
  opacity: 0;
}

.quiz-anim-active {
  transform: translateX(0);
  opacity: 1;
}

/* option feedback */
.option-btn {
  position: relative;
  overflow: hidden;
}

.option-btn.selected {
  border-color: #22c55e;
  background: #ecfdf5;
  color: #064e3b;
  transform: scale(.98);
}

/* click protection */
.quiz-disabled .option-btn {
  pointer-events: none;
  opacity: .85;
}




/* =========================
   RESULTS ANIMATIONS
========================= */

#results-page {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
}

#results-page.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* reveal blocks */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* smoother analyzing fade */
#analyzing-page {
  transition: opacity .5s ease;
}

#analyzing-page.fade-out {
  opacity: 0;
}

/* ensure floating CTA not affected by page fade */
#results-page.is-visible .floating-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,.61,.36,1);
}

/* =========================
   ANALYZING ENTER / EXIT
========================= */

#analyzing-page {
  opacity: 1;
  pointer-events: none;
}

#analyzing-page.active {
  pointer-events: auto;
}

.analyzing-card {
  opacity: 0;
  transform: translateY(28px) scale(.95);
  transition:
    opacity .45s ease,
    transform .6s cubic-bezier(.22,.61,.36,1);
}

#analyzing-page.is-visible .analyzing-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#analyzing-page.fade-out .analyzing-card {
  opacity: 0;
  transform: translateY(-18px) scale(.98);
}



/* =========================
   ANALYZING V2 (AI + REPORT)
========================= */

.analyzing-v2 {
  padding: 26px 22px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.analyzing-v2:before {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background:
    radial-gradient(circle at 30% 20%, rgba(220,38,38,.18), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(34,197,94,.12), transparent 55%),
    radial-gradient(circle at 70% 25%, rgba(59,130,246,.10), transparent 45%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.ai-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  backdrop-filter: blur(8px);
}

.ai-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.15);
  animation: aiDot 1.4s ease-in-out infinite;
}

@keyframes aiDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.78); opacity: .7; }
}

.ai-percent {
  font-weight: 900;
  font-size: 22px;
  color: #dc2626;
}

.ai-title {
  position: relative;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
  color: #0f172a;
}

.ai-subtitle {
  position: relative;
  color: #475569;
  font-size: 13px;
  margin-bottom: 16px;
}

.ai-meter {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(15,23,42,0.08);
  overflow: hidden;
  margin-bottom: 18px;
}

.ai-meter-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a, #dc2626);
  transition: width .35s ease;
}

.ai-meter-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.35) 45%,
    transparent 60%);
  transform: translateX(-70%);
  animation: meterSweep 1.35s linear infinite;
  opacity: .55;
  pointer-events: none;
}

@keyframes meterSweep {
  to { transform: translateX(120%); }
}

.ai-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.ai-step {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 6px 18px rgba(2,6,23,0.06);
  transform: translateY(10px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), opacity .45s ease;
}

#analyzing-page.is-visible .ai-step {
  transform: translateY(0);
  opacity: 1;
}

.ai-step-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0f172a;
  background: rgba(15,23,42,.06);
}

.ai-step-title {
  font-weight: 800;
  font-size: 13px;
  color: #0f172a;
  margin-bottom: 2px;
}

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

.ai-step-status {
  font-size: 12px;
  font-weight: 800;
  color: #94a3b8;
  padding-left: 6px;
}

.ai-step.is-active {
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 10px 22px rgba(34,197,94,0.12);
}

.ai-step.is-active .ai-step-status {
  color: #16a34a;
}

.ai-step.is-done {
  border-color: rgba(34,197,94,.45);
}

.ai-step.is-done .ai-step-icon {
  background: rgba(34,197,94,.16);
  color: #166534;
}

.ai-step.is-done .ai-step-status {
  color: #166534;
}

.ai-log {
  position: relative;
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(15,23,42,0.05);
  border: 1px dashed rgba(15,23,42,0.14);
  font-size: 12px;
  color: #334155;
  max-height: 92px;
  overflow: hidden;
}

.ai-log-line {
  opacity: .9;
  transform: translateY(4px);
  animation: logLine .55s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes logLine {
  to { opacity: 1; transform: translateY(0); }
}

.ai-foot {
  position: relative;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-foot-chip {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 999px;
  padding: 8px 10px;
}
/* =========================
   ACTION BLOCK (TO FORM)
========================= */

.block-action {
  background: linear-gradient(180deg, #020617, #0f172a);
  padding: 48px 16px;
  text-align: center;
}

.action-inner {
  max-width: 420px;
  margin: 0 auto;
}

.block-action h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.block-action p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 24px;
}

.btn-action {
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(34,197,94,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(34,197,94,.45);
}

.btn-action:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(34,197,94,.3);
}
/* =========================
   TRUST BADGES ALIGN FIX
========================= */

.trust-badges {
  align-items: center;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
}

.badge svg,
.badge-icon {
  display: block;
  height: 24px;
  margin-bottom: 6px;
}

.flag-small {
  height: 16px;
  width: auto;
  margin-bottom: 6px;
}

.badge span:last-child {
  line-height: 1.1;
  text-align: center;
}
