@charset "UTF-8";

/* ========================================
   ROOT & GLOBAL VARIABLES
   ======================================== */
:root {
    --yellow: #F6C12A;
    --gold:   #C7A45A;
    --black:  #0E0E0E;
    --white:  #ffffff;
    --grey:   #cfcfcf;
    --light:  #fafafa;
    --cream:  #FFFDF2;     /* used for light sections */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* Flex helpers */
.flex { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.text-center { text-align: center; }

/* Orange/Yellow divider (used after hero) */
.bee-divider {
    height: 4px;
    background: #FFB84D;
    border-radius: 999px;
    margin: 0;
}
.bee-divider--spaced { margin: 24px 0; }

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
    background: var(--white);
    color: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #FFB84D;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-weight: 700;
    letter-spacing: .5px;
}

.brand__logo   { width: 36px; height: 36px; }
.brand__text   { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; letter-spacing: .8px; }

.nav__list {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav__list a {
    color: var(--black);
    font-weight: 500;
    transition: color .2s;
}

.nav__list a:hover { color: var(--yellow); }

.nav-login {
    padding: 6px 14px;
    border: 2px solid var(--yellow);
    border-radius: 6px;
    font-weight: 600;
    transition: .2s;
}

/* Mobile menu toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--black);
    display: block;
}

/* Portal dropdown (My Portal → dashboards) */
.nav-portal { position: relative; }
.nav-portal-trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav-portal-caret   { font-size: .75rem; }

.nav-dropdown {
    position: absolute;
    top: 110%; right: 0;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
    list-style: none;
    display: none;
    z-index: 1200;
}

.nav-dropdown a {
    display: block;
    padding: 8px 14px;
    font-size: .9rem;
    white-space: nowrap;
}

.nav-dropdown a:hover {
    background: #f5f5f5;
    color: var(--yellow);
}

.nav-portal:hover .nav-dropdown,
.nav-portal.open .nav-dropdown { display: block; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: var(--yellow);
    color: var(--black);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0px;
    padding: 0px 0;
    position: relative;
    z-index: 2;
}

.hero-copy { padding: 0; }
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 30rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all .2s;
}

.btn { background: var(--black); color: var(--white); }
.btn:hover { background: #333; }

.btn--outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}
.btn--outline:hover { background: #111; color: #fff; }

.btn--light { background: var(--yellow); color: var(--black); }

/* Illustration */
.hero-illust2 img {
    max-height: 500px;
    width: auto;
}

/* ========================================
   WHY SECTION
   ======================================== */
.why {
    background: var(--light);
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.why__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 40px;
}

.why__content {
    position: relative;
    z-index: 1;
}

.why__eyebrow {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.why h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
}

.why__lead {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 28rem;
    margin-top: 0.7rem;
    margin-bottom: 0.9rem;
}

.why__lead strong {
    font-weight: 700;
}

/* pills row */
.why__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.9rem;
}

.why-pill {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    background: rgba(246,193,42,0.16);
    color: #4b3b07;
    border: 1px solid rgba(246,193,42,0.5);
}

/* bullet list with icons */
.why__points {
    list-style: none;
    margin-top: 0.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.95rem;
}

.why__points li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    column-gap: 10px;
}

.why__icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* illustration bubble */
.why-illust {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-illust__bubble {
    position: relative;
    padding: 18px 18px 26px;
    border-radius: 26px;
    background: var(--yellow);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    animation: whyFloat 7s ease-in-out infinite;
}

.why-illust__bubble img {
    max-height: 320px;
    width: auto;
}

.why-illust__tag {
    position: absolute;
    bottom: 10px;
    left: 18px;
    right: 18px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 999px;
    text-align: center;
}

/* float animation */
@keyframes whyFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* hover micro-interactions */
.why-pill,
.why-illust__bubble {
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.why-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.why-illust__bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.4);
}

/* mobile tweaks */
@media (max-width: 820px) {
    .why__grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 28px;
    }

    .why-illust {
        order: -1;
    }

    .why-illust__bubble {
        max-width: 280px;
        margin: 0 auto;
    }
}


/* ========================================
   AUDIENCE CARDS (Clients / Contractors)
   ======================================== */
.audience {
    background: var(--black);
    padding: 40px 0 50px;
}

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

.audience-card {
    background: #111111;
    border: 1px solid #262626;
    border-radius: 18px;
    padding: 24px 22px 26px;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.audience-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 8px;
}

