*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

:root {
  --blue: #3B7A83;
  --blue-dark: #21435C;
  --blue-light: #E6F5F4;
  --green: #059669;
  --green-dark: #047857;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  overflow: auto !important;
}

body {
  font-family: 'Inter', sans-serif;
  background: #EDF5F5;
  color: var(--gray-900);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gray-900);
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text b {
  color: var(--blue);
}

.nav-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-badge {
  font-size: small;
  color: var(--gray-500);
  font-weight: 500;
}

.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

/* ===== MAIN LAYOUT ===== */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 24px;
  gap: 40px;
  align-items: start;
}

/* ===== LEFT PANEL ===== */
.left-panel {
  position: sticky;
  top: 80px;
}

.left-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.badge-top {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #E6F5F4, #C8E8E6);
  border: 1px solid #A0D4CF;
  color: var(--blue-dark);
  font-size: medium;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}

.hero-title {
  font-size: xx-large;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}

.highlight {
  background: linear-gradient(135deg, #51B1A3, #21435C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: large;
  color: var(--gray-500);
  line-height: 1.65;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.stat-num {
  font-size: x-large;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: small;
  color: var(--gray-500);
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

.trust-logos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logos-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.insurer-logo {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: medium;
  color: var(--gray-700);
}

.benefit-icon {
  width: 22px;
  height: 22px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #F59E0B;
  font-size: medium;
  margin-bottom: 6px;
}

.review-card p {
  font-size: small;
  color: var(--gray-700);
  line-height: 1.5;
  font-style: italic;
}

.reviewer {
  font-size: smaller;
  color: var(--gray-400);
  margin-top: 6px;
  display: block;
}

/* ===== RIGHT PANEL ===== */
.right-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(59, 122, 131, 0.14), 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(59, 122, 131, 0.12);
}

/* ===== PROGRESS ===== */
.progress-wrap {
  margin-bottom: 28px;
}

.progress-steps {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.dot-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-400);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-dot.active .dot-num {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(59, 122, 131, 0.22);
}

.step-dot.done .dot-num {
  background: var(--green);
  color: var(--white);
}

.dot-label {
  font-size: smaller;
  color: var(--gray-400);
  font-weight: 500;
}

.step-dot.active .dot-label,
.step-dot.done .dot-label {
  color: var(--gray-700);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 0 8px 20px;
  transition: background 0.4s ease;
}

.step-line.done {
  background: var(--green);
}

.progress-bar-bg {
  height: 4px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #51B1A3, #21435C);
  border-radius: 100px;
  width: 50%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== FORM STEPS ===== */
.form-step {
  display: none;
  animation: slideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-title {
  font-size: x-large;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.form-subtitle {
  font-size: small;
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* ===== QUESTION BLOCKS ===== */
.question-block {
  margin-bottom: 20px;
}

.question-label {
  display: block;
  font-size: small;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.options-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.option-btn {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: medium;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.option-btn:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 122, 131, 0.18);
}

.option-btn.selected {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 122, 131, 0.2);
}

.opt-icon {
  font-size: 1.4rem;
}

.option-btn.wide {
  flex-direction: row;
  justify-content: flex-start;
  padding: 14px 16px;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  width: 100%;
  padding: 16px 24px;
  background: #51B1A3;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: medium;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 122, 131, 0.55);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn.green {
  background: linear-gradient(135deg, #51B1A3, #21435C);
  box-shadow: 0 4px 16px rgba(59, 122, 131, 0.45);
}

.cta-btn.green:hover {
  box-shadow: 0 8px 24px rgba(59, 122, 131, 0.55);
}

.step-error {
  display: none;
  font-size: 1.2rem;
  color: #DC2626;
  margin-top: 8px;
  text-align: center;
}

.step-error.show {
  display: block;
}

/* ===== STEP 2 FIELDS ===== */
.back-btn-wrap {
  margin-bottom: 16px;
}

.back-btn {
  background: none;
  border: none;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}

.back-btn:hover {
  opacity: 0.7;
}

.fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-700);
}

input, textarea {
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: small;
  color: var(--gray-900);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--gray-50);
  outline: none;
}

input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59, 122, 131, 0.15);
}

input::placeholder {
  color: var(--gray-400);
}

/* ===== CONSENT ===== */
.consent-block {
  margin-top: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: x-small;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #9CA3AF;
  border-radius: 6px;
  background: var(--white);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.checkbox-label input:checked+.checkmark {
  background: var(--blue);
  border-color: var(--blue);
}

.checkbox-label input:checked+.checkmark::after {
  content: '✓';
  color: white;
  font-size: small;
  font-weight: 700;
}

.consent-text {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.consent-text a {
  color: var(--blue);
  text-decoration: none;
}

.consent-text a:hover {
  text-decoration: underline;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: small;
  color: var(--gray-400);
  margin-top: 12px;
  justify-content: center;
}

/* ===== SUCCESS ===== */
.success-content {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
  animation: bounceIn 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes bounceIn {
  0% {
    transform: scale(0)
  }

  60% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(1)
  }
}

.success-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  text-align: left;
}

.success-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--gray-50);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.success-badge {
  background: linear-gradient(135deg, #E6F5F4, #C8E8E6);
  border: 1px solid #A0D4CF;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-top: 8px;
}

/* ===== FORM TRUST ===== */
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: small;
  color: var(--gray-400);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px;
  margin-top: 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: small;
  color: var(--gray-400);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .main-layout {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .left-panel {
    position: static;
  }

  .hero-title {
    font-size: xx-large;
  }

  .stats-row {
    gap: 12px;
  }

  .security-note {
    font-size: x-small;
  }
}

@media (max-width: 600px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .options-row {
    grid-template-columns: 1fr;
  }

  .fields-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px 20px;
  }

  .hero-title {
    font-size: xx-large;
  }

  .reviews {
    display: none;
  }
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #21435C;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.loading-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.loading-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(237, 245, 245, 0.85) 0%, rgba(200, 232, 230, 0.85) 50%, rgba(33, 67, 92, 0.85) 100%);
  z-index: 2;
}

.loading-overlay.active {
  display: flex;
}

.loading-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 480px;
  width: 90%;
  text-align: center;
}

