/* ========================================
   TOYOTA LIFT NORTHWEST — Modern B2B Design
   Brand: #F26A21 | #111212 | #434546
   ======================================== */

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

:root {
  --orange:  #F26A21;
  --orange-dark: #d45a18;
  --orange-light: #ff8a4c;
  --black:   #111212;
  --gray:    #434546;
  --gray-light: #6b6d6e;
  --gray-lighter: #9a9c9d;
  --off-white: #f5f5f5;
  --white:   #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1280px;
  --header-h: 72px;
  --radius: 8px;
  --radius-lg: 16px;

  --ease: cubic-bezier(.25, .46, .45, .94);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: .9rem;
  letter-spacing: .02em; transition: all .3s var(--ease); border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(242,106,33,.3); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--text { background: none; padding: 0; color: var(--orange); font-weight: 600; border: none; }
.btn--text:hover { color: var(--orange-dark); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ========================================
   HEADER — Transparent to Solid
   ======================================== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all .4s var(--ease); }
.header.scrolled { background: rgba(17,18,18,.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.header.scrolled .header__top-bar { max-height: 0; opacity: 0; padding: 0; overflow: hidden; }

.header__top-bar {
  background: rgba(0,0,0,.25); backdrop-filter: blur(6px);
  font-size: .8rem; color: rgba(255,255,255,.7);
  transition: all .4s var(--ease); max-height: 40px; opacity: 1;
}
.header__top-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; }
.header__contact { display: flex; gap: 20px; }
.header__contact a:hover, .header__actions a:hover { color: var(--orange); }
.header__actions { display: flex; gap: 16px; }
.header__icon { margin-right: 4px; }

.header__nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: var(--header-h);
}

/* Logo */
.header__logo { display: flex; align-items: center; }
.header__logo-img { height: 36px; width: auto; }

/* Nav links */
.header__menu { display: flex; gap: 32px; }
.header__menu a {
  color: rgba(255,255,255,.75); font-size: .875rem; font-weight: 500;
  letter-spacing: .02em; padding: 8px 0; position: relative; transition: color .2s;
}
.header__menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--orange); transition: width .3s var(--ease-out);
}
.header__menu a:hover, .header__menu a.active { color: var(--white); }
.header__menu a:hover::after, .header__menu a.active::after { width: 100%; }

.header__cta { margin-left: 16px; }

/* Hamburger */
.header__hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.header__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; border-radius: 2px; }
.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(17,18,18,.98); backdrop-filter: blur(20px);
  z-index: 999; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .4s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav ul { text-align: center; }
.mobile-nav li { margin: 16px 0; }
.mobile-nav a { color: var(--white); font-size: 1.5rem; font-weight: 600; }
.mobile-nav a:hover { color: var(--orange); }

/* ========================================
   HERO — Animated
   ======================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
.hero__bg-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; filter: brightness(.35) saturate(.8);
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(242,106,33,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(242,106,33,.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(17,18,18,.4) 0%, rgba(17,18,18,.85) 100%);
}
.hero__content { position: relative; z-index: 3; padding: 140px 0 80px; max-width: 820px; }

.hero__badge {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(242,106,33,.4); color: var(--orange);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 24px; letter-spacing: -.02em;
}
.hero__highlight { color: var(--orange); }

.hero__subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.6); max-width: 560px;
  line-height: 1.7; margin-bottom: 40px;
}

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

/* Stats */
.hero__stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero__stat { text-align: left; }
.hero__stat-number { font-size: 2.5rem; font-weight: 800; color: var(--white); }
.hero__stat-suffix { font-size: 2rem; font-weight: 700; color: var(--orange); }
.hero__stat-label { display: block; font-size: .8rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute; bottom: 40px; right: 48px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero__scroll-indicator span { font-size: .7rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .15em; writing-mode: vertical-rl; }
.hero__scroll-line { width: 1px; height: 60px; background: linear-gradient(180deg, var(--orange), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Hero entrance animations */
.animate-in { opacity: 0; transform: translateY(30px); animation: fadeUp .8s var(--ease-out) forwards; }
.animate-in--delay-1 { animation-delay: .15s; }
.animate-in--delay-2 { animation-delay: .3s; }
.animate-in--delay-3 { animation-delay: .45s; }
.animate-in--delay-4 { animation-delay: .7s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header__tag {
  display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: var(--orange); margin-bottom: 12px;
}
.section-header__title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--black); line-height: 1.2; letter-spacing: -.01em; }
.section-header__desc { font-size: 1.05rem; color: var(--gray-light); margin-top: 16px; line-height: 1.6; }

.section-header--light .section-header__title { color: var(--white); }
.section-header__tag--light { color: var(--orange-light); }

/* ========================================
   SOLUTIONS GRID
   ======================================== */
.solutions { padding: 120px 0; background: var(--off-white); }

.solutions__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.solution-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
  transition: all .4s var(--ease); border: 1px solid rgba(0,0,0,.06);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.solution-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.08); border-color: transparent; }
.solution-card:hover::before { transform: scaleX(1); }

.solution-card__icon { width: 48px; height: 48px; color: var(--orange); margin-bottom: 24px; }
.solution-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--black); }
.solution-card p { font-size: .925rem; color: var(--gray-light); line-height: 1.6; flex: 1; }
.solution-card__link {
  margin-top: 20px; font-size: .875rem; font-weight: 600; color: var(--orange);
  transition: color .2s;
}
.solution-card:hover .solution-card__link { color: var(--orange-dark); }