.audience-tag { background: rgba(246,193,42,.14); color: var(--yellow); }
.audience-tag--gold { background: rgba(199,164,90,.18); color: var(--gold); }

.audience-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    margin-bottom: .4rem;
}

.audience-card p {
    font-size: .95rem;
    line-height: 1.6;
    color: var(--grey);
    margin-bottom: .9rem;
}

.audience-list {
    list-style: none;
    margin-bottom: 1.2rem;
    font-size: .9rem;
    color: #e7e7e7;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.audience-list li::before {
    content: "✓";
    color: var(--yellow);
    font-weight: 700;
    margin-right: .4rem;
}

/* ========================================
   STATS & VALUE ICONS
   ======================================== */
.stats { background: var(--black); color: var(--yellow); }

.stats__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0 10px;
    text-align: center;
}

.stat h3 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: .3rem;
}

.stat p {
    font-size: .9rem;
    color: var(--grey);
}

.upcards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
    align-items: center;
    justify-items: center;
}

.upcard img { width: 120px; height: auto; }

/* ========================================
   HOW IT WORKS
   ======================================== */
.how {
    background: var(--cream);
    color: var(--black);
    padding: 50px 0 40px;
}

.how__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    text-align: center;
}

.how__subtitle {
    font-size: .98rem;
    color: #555;
    text-align: center;
    margin-top: .4rem;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 24px;
}

.how-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.how-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.how-steps li {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 10px;
    align-items: flex-start;
}

.how-steps span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--black);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.how-steps strong { display: block; font-size: .96rem; margin-bottom: 2px; }
.how-steps small  { font-size: .8rem; color: #555; line-height: 1.5; }


/* ========================================
   CLIENTS PAGE
   ======================================== */

/* Hero tweaks for clients */
.hero--clients h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.hero-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hero-lead--clients {
  max-width: 32rem;
}

.hero--clients .hero-ctas {
  margin-top: 0.4rem;
}

/* Small full-width button option */
.btn.btn--full {
  width: 100%;
  max-width: 340px;
}

/* Tiny pill chips reused on clients page */
.clients-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: rgba(246,193,42,0.14);
  color: #4b3b07;
  border: 1px solid rgba(246,193,42,0.6);
  margin-bottom: 0.6rem;
}

.clients-chip--dark {
  background: rgba(0,0,0,0.1);
  color: #fff;
  border-color: rgba(0,0,0,0.3);
}

/* Why section for clients */
.clients-why {
  background: var(--light);
  color: var(--black);
  padding: 60px 0 50px;
}

.clients-why__heading {
  max-width: 640px;
  margin: 0 auto 1.6rem auto;
  text-align: left;
}

.clients-why__heading h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  margin-bottom: 0.4rem;
}

.clients-why__intro {
  max-width: 34rem;
  font-size: 0.98rem;
  color: var(--grey);
}

/* Accordion wrapper */
.clients-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Single item */
.clients-accordion-item {
  border-radius: 14px;
  background: #111111;
  border: 1px solid #262626;
  overflow: hidden;
}

/* Trigger button */
.clients-accordion-trigger {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: left;
}

.clients-accordion-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.clients-accordion-title {
  font-size: 0.98rem;
  font-weight: 600;
}

.clients-accordion-icon {
  font-size: 1rem;
  transition: transform 0.18s ease-out;
}

/* Panel */
.clients-accordion-panel {
  padding: 0 14px 12px 54px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.clients-accordion-panel p {
  margin-bottom: 0.4rem;
}

.clients-accordion-panel ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.4rem 0;
}

.clients-accordion-panel li::before {
  content: "•";
  margin-right: 0.35rem;
  color: var(--yellow);
  font-weight: 700;
}

/* Expanded state */
.clients-accordion-item[data-open="true"] .clients-accordion-trigger {
  background: #171717;
}

.clients-accordion-item[data-open="true"] .clients-accordion-icon {
  transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 680px) {
  .clients-why__heading {
    margin-bottom: 1.2rem;
  }

  .clients-accordion-panel {
    padding: 0 12px 12px 48px;
  }
}

/* WHAT YOU CAN EXPECT – CLIENTS PAGE */
.clients-expect {
  background: var(--black);
  color: var(--white);
  padding: 50px 0 60px;
}

.clients-expect__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: flex-start;
}

