/* ========================
   DRIVE IN COMFORT
   Dark industrial. OTR truck driver focus.
   ======================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0F1114;
  --bg-2: #151820;
  --surface: #1C2029;
  --fg: #EDE9E1;
  --fg-muted: #7D7B72;
  --accent: #4F8EF7;
  --accent-dark: #2D6FD4;
  --accent-2: #F5A623;
  --border: #252A33;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========================
   NAV
   ======================== */
.dic-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(15,17,20,0.92);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.dic-nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.dic-nav-logo em { font-style: normal; color: var(--accent); }

.dic-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.dic-nav-links a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.dic-nav-links a:hover { color: var(--fg); }

.dic-nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em;
  transition: background 0.2s !important;
}

.dic-nav-cta:hover { background: var(--accent-dark) !important; }

/* ========================
   HERO
   ======================== */
.dic-hero {
  padding: 100px 64px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.dic-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(79,142,247,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 70% at 5% 90%, rgba(245,166,35,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.dic-hero-inner { max-width: 860px; position: relative; z-index: 1; }

.dic-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  margin-bottom: 20px;
}

.dic-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 28px;
}

.dic-hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.dic-hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.dic-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dic-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
}

.dic-btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.dic-btn-primary:active { transform: translateY(0); }

.dic-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 0;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.dic-btn-secondary:hover { color: var(--fg); }
.dic-btn-secondary svg { width: 16px; height: 16px; }

.dic-hero-rule {
  width: 100%;
  max-width: 640px;
  height: 1px;
  background: var(--border);
  margin: 48px 0 0;
}

.dic-hero-tag {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  margin-top: 20px;
}

/* ========================
   PAIN BRIDGE
   ======================== */
.dic-pain {
  padding: 96px 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.dic-pain-inner { max-width: 800px; }

.dic-pain-overline {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.dic-pain-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 40px;
}

.dic-pain-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 680px;
}

.dic-pain-body p { margin-bottom: 20px; }
.dic-pain-body p:last-child { margin-bottom: 0; }

.dic-pain-body strong { color: var(--fg); font-weight: 600; }

.dic-pain-body em {
  font-style: italic;
  color: var(--accent-2);
  font-weight: 500;
}

/* ========================
   BENEFITS
   ======================== */
.dic-benefits {
  padding: 96px 64px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.dic-benefits-inner { max-width: 1100px; }

.dic-section-overline {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
}

.dic-section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 56px;
}

.dic-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.dic-benefit {
  padding: 48px 36px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.dic-benefit:last-child { border-right: none; }
.dic-benefit:hover { background: rgba(79,142,247,0.04); }

.dic-benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(79,142,247,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.dic-benefit-icon svg { width: 24px; height: 24px; stroke: var(--accent); }

.dic-benefit-num {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

.dic-benefit-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.dic-benefit-body {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.dic-benefit-body p { margin-bottom: 16px; }
.dic-benefit-body p:last-child { margin-bottom: 0; }

.dic-benefit-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.dic-benefit-checklist li {
  font-size: 0.82rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.dic-benefit-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ========================
   PRICING
   ======================== */
.dic-pricing {
  padding: 96px 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.dic-pricing-inner { max-width: 900px; }

.dic-pricing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 48px;
  max-width: 640px;
}

.dic-pricing-table {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 760px;
}

.dic-pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.dic-pricing-row:last-child { border-bottom: none; }
.dic-pricing-row:hover { background: rgba(79,142,247,0.04); }

.dic-pricing-header {
  background: var(--surface);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

.dic-pricing-row > div { padding: 18px 20px; }
.dic-pricing-header > div { padding: 12px 20px; }

.dic-pricing-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

.dic-pricing-name span {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 400;
  margin-top: 4px;
}

.dic-pricing-price {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  align-self: center;
}

.dic-pricing-cta {
  align-self: center;
}

.dic-pricing-cta .dic-btn-buy {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.dic-pricing-cta .dic-btn-buy:hover {
  background: var(--accent);
  color: #fff;
}

.dic-pricing-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 20px;
  line-height: 1.6;
}

/* ========================
   FAQ
   ======================== */
.dic-faq {
  padding: 96px 64px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.dic-faq-inner { max-width: 800px; }

.dic-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dic-faq-item {
  border-bottom: 1px solid var(--border);
}

.dic-faq-item:last-child { border-bottom: none; }

.dic-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.dic-faq-q-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.dic-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: transform 0.2s;
}

.dic-faq-item.open .dic-faq-icon { transform: rotate(45deg); }

.dic-faq-a {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.75;
  padding: 0 0 24px;
  display: none;
}

.dic-faq-item.open .dic-faq-a { display: block; }

/* ========================
   CTA
   ======================== */
.dic-cta {
  padding: 100px 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.dic-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(79,142,247,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.dic-cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }

.dic-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 20px;
}

.dic-cta-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.dic-cta-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 24px;
  letter-spacing: 0.03em;
}

/* ========================
   FOOTER
   ======================== */
.dic-footer {
  padding: 48px 64px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.dic-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.dic-footer-brand {}

.dic-footer-logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.dic-footer-logo em { font-style: normal; color: var(--accent); }

.dic-footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  max-width: 280px;
  line-height: 1.6;
}

.dic-footer-links {
  display: flex;
  gap: 48px;
}

.dic-footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.dic-footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.dic-footer-col-links a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.dic-footer-col-links a:hover { color: var(--fg); }

.dic-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dic-footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.dic-footer-copy a { color: var(--fg-muted); text-decoration: none; }
.dic-footer-copy a:hover { color: var(--fg); }

.dic-footer-legal {
  display: flex;
  gap: 20px;
}

.dic-footer-legal a {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.dic-footer-legal a:hover { color: var(--fg); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .dic-benefit-grid { grid-template-columns: 1fr; }
  .dic-benefit { border-right: none; border-bottom: 1px solid var(--border); }
  .dic-benefit:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .dic-nav { padding: 18px 24px; }
  .dic-nav-links { display: none; }
  .dic-hero { padding: 72px 24px 56px; }
  .dic-pain { padding: 64px 24px; }
  .dic-benefits { padding: 64px 24px; }
  .dic-pricing { padding: 64px 24px; }
  .dic-faq { padding: 64px 24px; }
  .dic-cta { padding: 72px 24px; }
  .dic-footer { padding: 40px 24px 24px; }

  .dic-hero-actions { flex-direction: column; align-items: flex-start; }
  .dic-pricing-table { overflow-x: auto; }
  .dic-pricing-row { min-width: 560px; }
  .dic-footer-top { flex-direction: column; gap: 28px; }
  .dic-footer-links { flex-wrap: wrap; gap: 28px; }
  .dic-footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}