/* Speed e-Loans main styles */
:root {
  --blue: #2870af;
  --orange: #f28314;
  --green: #97c95e;
  --navy: #0f2b44;
  --slate: #5a6b7b;
  --light: #f5f7fb;
  --border: #e3e8ef;
  --shadow: 0 12px 30px rgba(15, 43, 68, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--navy);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  background: var(--orange);
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: #d86e0e;
}

.btn-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

[data-open-loan] .btn-arrow {
  transition: transform 0.2s ease;
}

[data-open-loan]:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-next {
  position: relative;
  padding-right: 26px;
  overflow: visible;
}

.btn-next::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 10px;
  height: 10px;
  border-right: 5px solid var(--orange);
  border-top: 5px solid var(--orange);
  transform: translateY(-50%) rotate(45deg);
}

.btn-next::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 22px;
  height: 0;
  border-top: 5px solid var(--orange);
  transform: translateY(-50%);
}

.btn-prev {
  position: relative;
  background: #d4d9df;
  color: #3f4b57;
}

.btn-prev:hover {
  background: #c4cbd3;
  color: #2e3842;
}

.btn-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  width: 10px;
  height: 10px;
  border-left: 5px solid #d4d9df;
  border-top: 5px solid #d4d9df;
  transform: translateY(-50%) rotate(-45deg);
}

.btn-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  width: 22px;
  height: 0;
  border-top: 5px solid #d4d9df;
  transform: translateY(-50%);
}

.btn-prev:hover::after {
  border-left-color: #c4cbd3;
  border-top-color: #c4cbd3;
}

.btn-prev:hover::before {
  border-top-color: #c4cbd3;
}


.btn-next:hover::after {
  border-right-color: #d86e0e;
  border-top-color: #d86e0e;
}

.btn-next:hover::before {
  border-top-color: #d86e0e;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: rgba(40, 112, 175, 0.4);
}

