/* ===================================================
   RINIA CAPITAL — TRUCKING & LOGISTICS PAGE
   =================================================== */

/* ─── NAV DROPDOWN ───────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  transition: transform 0.2s ease;
}
.nav-dropdown-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.nav-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
  text-decoration: none;
}
.nav-dropdown-item:hover { background: var(--bg-cream); }
.nav-dropdown-item.active-industry { background: var(--bg-cream); }

.dropdown-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }

.dropdown-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.dropdown-sub {
  font-size: 0.78rem;
  color: var(--text-mid);
}

.dropdown-coming {
  padding: 10px 14px 6px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.coming-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
}

.mobile-nav-active {
  color: var(--gold) !important;
  font-weight: 600;
}

/* ─── HERO ───────────────────────────────────────── */
.t-hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .t-hero { padding: 88px 0 104px; } }

.t-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 20%, rgba(168,130,58,0.08), transparent 30%),
    radial-gradient(circle at 92% 75%, rgba(168,130,58,0.05), transparent 28%);
  pointer-events: none;
}

.t-hero-inner {
  display: grid;
  gap: 52px;
  align-items: center;
}
@media (min-width: 1024px) {
  .t-hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
}

.t-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.t-breadcrumb a { color: var(--text-light); transition: color var(--transition); }
.t-breadcrumb a:hover { color: var(--gold); }
.t-breadcrumb span:last-child { color: var(--text-mid); font-weight: 500; }

.t-hero-headline {
  margin-top: 16px;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.055em;
  color: var(--text-dark);
}

.t-hero-sub {
  margin-top: 22px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 520px;
}

.t-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.t-hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.t-stat { padding: 0 24px 0 0; }
.t-stat:first-child { padding-left: 0; }

.t-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-dark);
  line-height: 1;
}

.t-stat-label {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 4px;
  max-width: 120px;
  line-height: 1.4;
}

.t-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 24px;
  flex-shrink: 0;
}

/* Hero Visual Card */
.t-hero-visual { position: relative; }

.t-visual-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.t-visual-card::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(216,192,138,0.18);
  filter: blur(32px);
  pointer-events: none;
}

.t-visual-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.t-visual-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.t-visual-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.t-visual-items { display: flex; flex-direction: column; gap: 14px; }

.t-visual-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
}

.t-visual-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-visual-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.t-visual-item-sub {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 2px;
}

.t-visual-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--text-dark);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition);
  justify-content: center;
}
.t-visual-cta:hover { background: #2A2A2A; }

/* ─── INSIGHT STRIP ──────────────────────────────── */
.t-insight-strip {
  background: var(--gold-pale);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: 18px 0;
}

.t-insight-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.t-insight-icon { flex-shrink: 0; margin-top: 2px; }

.t-insight-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-dark);
}
.t-insight-text strong { color: var(--gold); }

/* ─── SECTION SUBTITLE ───────────────────────────── */
.t-section-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 580px;
  margin-top: 12px;
}

/* ─── SOLUTIONS ──────────────────────────────────── */
.t-solutions-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .t-solutions-grid { grid-template-columns: repeat(3, 1fr); }
}

.t-solution-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform 0.15s ease, border-color var(--transition);
}
.t-solution-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-dark);
}

.t-solution-featured {
  background: var(--bg-white);
  border-color: var(--gold-light);
  box-shadow: 0 4px 24px rgba(168,130,58,0.1);
}

.t-solution-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.t-solution-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.t-solution-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid var(--gold-light);
}

.t-solution-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text-dark);
  transition: background var(--transition);
}
.t-solution-card:hover .t-solution-icon-wrap { background: var(--gold-pale); }
.t-solution-featured .t-solution-icon-wrap { background: var(--gold-pale); color: var(--gold); }

.t-solution-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.t-solution-copy {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 24px;
}

.t-solution-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.t-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.t-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t-detail-list li {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding-left: 12px;
  position: relative;
  line-height: 1.45;
}
.t-detail-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 1px;
}