.clients-expect__text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.clients-expect__intro {
  font-size: 0.98rem;
  color: var(--grey);
  max-width: 28rem;
  margin-bottom: 1.1rem;
}

/* Left column list */
.clients-expect-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clients-expect-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 10px;
  align-items: flex-start;
}

.clients-expect-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.clients-expect-item h3 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.clients-expect-item p {
  font-size: 0.88rem;
  color: #e0e0e0;
}

/* Right column dashboard panel */
.clients-expect__panel {
  display: flex;
  justify-content: flex-end;
}

.clients-panel-card {
  background: #111111;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid #262626;
  box-shadow: 0 14px 35px rgba(0,0,0,0.45);
  max-width: 360px;
  width: 100%;
}

.clients-panel-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.6rem;
}

.clients-panel-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.6rem 0;
  font-size: 0.88rem;
  color: #e0e0e0;
}

.clients-panel-card li + li {
  margin-top: 4px;
}

.clients-panel-card li::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 700;
  margin-right: 0.4rem;
}

.clients-panel-note {
  font-size: 0.8rem;
  color: #b5b5b5;
}

/* Client interest form section */
.client-interest {
  background: var(--yellow);
  color: var(--white);
  padding: 60px 0 70px;
}

.client-interest__header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.client-interest__header p {
  font-size: 0.96rem;
  color: var(--grey);
  max-width: 32rem;
}

.client-interest-message {
  margin: 1rem 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: #13210b;
  color: #d4f5a3;
  font-size: 0.9rem;
}

/* Form styling shared across fields */
.client-interest-form {
  margin-top: 1.4rem;
  background: #111111;
  border-radius: 18px;
  padding: 18px 18px 22px;
  border: 1px solid #262626;
  box-shadow: 0 14px 35px rgba(0,0,0,0.5);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 16px;
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #151515;
  color: #f5f5f5;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background-color 0.15s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #777;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: #14120a;
  box-shadow: 0 0 0 1px rgba(246,193,42,0.4);
}

.small-muted {
  font-size: 0.78rem;
  color: #a9a9a9;
  margin: 0.4rem 0 0.8rem;
}

/* Responsive tweaks for clients page */
@media (max-width: 980px) {
  .clients-expect__grid {
    grid-template-columns: 1fr;
  }

  .clients-expect__panel {
    justify-content: flex-start;
  }

  .clients-panel-card {
    max-width: 100%;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero--clients h1 {
    font-size: 2rem;
  }

  .clients-why-grid {
    grid-template-columns: 1fr;
  }

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


/* ========================================
   ABOUT PAGE
   ======================================== */

.about-story {
  background: var(--black);
}

/* Generic section background modifiers */
.about-section {
  position: relative;
  padding: 60px 0;
}

.about-section--cream {
  background: var(--cream);
  color: var(--black);
}

.about-section--yellow {
  background: var(--yellow);
  color: var(--black);
}

/* Grid layout */
.about-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 40px;
}

.about-section__grid--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-section__grid--values {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.about-section__text {
  position: relative;
  z-index: 1;
}

.about-section__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Headings & body text */

.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: rgba(0,0,0,0.04);
  color: #6f600e;
  border: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 0.6rem;
}

.about-chip--dark {
  background: rgba(0,0,0,0.1);
  color: #fff;
  border-color: rgba(0,0,0,0.2);
}

.about-heading-main {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.about-heading {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.about-body {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 32rem;
}

.about-body strong {
  font-weight: 700;
}

.about-body--small {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.6rem;
}

/* Origin list */

.about-story-points {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.92rem;
}

.about-story-points li::before {
  content: "•";
  margin-right: 0.4rem;
  color: var(--gold);
  font-weight: 700;
}

/* Two-column bullet list */

.about-two-col-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.about-two-col-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-two-col-list li::before {
  content: "✓";
  color: var(--black);
  font-weight: 700;
  margin-right: 0.35rem;
}

/* Columns for drivers/clients */

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 1rem;
}

.about-pill-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px 16px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
  font-size: 0.9rem;
}

.about-pill-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.about-pill-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-pill-card li::before {
  content: "•";
  margin-right: 0.35rem;
  color: var(--gold);
}

/* Hero bubble & doodles */

.about-hero-bubble {
  position: relative;
  padding: 18px 18px 32px;
  border-radius: 26px;
  background: var(--yellow);
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
  animation: aboutFloat 7s ease-in-out infinite;
}

.about-illustration {
  max-height: 320px;
  width: auto;
}

.about-hero-tag {
  position: absolute;
  bottom: 10px;
  left: 18px;
  right: 18px;
  background: rgba(0,0,0,0.82);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 6px 10px;
  text-align: center;
}

.about-bee-doodle {
  position: absolute;
  right: 6%;
  top: 10%;
  width: 80px;
  opacity: 0.7;
}

.about-bee-mini {
  position: absolute;
  right: 15%;
  bottom: 10%;
}

.about-bee-mini img {
  width: 70px;
}

/* Characters */

.about-character {
  max-height: 320px;
  width: auto;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.35));
}