/* ========================================
   FEATURED EQUIPMENT
   ======================================== */
.featured { padding: 120px 0; background: var(--white); }
.featured__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.featured__card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--off-white);
  transition: all .4s var(--ease); border: 1px solid rgba(0,0,0,.06);
}
.featured__card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,.1); }

.featured__card-image {
  aspect-ratio: 4/3; background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.featured__card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.featured__card:hover .featured__card-image img { transform: scale(1.05); }
.featured__card-placeholder { color: var(--orange); opacity: .5; width: 100px; }
.featured__card:hover .featured__card-placeholder { opacity: .8; }

.featured__card-body { padding: 28px 28px 32px; }
.featured__card-tag {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  background: rgba(242,106,33,.1); color: var(--orange);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 12px;
}
.featured__card-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.featured__card-body p { font-size: .9rem; color: var(--gray-light); line-height: 1.6; margin-bottom: 16px; }

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why { padding: 120px 0; background: var(--off-white); }
.why__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why__content .section-header__tag { text-align: left; display: block; }
.why__content .section-header__title { text-align: left; margin-bottom: 20px; }
.why__text { font-size: 1.05rem; color: var(--gray-light); line-height: 1.7; margin-bottom: 40px; }

.why__pillars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.why__pillar { display: flex; align-items: flex-start; gap: 16px; }
.why__pillar-accent { flex-shrink: 0; width: 3px; height: 48px; background: var(--orange); border-radius: 3px; margin-top: 2px; }
.why__pillar h4 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.why__pillar p { font-size: .9rem; color: var(--gray-light); line-height: 1.5; }

.why__visual { position: relative; }
.why__image-block { position: relative; }
.why__image-block img {
  width: 100%; border-radius: var(--radius-lg); display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,.12);
}
.why__accent-box {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--orange); color: var(--white); padding: 24px 32px;
  border-radius: var(--radius); display: flex; align-items: center; gap: 16px;
  box-shadow: 0 12px 40px rgba(242,106,33,.3);
}
.why__accent-number { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.why__accent-text { font-size: .85rem; line-height: 1.4; opacity: .9; }

/* ========================================
   SERVICES
   ======================================== */
.services { position: relative; padding: 120px 0; overflow: hidden; }
.services__bg {
  position: absolute; inset: 0; background: var(--black);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}
.services .container { position: relative; z-index: 2; }

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.service-item {
  padding: 36px 32px; border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); transition: all .4s var(--ease);
  background: rgba(255,255,255,.03);
}
.service-item:hover { border-color: rgba(242,106,33,.3); background: rgba(242,106,33,.05); transform: translateY(-4px); }

.service-item__number {
  font-size: 2.5rem; font-weight: 900; color: rgba(242,106,33,.2);
  line-height: 1; margin-bottom: 16px; display: block;
}
.service-item h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-item p { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ========================================
   CTA / CONTACT
   ======================================== */
.cta { padding: 120px 0; background: var(--off-white); }
.cta__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.cta__content h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--black); margin-bottom: 16px; line-height: 1.2; }
.cta__content p { font-size: 1.05rem; color: var(--gray-light); line-height: 1.7; margin-bottom: 32px; }

.cta__features { display: flex; flex-direction: column; gap: 12px; }
.cta__feature { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 500; color: var(--gray); }

.cta__form {
  background: var(--white); padding: 40px; border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.08); border: 1px solid rgba(0,0,0,.06);
}
.cta__form h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; color: var(--black); }
.cta__form input,
.cta__form select,
.cta__form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(0,0,0,.12);
  border-radius: 6px; font-size: .9rem; margin-bottom: 14px;
  transition: border-color .2s; background: var(--white); color: var(--black);
}
.cta__form input:focus,
.cta__form select:focus,
.cta__form textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,106,33,.1); }
.cta__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta__form textarea { resize: vertical; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--black); color: rgba(255,255,255,.6); padding: 80px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }

.footer__brand p { font-size: .9rem; line-height: 1.6; margin-top: 20px; max-width: 320px; }
.footer__logo .logo-text, .footer__logo .logo-sub { /* inherit from header logo */ }

.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .3s;
}
.footer__social a:hover { border-color: var(--orange); color: var(--orange); background: rgba(242,106,33,.08); }

.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__col h4 { font-size: .85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.footer__col a { display: block; font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--orange); }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; }
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer__legal a:hover { color: var(--orange); }

/* ========================================
   REVEAL ON SCROLL
   ======================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: all .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .4s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .featured__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__layout { grid-template-columns: 1fr; gap: 48px; }
  .cta__layout { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .header__menu, .header__cta { display: none; }
  .header__hamburger { display: flex; }
  .header__top-bar { display: none; }

  .hero__content { padding: 120px 0 60px; }
  .hero__title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero__stats { gap: 24px; }
  .hero__stat-number { font-size: 2rem; }
  .hero__scroll-indicator { display: none; }

  .solutions__grid,
  .featured__grid,
  .services__grid { grid-template-columns: 1fr; }

  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cta__form-row { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 48px; }
  .solutions, .featured, .why, .services, .cta { padding: 80px 0; }
}