.t-solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.t-solution-cta:hover { color: var(--text-dark); gap: 10px; }

/* ─── PROCESS ────────────────────────────────────── */
.t-process-section { background: var(--bg-cream); }

.t-process-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .t-process-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
}

.t-process-step {
  padding: 0 24px 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .t-process-step { padding: 0 32px 0 0; }
  .t-process-step:last-child { padding-right: 0; }
}

.t-process-step + .t-process-step {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .t-process-step + .t-process-step {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    border-left: 1px solid var(--border);
    padding-left: 32px;
  }
}

.t-process-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.t-process-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.t-process-copy {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.t-process-time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  padding: 6px 12px;
  background: var(--gold-pale);
  border-radius: 100px;
  display: inline-block;
}

/* ─── ASSESSMENT ─────────────────────────────────── */
.t-assess-inner {
  display: grid;
  gap: 56px;
  align-items: start;
}
@media (min-width: 1024px) {
  .t-assess-inner { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
}

.t-assess-left,
.t-assess-right {
  min-width: 0;
}

.t-assess-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 14px;
}
.t-assess-yes { background: #DCFCE7; color: #16A34A; }
.t-assess-no  { background: #FEE2E2; color: #DC2626; }

.t-assess-items { display: flex; flex-direction: column; gap: 12px; }

.t-assess-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
}
.t-assess-item svg { flex-shrink: 0; margin-top: 2px; }
.t-assess-item-yes { background: #F0FDF4; border-color: #BBF7D0; }
.t-assess-item-no  { background: #FFF5F5; border-color: #FECACA; }

.t-assess-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.t-assess-item-sub {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ─── INDUSTRY INSIGHTS ──────────────────────────── */
.t-insight-section { background: var(--bg); }

.t-insights-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 640px) { .t-insights-grid { grid-template-columns: repeat(2, 1fr); } }

.t-insight-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: box-shadow var(--transition), transform 0.15s ease;
}
.t-insight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.t-insight-card-dark {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: #fff;
}

.t-insight-card-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.t-insight-card-dark .t-insight-card-num { color: var(--gold-light); }

.t-insight-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.t-insight-card-dark .t-insight-card-title { color: #fff; }

.t-insight-card-copy {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.t-insight-card-dark .t-insight-card-copy { color: rgba(255,255,255,0.65); }

.t-insight-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.t-insight-card-dark .t-insight-stat { border-color: rgba(255,255,255,0.12); }

.t-insight-big {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--gold);
  line-height: 1;
}
.t-insight-card-dark .t-insight-big { color: var(--gold-light); }

.t-insight-unit {
  font-size: 0.78rem;
  color: var(--text-light);
  max-width: 140px;
  line-height: 1.4;
}
.t-insight-card-dark .t-insight-unit { color: rgba(255,255,255,0.45); }

/* ─── FINAL CTA ──────────────────────────────────── */
.t-cta-section { padding-bottom: 96px; }

.t-cta-card {
  background: var(--text-dark);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  display: grid;
  gap: 48px;
  color: #fff;
}
@media (min-width: 1024px) {
  .t-cta-card { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
}

.t-cta-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: #fff;
  margin-top: 14px;
  margin-bottom: 16px;
}

.t-cta-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 28px;
}

.t-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  box-shadow: none;
}

.t-cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-cta-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.t-cta-check-item svg { flex-shrink: 0; margin-top: 2px; }

/* ─── SCROLL ANIMATIONS ──────────────────────────── */
.t-fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.t-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 639px) {
  .t-hero { padding: 48px 0 64px; }
  .t-stat-divider { display: none; }
  .t-stat { padding: 0; margin-bottom: 16px; }
  .t-hero-stats { gap: 16px; }
  .t-solution-details { grid-template-columns: 1fr; }
  .t-cta-card { padding: 36px 24px; }
  .t-visual-card { padding: 24px; }
}