.about-character--driver {
  transform: translateY(0);
}

.about-character--desk {
  transform: translateY(0);
}

/* Values section */

.about-values-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 0.7rem;
}

.about-value {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: flex-start;
  column-gap: 10px;
  padding: 8px 0;
}

.about-value-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-value h3 {
  font-size: 0.96rem;
  margin-bottom: 2px;
}

.about-value p {
  font-size: 0.86rem;
  color: #333;
}

/* Timeline path (subtle) */

.about-path {
  position: absolute;
  width: 5px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
}

.about-path--top {
  height: 60px;
  left: 50%;
  bottom: -30px;
}

.about-path--middle {
  height: 60px;
  left: 50%;
  top: -30px;
}

/* Animation & micro-interactions */

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

.about-hero-bubble,
.about-pill-card,
.about-value {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.about-hero-bubble:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.45);
}

.about-pill-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .about-section__grid,
  .about-section__grid--reverse,
  .about-section__grid--values {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-section__media {
    order: -1;
  }

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

  .about-two-col-list {
    grid-template-columns: 1fr;
  }

  .about-hero-bubble {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-bee-doodle {
    display: none;
  }

  .about-bee-mini {
    display: none;
  }
}


/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: var(--light);
    color: var(--black);
}

.testimonials .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.testimonial .avatar { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 12px; }
.testimonial .stars { color: var(--yellow); font-size: 1.2rem; margin-bottom: 8px; }
.testimonial p { font-size: .95rem; line-height: 1.5; margin-bottom: 12px; }
.testimonial cite { font-style: normal; color: #555; }

/* ========================================
   CTA & FOOTER
   ======================================== */
.cta {
    background: var(--yellow);
    color: var(--black);
    text-align: center;
    padding: 50px 0;
}

.cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.site-footer {
    background: var(--black);
    color: var(--grey);
    padding: 24px 0;
    font-size: .9rem;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer a { color: var(--grey); transition: color .2s; }
.site-footer a:hover { color: var(--yellow); }

/* ========================================
   CONTRACTORS PAGE
   ======================================== */

/* Hero tweaks for contractors */
.hero--contractors h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.hero-lead--contractors {
  max-width: 34rem;
}

.hero--contractors .hero-ctas {
  margin-top: 0.4rem;
}

/* Small chips for drivers */
.drivers-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: rgba(246,193,42,0.14);
  color: #4b3b07;
  border: 1px solid rgba(246,193,42,0.6);
  margin-bottom: 0.6rem;
}

.drivers-chip--dark {
  background: rgba(0,0,0,0.08);
  color: #fff;
  border-color: rgba(0,0,0,0.35);
}

/* WHY DRIVERS CHOOSE */
.contractors-why {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 50px;
}

.contractors-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: flex-start;
}

.contractors-why__intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  margin-bottom: 0.6rem;
}

.contractors-why__intro p {
  font-size: 0.96rem;
  color: var(--grey);
  max-width: 28rem;
}

/* Cards column */
.contractors-why__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contractor-card {
  position: relative;
  background: #111111;
  border-radius: 16px;
  padding: 14px 14px 16px 14px;
  border: 1px solid #262626;
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.contractor-card__label {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contractor-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  padding-right: 32px;
}

.contractor-card p {
  color: #e1e1e1;
}

.contractor-card__list {
  list-style: none;
  padding-left: 0;
  margin: 0.35rem 0 0.35rem 0;
}

.contractor-card__list li + li {
  margin-top: 2px;
}

.contractor-card__list li::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 700;
  margin-right: 0.35rem;
}

.contractor-card__note {
  font-size: 0.82rem;
  color: #bfbfbf;
}

/* Hover */
.contractor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.6);
  border-color: var(--yellow);
}

