/* ==========================================================================
   Import / Export solutions — isolated Atlantic Trade cards
   ========================================================================== */

.at-solutions-section {
  position: relative;
  padding: 40px 0 100px;
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(11, 31, 58, 0.04), transparent 55%),
    #eef2f6;
}

.at-solutions-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  padding: 40px 36px;
  background:
    linear-gradient(155deg, #0B1F3A 0%, #132b4a 55%, #0B1F3A 100%);
  box-shadow: 0 24px 56px rgba(7, 20, 38, 0.16);
}

.at-solutions-card::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -15%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 176, 8, 0.22), transparent 68%);
  pointer-events: none;
}

.at-solutions-card--accent::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 68%);
}

.at-solutions-card--accent::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -12%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 176, 8, 0.18), transparent 70%);
  pointer-events: none;
}

.at-solutions-eyebrow,
.at-solutions-title,
.at-solutions-lead,
.at-solutions-btn {
  position: relative;
  z-index: 1;
}

.at-solutions-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-bottom: 14px;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}

.at-solutions-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #E8B008;
  flex-shrink: 0;
}

.at-solutions-title {
  font-family: "DM Sans", sans-serif !important;
  font-size: clamp(26px, 3vw, 32px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  margin: 0 0 14px !important;
  letter-spacing: -0.02em !important;
}

.at-solutions-lead {
  margin: 0 0 28px !important;
  color: rgba(217, 222, 229, 0.85) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 15.5px !important;
  line-height: 1.7 !important;
  max-width: 34rem;
}

.at-solutions-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 22px !important;
  border-radius: 12px !important;
  background: #E8B008 !important;
  border: 1px solid #E8B008 !important;
  color: #0B1F3A !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.at-solutions-btn i {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.at-solutions-btn:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #0B1F3A !important;
}

.at-solutions-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .at-solutions-section {
    padding: 24px 0 72px;
  }

  .at-solutions-card {
    padding: 32px 24px;
  }
}