.btn-outline:hover {
  background: rgba(40, 112, 175, 0.08);
  color: var(--blue);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(40, 112, 175, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 43, 68, 0.06);
  border-bottom: 1px solid rgba(40, 112, 175, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.logo-img {
  width: 260px;
  height: auto;
}

.footer-logo {
  width: 240px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-weight: 600;
  color: var(--navy);
  position: relative;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.dropdown .nav-link::after {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-caret {
  display: inline-block;
  color: inherit;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(40, 112, 175, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}

.dropdown-item:hover {
  background: rgba(40, 112, 175, 0.08);
  color: var(--blue);
}

.dropdown-item::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 6px;
  width: calc(100% - 20px);
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.dropdown-item:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  border: none;
  background: transparent;
}

.hero {
  padding: 50px 0 0;
  background:
    radial-gradient(circle at top, rgba(40, 112, 175, 0.18), transparent 60%),
    linear-gradient(120deg, rgba(151, 201, 94, 0.16), rgba(242, 131, 20, 0.18));
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: end;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero p {
  color: var(--slate);
  font-size: 1.05rem;
}

.hero-list {
  margin: 22px 0 30px;
  display: grid;
  gap: 12px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  color: var(--navy);
  font-weight: 600;
}

.hero-list-icon {
  color: var(--green);
  flex-shrink: 0;
}

.hero-cta {
  margin-bottom: 40px;
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(40, 112, 175, 0.12);
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image {
  width: min(520px, 100%);
  height: auto;
}

.section {
  padding: 40px 0 100px 0;
}

.hidden {
  display: none;
}

.loan-form {
  position: fixed;
  inset: 0;
  background: #eaf5ff;
  z-index: 300;
  overflow-y: auto;
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0s linear 0.15s;
}

.loan-form.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.15s ease, visibility 0s linear 0s;
}

.loan-form .section-title h2 { margin-top: 0;}

.modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(40, 112, 175, 0.2);
  background: #ffffff;
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--slate);
  margin: 0 auto;
  max-width: 700px;
  font-size: 1.1rem;
}

.form-logo {
  width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.loan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.loan-card {
  padding: 16px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(150deg, #2f7cc1 0%, #2870af 50%, #1f5f93 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 30px rgba(15, 43, 68, 0.22);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 14px;
  row-gap: 6px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.loan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(15, 43, 68, 0.28);
  border-color: rgba(255, 255, 255, 0.35);
}

.loan-card h3 {
  margin: 0;
  position: relative;
  display: inline-block;
}

.loan-card p {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 6px 0 0;
}

.loan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(242, 131, 20, 0.16), transparent 45%),
    radial-gradient(circle at bottom left, rgba(151, 201, 94, 0.16), transparent 45%);
  pointer-events: none;
}

.loan-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.loan-card svg {
  stroke: #ffffff;
  fill: none;
}

.loan-card svg path,
.loan-card svg circle,
.loan-card svg rect,
.loan-card svg line,
.loan-card svg polyline,
.loan-card svg polygon {
  stroke: #ffffff;
  fill: none;
}

.loan-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 70%;
  height: 3px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.loan-card:hover h3::after {
  width: 100%;
}


.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(40, 112, 175, 0.25);
  position: relative;
  max-width: 800px !important;
}

.form-progress-wrap {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-progress {
  background: rgba(40, 112, 175, 0.08);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  height: 30px;
  display: inline-flex;
  align-items: center;
}

.form-dots {
  display: inline-flex;
  gap: 6px;
}

.form-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(40, 112, 175, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.form-dot.completed::after {
  content: "";
  width: 10px;
  height: 6px;
  border-radius: 0;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
  background: transparent;
}

.form-step {
  display: none;
  margin-top: 30px;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  text-align: center;
  font-size: 1.6rem;
}

.form-grid {
  display: grid;
  gap: 0;
}

.form-error {
  margin: 0;
  line-height: 1;
  color: #dc2626;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

label {
  font-weight: 600;
}

.float-field {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.float-field input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  background: #ffffff;
}

.float-field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate);
  font-weight: 600;
  pointer-events: none;
  transition: all 0.2s ease;
}

.float-field input:focus + label,
.float-field input:not(:placeholder-shown) + label {
  top: calc(100% + 4px);
  left: 6px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--blue);
  transform: translateY(0);
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.form-step[data-step="1"] .input-group {
  width: 100%;
  margin: 0 auto 10px;
}

.input-prefix {
  padding: 10px 12px;
  background: var(--light);
  color: var(--navy);
  font-weight: 700;
  border-right: 1px solid var(--border);
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.input-group input[type="text"] {
  border: none;
  border-radius: 0;
  padding: 12px 14px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 20px;
}

.form-actions.between {
  justify-content: space-between;
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.95rem;
}

.amount-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.form-step[data-step="1"] .amount-buttons {
  width: 100%;
  margin: 16px auto 0;
  justify-content: center;
}

.amount-btn {
  padding: 12px 30px;
  border-radius: 16px;
  border: 2px solid rgba(40, 112, 175, 0.3);
  background: rgba(40, 112, 175, 0.1);
  cursor: pointer;
  font-size: 16px;
}

.amount-btn:hover {
  background: rgba(40, 112, 175, 0.3);
  border-color: rgba(40, 112, 175, 0.6);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.purpose-card {
  position: relative;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  background: #f7fff7;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.purpose-icon {
  display: grid;
  place-items: center;
  height: 34px;
  width: 34px;
  margin: 0 auto 8px;
  position: relative;
}

.purpose-icon svg {
  stroke: #2870af;
}

.purpose-dollar {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: auto;
  border-radius: 50%;
  background: #ffffff;
  color: var(--green);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.purpose-card.selected {
  border-color: rgba(40, 112, 175, 0.6);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  background: var(--green);
  color: #ffffff;
  font-weight: bold;
}

.purpose-card.selected .purpose-svg {
  opacity: 0;
}

.purpose-card.selected .purpose-dollar {
  opacity: 1;
}

.loader-section {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  min-height: calc(100vh - 120px);
}

.loader-section.active {
  display: flex;
}

.loader-card {
  width: min(520px, 90%);
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(40, 112, 175, 0.2);
}

.loader-card h3
{
  font-size: 1.6rem;
    margin-top: 10px;
    margin-bottom: 6px;
}

.loader-card p
{
  font-size: 18px;
    letter-spacing: 0.5px;
    max-width: 80%;
    margin: 0 auto;
}

.loader {
  width: 90%;
  height: 30px;
  border-radius: 20px;
  color: var(--blue);
  border: 2px solid currentColor;
  position: relative;
  margin: 16px auto 20px;
  overflow: visible;
}

.loader-fill {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2870af, #52a2e8);
}

.loader-ship {
  position: absolute;
  top: 5px;
  left: 0;
  width: 32px;
  height: auto;
  z-index: 2;
  animation: none;
}

.facts {
  color: var(--slate);
  font-size: 0.90rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(90, 107, 123, 0.14);
  font-style: italic;
  font-weight: 500;
  border-radius: 0 0 20px 20px;
  padding: 6px 30px;
  border-top: solid 1px rgba(90, 107, 123, 0.3); 
  letter-spacing: 0.5px;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: -30px;
  margin-top: 30px;
}

.results-section {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  min-height: calc(100vh - 120px);
}

.results-section.active {
  display: flex;
}

.results-card {
  width: min(760px, 92%);
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(40, 112, 175, 0.2);
}

.results-card h3 {
  font-size: 1.8rem;
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.text-right {
  text-align: right;
}

.results-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.offer {
  display: grid;
  grid-template-columns: 60px 100px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.offer:nth-child(1) {
  background: #e4f7cd;
}

.offer:nth-child(2) {
  background: #f2fce6;
}

.offer:nth-child(3) {
  background: #f9fff2;
}

.offer-logo {
  width: 96px;
  object-fit: contain;
}

.offer-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(40, 112, 175, 0.1);
  color: var(--blue);
  font-weight: 700;
}

.offer h4 {
  margin: 0 0 4px;
}

.offer p {
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.feature-band {
  background: linear-gradient(90deg, var(--blue), #1f5d93);
  color: #ffffff;
  padding: 20px 0;
}

.feature-band .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.feature-band span {
  font-weight: 600;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  color: #ffffff;
}

.step-flow {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 30px;
  align-items: center;
  margin-top: 80px;
  padding-top: 20px;
}

.step-flow-image {
  background: linear-gradient(130deg, rgba(40, 112, 175, 0.22), rgba(151, 201, 94, 0.2));
  border-radius: 24px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.step-flow-content h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-flow-content p {
  margin: 6px 0 14px;
  color: var(--slate);
}

.step-badge {
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .step-flow {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: #0c2236;
  color: #ffffff;
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer a {
  color: #ffffff;
  opacity: 0.85;
}

.footer-grid strong {
  display: inline-block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.footer-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.legal-note {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 14px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.page-hero {
  padding: 50px 0;
  background: linear-gradient(120deg, rgba(40, 112, 175, 0.12), rgba(151, 201, 94, 0.16));
}

.page-hero h1 {
  margin-bottom: 12px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.article-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 43, 68, 0.06);
}

.article-card h3 {
  color: var(--blue);
}

.article-content {
  color: var(--navy);
}

.article-content h1,
.article-content h2,
.article-content h3 {
  margin-top: 26px;
}

.article-content p {
  color: var(--slate);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

.article-content table th,
.article-content table td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
}

.author-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(40, 112, 175, 0.2);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--blue);
}

.contact-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.contact-card h2 {
  color: var(--blue);
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(40, 112, 175, 0.12);
  color: var(--blue);
  font-weight: 600;
}

.loan-graphic {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(40, 112, 175, 0.2), rgba(242, 131, 20, 0.2));
  text-align: center;
}

.use-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.use-list li {
  list-style: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--light);
  font-weight: 600;
  color: var(--navy);
}

.simple-steps {
  background: rgba(40, 112, 175, 0.08);
  border-radius: 20px;
  padding: 26px;
  text-align: center;
  margin-top: 30px;
  border: 1px solid rgba(40, 112, 175, 0.18);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0 20px;
}

.mobile-nav.active {
  display: flex;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    padding: 0;
  }

  .dropdown-menu .dropdown-item {
    padding-left: 0;
  }
}