.loading-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* SVG spinner */
.spinner-wrap {
  width: 100px;
  height: 100px;
}

.spinner-ring {
  width: 100%;
  height: 100%;
  animation: spin 1.4s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 6;
}

.spinner-arc {
  fill: none;
  stroke: #51B1A3;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 80 134;
  stroke-dashoffset: 0;
}

.loading-title {
  font-size: x-large;
  font-weight: 800;
  color: #21435C;
  letter-spacing: -0.02em;
}

.loading-msg {
  font-size: medium;
  color: #3B7A83;
  font-weight: 500;
  min-height: 28px;
  transition: opacity 0.4s ease;
  line-height: 1.5;
}

/* Bouncing dots */
.loading-dots {
  display: flex;
  gap: 8px;
}

.loading-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #51B1A3;
  animation: dotBounce 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {

  0%,
  80%,
  100% {
    transform: scale(0.7);
    opacity: 0.5;
  }

  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* ===== OFFERS PAGE ===== */
.offers-page {
  display: none;
  min-height: 100vh;
  background: #EDF5F5;
  flex-direction: column;
}

.offers-page.active {
  display: flex;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offers-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: white;
  border-bottom: 1px solid #E5E7EB;
  padding: 30px 40px 30px 40px;
  box-shadow: 0 2px 12px rgba(59, 122, 131, 0.08);
  flex-wrap: wrap;
  text-align: center;
}

.offers-header-text h1 {
  font-size: x-large;
  font-weight: 800;
  color: #21435C;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  margin-top: 0;
}

.offers-header-text p {
  font-size: medium;
  color: #6B7280;
  margin: 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 850px;
  margin: 40px auto;
  padding: 0 24px;
}

/* Offer card */
.offer-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(59, 122, 131, 0.08);
  overflow: hidden;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.offer-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.offer-card:hover {
  box-shadow: 0 12px 40px rgba(59, 122, 131, 0.2);
  transform: translateY(-4px);
}

.offer-logo-wrap {
  margin-left: 24px;
  width: 160px;
  min-height: min-content;
  min-width: min-content;
  height: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.offer-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.offer-badge {
  display: inline-block;
  font-size: small;
  font-weight: 700;
  background: linear-gradient(135deg, #E6F5F4, #C8E8E6);
  color: #21435C;
  border: 1px solid #A0D4CF;
  border-radius: 100px;
  padding: 3px 10px;
  width: fit-content;
}

.offer-name {
  font-size: large;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 0;
}

.offer-tagline {
  font-size: small;
  color: #6B7280;
  line-height: 1.4;
}

.offer-price {
  font-size: 0.92rem;
  color: #374151;
}

.offer-price strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #3B7A83;
}

.offer-action {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  min-width: 180px;
  border-left: 1px solid #E5E7EB;
}

.offer-btn {
  display: block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #51B1A3, #21435C);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: large;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(59, 122, 131, 0.35);
  letter-spacing: 0.01em;
}

.offer-btn:hover {
  transform: translateY(-2px);
  color: #bbcbd9;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(59, 122, 131, 0.5);
  opacity: 0.95;
}

.offers-disclaimer {
  text-align: center;
  font-size: medium;
  color: #9CA3AF;
  padding: 0 24px;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .offer-card {
    flex-direction: column;
    align-items: stretch;
  }

  .offer-logo-wrap {
    width: 100%;
    height: 100px;
    padding: 16px;
  }

  .offer-custom-photo {
    margin: 16px auto 0;
  }

  .offer-action {
    border-left: none;
    border-top: 1px solid #E5E7EB;
    align-items: stretch;
    padding: 20px;
  }

  .offer-btn {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .offers-header {
    padding: 16px 20px;
  }

  .offers-header-text h1 {
    font-size: medium;
  }
}

.clause-description {
  display: none;
}

/** blog **/

.blog-main {
  padding-top: 140px;
}

.blog-hero {
  padding: 40px 0 30px;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #00fbad;
  margin-bottom: 15px;
}

.hero-gradient {
  background: linear-gradient(90deg, #0ea5e9, #00fbad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: #62706a;
  margin: 0 auto;
  max-width: 560px;
}

.blog-grid {
  padding: 20px 0 80px;
}

.blog-card {
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 34, 22, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid #eef2f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* width: 300px; */
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 34, 22, 0.15);
}

.blog-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 26px 28px 30px;
  height: 340px;
  position: relative;
}
.blog-card__body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(rgba(231, 231, 231, 0), rgba(255, 255, 255, 1));
  pointer-events: none;
}

.blog-card__tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.blog-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}

.blog-card__excerpt {
  color: #9ca3af;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.6;
  min-height: 80px;
  margin-bottom: 18px;
}

.blog-card__meta {
  font-size: 12px;
  font-weight: 700;
  color: #d1d5db;
  margin-bottom: 10px;
}

.fp-outline-btn {
  border-radius: 999px;
  border-color: #d7dfdb;
  color: #002216;
  font-weight: 700;
  padding: 12px 36px;
  transition: background 0.2s ease;
}

.clause-description {
  border-radius: 12px;
  padding: 14px;
  font-size: smaller;
  background: #ededed;
}

.clause-description-close {
  display: block;
  margin-bottom: -12px;
  text-align: right;
}

.error {
  color: red;
}