/* ════════════════════════════════════════════════════════════
   Two Guys & a Scooter — wescoot.co
   Brand Stylesheet
   ════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Greens */
  --green:        #5AC83A;
  --green-bright: #79E15B;
  --green-dark:   #2F8F2B;

  /* Oranges */
  --orange:       #F5A623;
  --orange-warm:  #FFB347;
  --orange-deep:  #D9780A;

  /* Neutrals */
  --black:        #111111;
  --black-soft:   #1C1C1C;
  --white:        #FFFFFF;
  --white-soft:   #F8F9FA;
  --gray-100:     #F1F3F5;
  --gray-200:     #E9ECEF;
  --gray-400:     #ADB5BD;
  --gray-600:     #6C757D;

  /* Accent */
  --blue:         #3FA3FF;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Sizing */
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-full:  999px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.10);
  --shadow-glow:  0 0 40px rgba(90,200,58,0.25);

  /* Transitions */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:     0.4s;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; font-size: inherit; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── UTILITY ─── */
.text-gradient {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green  { color: var(--green); }
.text-orange { color: var(--orange); }
.text-dark   { color: var(--black); }

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--green {
  background: linear-gradient(170deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
}

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section__label--light { color: var(--green-bright); }
.section__label--dark  { color: var(--black); opacity: 0.6; }

.section__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section__title--light { color: var(--white); }

.section__sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
}
.section__sub--light { color: var(--gray-400); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__header .section__sub {
  margin: 0 auto;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease-bounce);
  white-space: nowrap;
}
.btn--sm  { padding: 10px 24px; font-size: 0.9rem; }
.btn--lg  { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(90,200,58,0.3);
}
.btn--primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(90,200,58,0.4);
}
.btn--primary:active  { transform: translateY(0) scale(0.98); }

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-200);
}
.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.nav--scrolled {
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo-img {
  height: 48px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--green); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--black);
  transition: all 0.3s var(--ease-out);
}
.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 60px;
  background: var(--white-soft);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Background shapes */
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.shape--circle {
  position: absolute;
  border-radius: 50%;
}
.shape--green {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(90,200,58,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.shape--orange {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
}
.shape--line {
  position: absolute;
  height: 3px;
  border-radius: 3px;
  opacity: 0.15;
}
.shape--1 {
  width: 120px;
  background: var(--green);
  top: 30%;
  left: 5%;
  transform: rotate(-15deg);
  animation: speedLine 3s ease-in-out infinite;
}
.shape--2 {
  width: 80px;
  background: var(--orange);
  top: 60%;
  right: 8%;
  transform: rotate(-10deg);
  animation: speedLine 3s ease-in-out infinite 0.5s;
}
.shape--3 {
  width: 60px;
  background: var(--blue);
  bottom: 25%;
  left: 15%;
  transform: rotate(-20deg);
  animation: speedLine 3s ease-in-out infinite 1s;
}

@keyframes speedLine {
  0%, 100% { opacity: 0.1; transform: translateX(0) rotate(-15deg); }
  50%      { opacity: 0.3; transform: translateX(-20px) rotate(-15deg); }
}

.hero__badge {
  display: inline-block;
  background: rgba(90,200,58,0.1);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  border: 1px solid rgba(90,200,58,0.2);
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--black);
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.1));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-16px); }
}

.hero__speed-lines {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__speed-lines span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
  opacity: 0;
  animation: scooteLines 2s ease-in-out infinite;
}
.hero__speed-lines span:nth-child(1) { width: 40px; animation-delay: 0s; }
.hero__speed-lines span:nth-child(2) { width: 60px; animation-delay: 0.2s; }
.hero__speed-lines span:nth-child(3) { width: 30px; animation-delay: 0.4s; }
.hero__speed-lines span:nth-child(4) { width: 50px; animation-delay: 0.6s; }
.hero__speed-lines span:nth-child(5) { width: 35px; animation-delay: 0.8s; }

@keyframes scooteLines {
  0%   { opacity: 0; transform: translateX(20px); }
  30%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateX(-40px); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}
.hero__scroll-arrow {
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

/* Origin story cards */
.about__card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration) var(--ease-bounce), box-shadow var(--duration);
  border: 1px solid var(--gray-100);
}
.about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about__card-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}
.about__card p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}
.about__card--rain   { border-top: 3px solid var(--blue); }
.about__card--scooter { border-top: 3px solid var(--orange); }
.about__card--friends { border-top: 3px solid var(--green); }
.about__card--rocket  { border-top: 3px solid var(--green-bright); }

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--black-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--duration) var(--ease-bounce);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90,200,58,0.3);
  box-shadow: 0 0 40px rgba(90,200,58,0.08);
}
.service-card__icon {
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════ */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process__timeline::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: 3px;
  z-index: 0;
}
.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--green-dark);
  opacity: 0.6;
  margin-bottom: 8px;
}
.process__dot {
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 4px rgba(90,200,58,0.2);
}
.process__step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.process__step p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ════════════════════════════════════════════════════════════
   WHY US / TECH
   ════════════════════════════════════════════════════════════ */
.tech__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.tech__card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--duration) var(--ease-bounce);
}
.tech__card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.tech__card-emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}
.tech__card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.tech__card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact {
  background: var(--white-soft);
}
.contact__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact__sub {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.contact__form {
  text-align: left;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group {
  margin-bottom: 20px;
}
.form__group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--black);
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(90,200,58,0.1);
}
.form__group textarea {
  resize: vertical;
  min-height: 120px;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--gray-400);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}
.footer__brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.footer__legal {
  font-size: 0.85rem !important;
  opacity: 0.5;
}
.footer__links h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  color: var(--gray-400);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--green); }

.footer__bottom {
  padding-top: 24px;
  text-align: center;
}
.footer__bottom p {
  color: var(--gray-400);
  font-size: 0.85rem;
}
.footer__tagline {
  margin-top: 8px;
  opacity: 0.5;
}

/* ════════════════════════════════════════════════════════════
   ANIMATIONS (Intersection Observer driven)
   ════════════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="slide-right"] { transform: translateX(-40px); }
[data-animate="slide-left"]  { transform: translateX(40px); }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner  { grid-template-columns: 1fr; text-align: center; }
  .hero__sub    { margin-left: auto; margin-right: auto; }
  .hero__ctas   { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__logo-img { max-width: 320px; margin: 0 auto; }
  .hero__speed-lines { display: none; }

  .about__grid  { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { order: -1; }

  .process__timeline { grid-template-columns: 1fr 1fr; }
  .process__timeline::before { display: none; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .nav__links.active { display: flex; }
  .nav__links a { font-size: 1.2rem; }
  .nav__burger { display: flex; }

  .hero { min-height: auto; padding: 130px 0 60px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  .about__card-stack { grid-template-columns: 1fr 1fr; gap: 12px; }

  .services__grid { grid-template-columns: 1fr; }
  .tech__grid     { grid-template-columns: 1fr; }

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

  .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__badge { font-size: 0.75rem; padding: 6px 14px; }
  .about__card-stack { grid-template-columns: 1fr; }
  .btn--lg { padding: 14px 28px; font-size: 0.95rem; }
}
