/* ============================================
   WE INSURED - Landing Page Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0a0a;
  --bg-section: #0d0d0d;
  --bg-card: #111111;
  --orange: #e8820e;
  --orange-hover: #f59e0b;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --gray-dark: #333333;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

.logo-accent {
  color: var(--white);
  font-weight: 400;
}

.phone-number {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-car.jpg') center center / cover no-repeat;
  filter: brightness(0.35) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center 60%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.95) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.8) 100%);
}

/* 两侧橙色竖线装饰（覆盖整个页面） */
.side-lines {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 30px;
  z-index: 50;
  pointer-events: none;
}

.side-lines.left {
  left: 0;
  background:
    linear-gradient(to bottom, transparent 10%, rgba(232,130,14,0.15) 30%, rgba(232,130,14,0.3) 50%, rgba(232,130,14,0.15) 70%, transparent 90%) 8px 0 / 1px 100% no-repeat,
    linear-gradient(to bottom, transparent 15%, rgba(232,130,14,0.1) 35%, rgba(232,130,14,0.2) 50%, rgba(232,130,14,0.1) 65%, transparent 85%) 14px 0 / 1px 100% no-repeat,
    linear-gradient(to bottom, transparent 20%, rgba(232,130,14,0.08) 40%, rgba(232,130,14,0.15) 50%, rgba(232,130,14,0.08) 60%, transparent 80%) 20px 0 / 1px 100% no-repeat;
}

.side-lines.right {
  right: 0;
  background:
    linear-gradient(to bottom, transparent 10%, rgba(232,130,14,0.15) 30%, rgba(232,130,14,0.3) 50%, rgba(232,130,14,0.15) 70%, transparent 90%) calc(100% - 8px) 0 / 1px 100% no-repeat,
    linear-gradient(to bottom, transparent 15%, rgba(232,130,14,0.1) 35%, rgba(232,130,14,0.2) 50%, rgba(232,130,14,0.1) 65%, transparent 85%) calc(100% - 14px) 0 / 1px 100% no-repeat,
    linear-gradient(to bottom, transparent 20%, rgba(232,130,14,0.08) 40%, rgba(232,130,14,0.15) 50%, rgba(232,130,14,0.08) 60%, transparent 80%) calc(100% - 20px) 0 / 1px 100% no-repeat;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.3;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.text-orange {
  color: var(--orange);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gray-light);
  margin-bottom: 35px;
}

/* Hero Form */
.hero-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 50px;
}

.zip-input {
  width: 200px;
  padding: 14px 20px;
  border: 1px solid var(--gray-dark);
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.zip-input::placeholder {
  color: var(--gray);
}

.zip-input:focus {
  border-color: var(--orange);
}

.btn-continue {
  padding: 14px 35px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
}

.btn-continue:hover {
  background: var(--orange-hover);
}

/* Partner Logos */
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  opacity: 0.5;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gray);
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
}

.partner-text small {
  font-size: 8px;
  letter-spacing: 2px;
}

.partner-bold {
  font-weight: 700;
  font-size: 13px;
}

.partner-italic {
  font-style: italic;
  font-weight: 700;
}

/* --- Process Section --- */
.process {
  background: var(--bg-section);
  padding: 80px 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Process - Left Column */
.process-description {
  padding-right: 10px;
}

.process-text {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.7;
}

.process-text-small {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 25px;
}

.process-link {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

.link-orange {
  color: var(--orange);
  font-weight: 600;
  transition: color 0.3s;
}

.link-orange:hover {
  color: var(--orange-hover);
}

/* Process - Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: flex;
  gap: 12px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  min-width: 20px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
  text-transform: lowercase;
}

.step-text {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
}

/* Process - Comparison Bars */
.process-comparison {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.comparison-name {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.5px;
}

.comparison-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.comparison-value small {
  font-size: 14px;
  font-weight: 400;
}

.comparison-bar {
  width: 100%;
  height: 3px;
  background: var(--gray-dark);
  border-radius: 2px;
  overflow: hidden;
}

.comparison-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 1s ease;
}

/* --- CTA Section --- */
.cta {
  position: relative;
  background: var(--bg-card);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cta-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--orange);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cta-subtitle {
  font-size: 14px;
  color: var(--gray-light);
}

.btn-start {
  display: inline-block;
  padding: 14px 40px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
}

.btn-start:hover {
  background: var(--orange-hover);
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-copyright {
  font-size: 11px;
  color: var(--gray);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-help {
  font-size: 11px;
  color: var(--gray);
}

/* 页脚法律链接 */
.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 11px;
  color: var(--gray);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--orange);
}

/* --- 法律页面（隐私政策/服务条款） --- */
.legal-page {
  background: var(--bg-section);
  padding: 120px 0 80px;
  min-height: calc(100vh - 120px);
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.legal-last-updated {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-page p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-page ul {
  list-style: none;
  margin-bottom: 15px;
  padding-left: 0;
}

.legal-page li {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
}

.legal-page li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

.legal-page a {
  color: var(--orange);
  transition: color 0.3s;
}

.legal-page a:hover {
  color: var(--orange-hover);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 10px;
  }

  .hero-form {
    flex-direction: column;
    gap: 10px;
  }

  .zip-input {
    width: 100%;
    max-width: 280px;
  }

  .btn-continue {
    width: 100%;
    max-width: 280px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partner-logos {
    gap: 20px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 5px;
  }

  .side-lines {
    display: none;
  }

  .footer-links {
    gap: 15px;
  }

  .legal-page {
    padding: 100px 0 60px;
  }

  .legal-page h1 {
    font-size: 22px;
    letter-spacing: 2px;
  }
}
