/* =========================================
   GLOBAL
========================================= */

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: #2f2f2f;
}

/* HEADINGS */
.heading-xl {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtext {
  font-size: 17px;
  color: #5f6c7b;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b87333, #d79a5f);
  margin-top: 16px;
  border-radius: 2px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================================
   HERO
========================================= */

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

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

.page-hero.export-hero {
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #eef2f7 40%,
    #ffffff 100%
  );
  padding: 90px 0;
  position: relative;
}

/* subtle background */
.page-hero.export-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: url('../images/world-map-light.png') no-repeat center;
  background-size: contain;
  opacity: 0.05;
}

/* HERO TEXT */
.hero-subtext {
  font-size: 16px;
  color: #6b7280;
  margin: 12px 0 25px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(90deg, #c27a3a, #e0a86d);
  color: #fff;
  box-shadow: 0 6px 14px rgba(184, 115, 51, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(184, 115, 51, 0.3);
}

/* SECONDARY */
.btn-secondary {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #2f2f2f;
}

.btn-secondary:hover {
  border-color: #c27a3a;
  color: #c27a3a;
}

/* RIGHT CARD */
.hero-right {
  display: flex;
  justify-content: flex-start;
}

.hero-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.06),
    0 2px 6px rgba(0,0,0,0.04);
  max-width: 420px;
  border: 1px solid #f1f1f1;
}

.hero-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

/* INFO BLOCK */
.info-block {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.hero-card hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 16px 0;
}

/* =========================================
   ICON SYSTEM (FIXED)
========================================= */

.icon {
  width: 36px;
  height: 36px;
  background: #fff7ef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

/* =========================================
   EXPORT CAPABILITIES
========================================= */

.export-capabilities {
  padding: 90px 0;
  background: #ffffff;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
}

.section-header p {
  font-size: 15px;
  color: #6b7280;
}

/* GRID */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.capability-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* hover top line */
.capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #b87333, #d79a5f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.capability-card:hover::before {
  transform: scaleX(1);
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* CONTENT */
.capability-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 10px 0 6px;
}

.capability-card .underline {
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #b87333, #d79a5f);
  margin-bottom: 10px;
}

.capability-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
.hero-left {
  padding-right: 20px;
}