/* ===== CSS Variables – matching logo colors ===== */
:root {
  --blue: #0057B8;          /* Main tote blue */
  --blue-dark: #003A7A;     /* Darker navy blue */
  --navy: #0A1F44;          /* Deep navy from logo text */
  --red: #E31C23;           /* Bright logo red */
  --red-dark: #B8141A;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --gray-100: #F0F4F8;
  --gray-200: #E2E8F0;
  --gray-600: #4A5568;
  --gray-800: #1A202C;
  --shadow: 0 4px 20px rgba(0, 30, 80, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 30, 80, 0.15);
  --radius: 12px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(227, 28, 35, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 28, 35, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-nav:hover {
  background: var(--red-dark);
}

/* ===== Header / Nav ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text .highlight {
  color: #FF6B6B;
}

.hero-sub {
  font-size: 1.2rem;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 0.95rem;
  opacity: 0.85;
}

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

.hero-logo-img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.25));
}

/* ===== Sections ===== */
.section {
  padding: 90px 0;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--off-white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.step:hover {
  transform: translateY(-6px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* ===== Totes vs Cardboard ===== */
.vs-cardboard {
  background: var(--off-white);
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vs-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.vs-copy h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.vs-intro {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.vs-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vs-bullets li {
  position: relative;
  padding-left: 32px;
  color: var(--gray-800);
  font-size: 1rem;
  line-height: 1.5;
}

.vs-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 22px;
  text-align: center;
}

.vs-table-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.98rem;
}

.vs-table thead {
  background: var(--navy);
  color: var(--white);
}

.vs-table th {
  padding: 16px 20px;
  font-weight: 600;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.vs-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

.vs-table tbody tr:last-child {
  border-bottom: none;
}

.vs-table tbody tr:nth-child(even) {
  background: #F0F5FA;
}

.vs-table td {
  padding: 14px 20px;
  vertical-align: middle;
}

.vs-table .check {
  color: var(--blue);
  font-weight: 700;
  margin-right: 6px;
}

.vs-table .cross {
  color: var(--red);
  font-weight: 700;
  margin-right: 6px;
}

/* ===== Totes ===== */
.totes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.tote-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}

.tote-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tote-card.featured {
  border: 2px solid var(--red);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.tote-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.tote-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.tote-card p {
  color: var(--gray-600);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.tote-card ul {
  margin-top: 8px;
}

.tote-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.tote-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.cta-center {
  text-align: center;
}

/* ===== Pricing ===== */
.pricing {
  background: var(--white);
}

.pricing-table-wrapper {
  max-width: 720px;
  margin: 0 auto 48px;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 1.05rem;
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  color: var(--white);
}

.pricing-table th {
  padding: 18px 24px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.pricing-table th:first-child {
  text-align: left;
  border-radius: var(--radius) 0 0 0;
}

.pricing-table th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: var(--gray-100);
}

.pricing-table td {
  padding: 18px 24px;
  text-align: center;
  vertical-align: middle;
}

.pricing-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--navy);
}

.pricing-table .price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--red);
}

.tote-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tote-icon-small {
  font-size: 1.3rem;
}

.pricing-extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.extra-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.extra-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.extra-card.highlight-extra {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border: 2px solid var(--red);
}

.extra-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.extra-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.extra-card p {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.extra-card strong {
  color: var(--red);
}

.pricing-note {
  text-align: center;
  max-width: 640px;
  margin: 36px auto 0;
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.pricing-note a {
  color: var(--red);
  font-weight: 600;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* ===== Why Us ===== */
.why-us {
  background: var(--off-white);
}

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

.benefit {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.benefit h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.benefit p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* ===== Service Area ===== */
.service-area {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
}

.service-area .section-title,
.service-area .section-subtitle {
  color: var(--white);
}

.service-area .section-subtitle {
  opacity: 0.9;
}

.area-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.area-text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.area-text p {
  margin-bottom: 28px;
  opacity: 0.92;
  font-size: 1.1rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.contact-item a,
.contact-item span {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-item a:hover {
  color: var(--red);
}

.contact-form {
  background: var(--off-white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--gray-600);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.15);
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.form-note a {
  color: var(--red);
  font-weight: 600;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 56px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: #FF6B6B;
}

.footer-contact p {
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-contact a:hover {
  color: #FF6B6B;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-logo {
    order: -1;
  }

  .hero-logo-img {
    max-width: 280px;
  }

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

  .vs-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .totes-grid,
  .benefits {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-extras {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

  .hero {
    padding: 120px 0 60px;
  }

  .section {
    padding: 70px 0;
  }
}
