/* =========================
   Great Trucking Landing CSS
   Namespace: gt-
   ========================= */

:root{
  --gt-navy: #163b73;
  --gt-navy-2: #255aa5;
  --gt-red: #c62117;
  --gt-sky: #6eb2e8;
  --gt-card: #ffffff;
  --gt-soft: #f3f6fb;
  --gt-shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
  --gt-shadow-2: 0 6px 18px rgba(16, 24, 40, 0.10);
  --gt-radius: 18px;
}

/* Base */
.gt-wrap{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #0b1220;
  background: #eef3fa;
}

a{ color: inherit; }

.gt-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 26px;
  background: linear-gradient(#eaf2fb, #eaf2fb);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.gt-brand{ text-decoration:none; }

.gt-logo{
  display:flex;
  align-items:baseline;
  gap: 8px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.gt-logo-red{
  color: var(--gt-red);
  font-size: 22px;
  line-height: 1;
}

.gt-logo-sub{
  color: var(--gt-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.gt-toplink{
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
  color: var(--gt-navy);
  opacity: 0.9;
}

.gt-toplink:hover{ opacity: 1; text-decoration: underline; }

/* Hero */
.gt-hero{
  position: relative;
  color: #fff;
  padding: 46px 26px 64px;
  background: url("/assets/hero-bg.jpg") center / cover no-repeat;
  overflow: hidden;
}

.gt-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to right,
    rgba(16, 46, 95, 0.70) 0%,
    rgba(16, 46, 95, 0.45) 44%,
    rgba(16, 46, 95, 0.18) 74%,
    rgba(16, 46, 95, 0.00) 100%
  );
}

.gt-hero-inner{
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

.gt-hero-left h1{
  margin: 0 0 10px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.18);
}

.gt-hero-left p{
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.95;
}

.gt-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 210px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: #1a1a1a;
  background: linear-gradient(#ffe07a, #ffbf00);
  box-shadow: 0 2px 0 rgba(0,0,0,0.25), 0 10px 18px rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.35);
}

.gt-cta:hover{
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.gt-cta-sub{
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.92;
}

.gt-icons{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.24);
  max-width: 680px;
}

.gt-icon{
  display:flex;
  gap: 10px;
  align-items:center;
}

.gt-icon img{
  width: 44px;
  height: 44px;
  display:block;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.18));
}

.gt-icon-text{
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  opacity: 0.98;
}

.gt-trustline{
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.95;
}

.gt-hero-right{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  min-height: 340px;
}

.gt-truck{
  width: min(560px, 100%);
  height: auto;
  display:block;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.30));
  transform: translateY(10px);
}

/* Main */
.gt-main{
  padding: 42px 26px 22px;
  background: linear-gradient(#eef3fa, #ffffff);
}

.gt-grid{
  max-width: 1120px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
  align-items:start;
}

.gt-card{
  background: var(--gt-card);
  border-radius: var(--gt-radius);
  box-shadow: var(--gt-shadow);
  padding: 26px;
}

.gt-card h2{
  margin: 0 0 6px;
  font-size: 30px;
  color: #0b1b35;
}

.gt-lead{
  margin: 0 0 18px;
  color: #334155;
  line-height: 1.45;
}

.gt-q{ margin-top: 18px; }

.gt-q-title{
  font-weight: 900;
  color: #0b1b35;
  margin-bottom: 10px;
}

.gt-btnrow{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 800;
  background: linear-gradient(#2f6fca, #1f55a7);
  color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,0.20);
}

.gt-btn:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.gt-next{
  margin-top: 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: min(340px, 100%);
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(#ffe07a, #ffbf00);
  color: #1a1a1a;
  font-weight: 900;
  text-decoration:none;
  box-shadow: 0 2px 0 rgba(0,0,0,0.22), 0 10px 18px rgba(0,0,0,0.10);
}

.gt-next:hover{
  filter: brightness(1.02);
  transform: translateY(-1px);
}

/* Sidebar */
.gt-side{ position: sticky; top: 18px; }

.gt-sidecard{
  background: #f5efe3;
  border-radius: var(--gt-radius);
  box-shadow: var(--gt-shadow-2);
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.gt-sidecard h3{
  margin: 0 0 14px;
  font-size: 22px;
  color: #0b1b35;
}

.gt-bullets{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.gt-bullet{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.gt-check{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #1f5bd8;
  position: relative;
  margin-top: 2px;
}

.gt-check::after{
  content:"";
  position:absolute;
  left: 4px;
  top: 3px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #1f5bd8;
  border-bottom: 2px solid #1f5bd8;
  transform: rotate(-45deg);
}

.gt-bullet-title{
  font-weight: 900;
  color: #0b1b35;
}

.gt-bullet-text{
  color: #334155;
  font-size: 14px;
  line-height: 1.35;
}

/* Bottom sections */
.gt-bottom{
  max-width: 1120px;
  margin: 26px auto 0;
  padding: 22px 26px;
  border-radius: var(--gt-radius);
  background: #eef3fa;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.gt-bottom h2{
  margin: 0 0 14px;
  font-size: 26px;
  color: #0b1b35;
}

.gt-featuregrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gt-feature{
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.gt-feature-title{
  font-weight: 900;
  color: #0b1b35;
  margin-bottom: 6px;
}

.gt-feature-text{
  color: #334155;
  font-size: 14px;
  line-height: 1.35;
}

.gt-bottom-lite{
  background: #f3f6fb;
}

.gt-bottom-lite p{
  margin: 0 0 12px;
  color: #334155;
  line-height: 1.45;
}

.gt-learn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  text-decoration:none;
  font-weight: 900;
  color: var(--gt-navy);
}

.gt-learn:hover{ text-decoration: underline; }

/* Footer */
.gt-footer{
  max-width: 1120px;
  margin: 18px auto 26px;
  padding: 14px 26px;
  display:flex;
  justify-content:space-between;
  gap: 16px;
  color: #64748b;
  font-size: 13px;
}

.gt-footer a{
  color: #64748b;
  text-decoration:none;
  font-weight: 700;
}

.gt-footer a:hover{ text-decoration: underline; }

.gt-dot{ margin: 0 8px; }

/* Responsive */
@media (max-width: 980px){
  .gt-hero-inner{ grid-template-columns: 1fr; }
  .gt-hero-right{ display:none; }
  .gt-hero-left h1{ font-size: 42px; }
  .gt-grid{ grid-template-columns: 1fr; }
  .gt-side{ position: static; }
  .gt-featuregrid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .gt-topbar{ padding: 12px 14px; }
  .gt-hero{ padding: 34px 14px 46px; }
  .gt-main{ padding: 26px 14px 18px; }
  .gt-card{ padding: 18px; }
  .gt-card h2{ font-size: 24px; }
  .gt-hero-left h1{ font-size: 34px; }
  .gt-icons{ grid-template-columns: 1fr; }
}