/* DASHBOARD SECTION */
.contractors-dashboard {
  background: #111111;
  color: var(--white);
  padding: 60px 0 60px;
}

.contractors-dashboard__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 30px;
  align-items: flex-start;
}

.contractors-dashboard__text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contractors-dashboard__text p {
  font-size: 0.96rem;
  color: #e0e0e0;
  max-width: 32rem;
  margin-bottom: 0.8rem;
}

.contractors-dashboard__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.contractors-dashboard__list li::before {
  content: "•";
  color: var(--yellow);
  margin-right: 0.35rem;
  font-weight: 700;
}

.contractors-dashboard__panel {
  display: flex;
  justify-content: flex-end;
}

.dashboard-card {
  background: var(--black);
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid #262626;
  box-shadow: 0 14px 35px rgba(0,0,0,0.6);
  max-width: 360px;
  width: 100%;
  font-size: 0.9rem;
}

.dashboard-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.6rem;
}

.dashboard-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.6rem 0;
}

.dashboard-card ul li + li {
  margin-top: 4px;
}

.dashboard-card ul li::before {
  content: "✓";
  color: var(--yellow);
  margin-right: 0.35rem;
  font-weight: 700;
}

.dashboard-card__note {
  font-size: 0.8rem;
  color: #b5b5b5;
}

/* WHAT YOU CAN EXPECT */
.contractors-expect {
  background: var(--black);
  color: var(--white);
  padding: 50px 0 60px;
}

.contractors-expect__inner {
  max-width: 900px;
  margin: 0 auto;
}

.contractors-expect__header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.contractors-expect__header p {
  font-size: 0.96rem;
  color: var(--grey);
  max-width: 30rem;
}

.contractors-expect__grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.expect-pill {
  background: #111111;
  border-radius: 16px;
  padding: 14px 14px 16px;
  border: 1px solid #262626;
  box-shadow: 0 10px 28px rgba(0,0,0,0.48);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.expect-pill h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.expect-pill p {
  color: #e3e3e3;
}

.expect-pill:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
  box-shadow: 0 16px 38px rgba(0,0,0,0.65);
}

/* REGISTER CTA */
.contractors-register {
  background: var(--yellow);
  color: var(--black);
  padding: 60px 0 60px;
}

.contractors-register__content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.contractors-register__content p {
  font-size: 0.96rem;
  max-width: 32rem;
  margin-bottom: 1rem;
}

.contractors-register__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive tweaks – contractors */
@media (max-width: 980px) {
  .contractors-why__grid {
    grid-template-columns: 1fr;
  }

  .contractors-dashboard__grid {
    grid-template-columns: 1fr;
  }

  .contractors-dashboard__panel {
    justify-content: flex-start;
  }

  .dashboard-card {
    max-width: 100%;
  }

  .contractors-expect__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero--contractors h1 {
    font-size: 2rem;
  }

  .contractors-why__cards {
    grid-template-columns: 1fr;
  }

  .contractors-expect__grid {
    grid-template-columns: 1fr;
  }

  .contractors-register__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */
@media (max-width: 820px) {
    /* Mobile nav */
    .nav__toggle { display: flex; }
    .nav__list {
        position: absolute;
        top: 64px;
        right: 20px;
        background: var(--white);
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 16px 20px;
        flex-direction: column;
        gap: 12px;
        display: none;
        box-shadow: 0 4px 12px rgba(0,0,0,.1);
    }
    .nav__list.open { display: flex; }

    /* Hero & Why → stacked */
    .hero .container,
    .why .container,
    .audience-grid,
    .how-grid { grid-template-columns: 1fr; text-align: center; }

    .hero-copy, .hero-ctas { justify-content: center; text-align: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }

    /* Stats */
    .stats__top { justify-content: center; }

    /* Upcards */
    .upcards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .upcards { grid-template-columns: 1fr; }
}

/* Lock Overlay */
#page-lock-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Modal Box */
#page-lock-modal {
    background: white;
    padding: 30px 35px;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    text-align: center;
    animation: fadeIn 0.3s ease;
}

#page-lock-modal h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
    color: #222;
}

#page-lock-modal p {
    font-size: 16px;
    color: #555;
}

/* Optional Button */
#page-lock-modal button {
    margin-top: 18px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    background: #f6c12a;
    color: #222;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#page-lock-modal button:hover {
    background: #e4af1f;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
