/* ══════════════════════════════════════════════
   RentSomeTotes.com — Main Stylesheet
   ══════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  --color-primary: #0D9488;
  --color-primary-dark: #0F766E;
  --color-primary-light: #5EEAD4;
  --color-primary-bg: #F0FDFA;

  --color-secondary: #1E40AF;
  --color-secondary-dark: #1E3A8A;
  --color-secondary-light: #60A5FA;

  --color-accent: #F97316;
  --color-accent-dark: #EA580C;

  --color-success: #16A34A;
  --color-danger: #DC2626;

  --color-dark: #0F172A;
  --color-text: #334155;
  --color-text-light: #64748B;
  --color-border: #E2E8F0;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8FAFC;
  --color-bg-dark: #0F172A;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
  --shadow-glow: 0 0 40px rgba(13,148,136,0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 8px 25px rgba(13,148,136,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-white {
  background: white;
  color: var(--color-primary-dark);
  border-color: white;
}
.btn-white:hover {
  background: var(--color-primary-bg);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: white;
}
.btn-outline-white:hover {
  background: white;
  color: var(--color-primary-dark);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-nav { padding: 10px 24px; font-size: 0.9rem; }

/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-bg);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: white;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.1rem;
}

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: white;
  overflow: hidden;
}

.navbar.scrolled .logo { color: var(--color-dark); }

.logo-icon {
  width: 140px;
  height: 140px;
  vertical-align: middle;
  margin-right: -40px;
  margin-top: -40px;
  margin-bottom: -40px;
}

.logo-accent { color: var(--color-accent); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav-links a:visited { color: rgba(255,255,255,0.85); }
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--color-text); }
.navbar.scrolled .nav-links a:visited { color: var(--color-text); }
.navbar.scrolled .nav-links a:hover { color: var(--color-primary); }

.nav-realtor-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

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

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span { background: var(--color-dark); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0F172A 0%, #0F766E 50%, #0D9488 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--color-primary-light);
  top: -200px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
  bottom: -100px;
  left: -100px;
  animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: white;
  top: 50%;
  left: 50%;
  animation: float 25s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: var(--color-primary-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.8rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.gradient-text {
  /* Per business-owner request, the hero headline is now solid white instead
     of the teal/orange gradient. The gradient properties are reset
     (rather than just removing them) so any browser that previously cached
     the gradient still renders this as plain white. */
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #ffffff;
  background-clip: initial;
  color: #ffffff;
}

.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.trust-item i {
  color: var(--color-primary-light);
  font-size: 1.1rem;
}

/* Hero Card */
.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  animation: heroCardFloat 6s ease-in-out infinite;
}

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

.tote-illustration {
  background: linear-gradient(135deg, var(--color-primary-bg), #CCFBF1);
  padding: 0 20px;
  text-align: center;
  overflow: hidden;
}

.tote-illustration i {
  font-size: 5rem;
  color: var(--color-primary);
}

.hero-card-content {
  padding: 28px;
  text-align: center;
}

.hero-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.hero-card-content p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.hero-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 8px 0 20px;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 8px auto 20px;
  background: var(--color-primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon i {
  font-size: 2rem;
  color: var(--color-primary);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: var(--color-border);
  font-size: 1.4rem;
}

/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
.pricing {
  background: var(--color-bg-alt);
}

.realtor-discount-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #92400E;
}

.realtor-discount-banner a {
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: underline;
}

/* Rental Duration Toggle */
.rental-toggle-wrap {
  text-align: center;
  margin-bottom: 16px;
}
.rental-toggle {
  display: inline-flex;
  position: relative;
  background: #f1f5f9;
  border-radius: 50px;
  padding: 5px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
}
.rental-toggle-btn {
  position: relative;
  z-index: 2;
  padding: 12px 32px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  border-radius: 50px;
  transition: color 0.3s;
  white-space: nowrap;
}
.rental-toggle-btn.active {
  color: #fff;
}
.rental-toggle-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  background: linear-gradient(135deg, #0D9488, #065F46);
  border-radius: 50px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.35);
}
.rental-toggle-slider.right {
  transform: translateX(100%);
}
.rental-toggle-hint {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 6px;
  margin-bottom: 0;
  transition: opacity 0.3s;
}
.rental-toggle-hint.hidden { opacity: 0; }

/* Pricing card price transition */
.pricing-card-price {
  transition: transform 0.25s, opacity 0.2s;
}
.pricing-card-price.price-updating {
  transform: scale(1.08);
}

/* Pricing Cards */
section.pricing .pricing-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
  padding: 0 16px;
}

section.pricing .pricing-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

section.pricing .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: #0D9488;
}

section.pricing .pricing-card-popular {
  border-color: #0D9488;
  box-shadow: 0 8px 28px rgba(13,148,136,0.2);
}

section.pricing .pricing-card-popular:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(13,148,136,0.25);
}

section.pricing .pricing-card-badge {
  background: linear-gradient(135deg, #0D9488, #0F766E);
  color: #ffffff;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 0;
}

section.pricing .pricing-card-header {
  text-align: center;
  padding: 22px 16px 18px;
}

section.pricing .pricing-card-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6B7280;
  margin-bottom: 2px;
}

section.pricing .pricing-card-totes {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: #0D9488;
  background: rgba(13,148,136,0.08);
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

section.pricing .pricing-card-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

section.pricing .pricing-card-popular .pricing-card-price {
  color: #0D9488;
}

section.pricing .pricing-card-period {
  display: block;
  font-size: 0.8rem;
  color: #9CA3AF;
  margin-top: 4px;
}

section.pricing .pricing-card-features {
  list-style: none;
  padding: 14px 18px;
  margin: 0;
  flex: 1;
  border-top: 1px solid #F3F4F6;
}

section.pricing .pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.82rem;
  color: #374151;
  line-height: 1.3;
}

section.pricing .pricing-card-features li i.fa-check {
  color: #0D9488;
  font-size: 0.7rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

section.pricing .pricing-card-features li i.fa-plus {
  font-size: 0.65rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

section.pricing .pricing-card .pricing-card-btn {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  align-self: stretch !important;
  width: auto !important;
  margin: auto 18px 18px 18px !important;
  padding: 12px 16px !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
}

section.pricing .pricing-card:hover .pricing-card-btn.btn-outline {
  background: #0D9488;
  color: #ffffff;
  border-color: #0D9488;
}

@media (max-width: 960px) {
  section.pricing .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 580px;
  }
  .rental-toggle-btn { padding: 10px 22px; font-size: 0.88rem; }
}

@media (max-width: 520px) {
  section.pricing .pricing-cards-grid {
    grid-template-columns: 1fr !important;
    max-width: 340px;
  }
}

.price-amount {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.price-amount .currency {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  vertical-align: super;
}

.price-amount .amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-dark);
}

.price-amount .custom-note {
  font-size: 2rem;
  color: var(--color-primary);
}

.price-features {
  flex: 1;
  margin-bottom: 24px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.price-features li i {
  color: var(--color-success);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   WHY US / COMPARISON
   ══════════════════════════════════════════════ */
.comparison-table {
  max-width: 680px;
  margin: 0 auto 60px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  gap: 0;
  padding: 10px 28px;
  background: var(--color-bg-alt);
  border-bottom: 2px solid var(--color-border);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.comparison-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.totes-col { color: var(--color-primary); }
.cardboard-col { color: var(--color-text-light); }

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  gap: 0;
  padding: 14px 28px;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.comparison-row:last-child { border-bottom: none; }

.comparison-feature {
  font-weight: 500;
  font-size: 0.95rem;
}

.comparison-val {
  text-align: center;
  font-size: 1.2rem;
}

.comparison-val.yes i { color: var(--color-success); }
.comparison-val.no i { color: var(--color-danger); }

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

.feature-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--color-primary-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 1.6rem;
  color: var(--color-primary);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── Benefits Filter & Grid ─── */
.benefits-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.benefits-filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: white;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.benefits-filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-bg);
}

.benefits-filter-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(13,148,136,0.25);
}

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

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-primary-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  font-size: 1.2rem;
  color: var(--color-primary);
}

.benefit-content h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.benefit-content p {
  color: var(--color-text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

.benefit-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--color-primary-bg), #E0F9F5);
  border: 2px solid var(--color-primary-light);
  border-radius: var(--radius-xl);
  margin-top: 8px;
  text-align: center;
}

.benefit-cta-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.benefit-cta-icon i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.benefit-cta-content {
  max-width: 820px;
}

.benefit-cta-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.benefit-cta-content p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.benefit-cta-content .btn {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
}

/* ══════════════════════════════════════════════
   REALTOR SECTION
   ══════════════════════════════════════════════ */
.realtor-section {
  background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-secondary));
  color: white;
}

.realtor-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.realtor-text h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.realtor-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.realtor-benefits {
  margin-bottom: 32px;
}

.realtor-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.realtor-benefits li i {
  color: var(--color-accent);
  font-size: 1.1rem;
  width: 20px;
}

/* Realtor Dashboard Mock */
.realtor-card-mock {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.mock-header {
  padding: 20px 24px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark);
}

.mock-header i { color: var(--color-secondary); }

.mock-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
}

.mock-stat:last-child { border-bottom: none; }

.mock-stat-label {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.mock-stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials {
  background: var(--color-bg-alt);
}

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

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.testimonial-stars {
  margin-bottom: 16px;
  color: #FBBF24;
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.testimonial-card > p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--color-primary-bg);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ══════════════════════════════════════════════
   SERVICE AREA
   ══════════════════════════════════════════════ */
.service-area-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.service-area-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.highlight { color: var(--color-primary); }

.service-area-text > p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.service-area-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sa-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
}

.sa-badge i {
  color: var(--color-primary);
  font-size: 1.2rem;
  width: 20px;
}

.area-card {
  text-align: center;
  background: var(--color-primary-bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px dashed var(--color-primary-light);
}

.area-card i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.area-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.area-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-content > p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-business {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem !important;
}

.footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links-col ul li {
  margin-bottom: 10px;
}

.footer-links-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-links-col a:hover { color: white; }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact a:hover { color: white; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer-social a:hover {
  background: var(--color-primary);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover { color: white; }

/* ══════════════════════════════════════════════
   ANIMATIONS (scroll-triggered)
   ══════════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos][data-aos-delay="150"] { transition-delay: 150ms; }
[data-aos][data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos][data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos][data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos][data-aos-delay="500"] { transition-delay: 500ms; }

/* ══════════════════════════════════════════════
   FORM STYLES (shared across pages)
   ══════════════════════════════════════════════ */
.form-group {
  margin-bottom: 20px;
}

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: var(--transition);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%2364748B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════
   PAGE HEADER (for inner pages)
   ══════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, #0F172A 0%, #0F766E 100%);
  padding: 140px 0 60px;
  text-align: center;
  color: white;
}

.page-header h1 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 3rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .realtor-content { grid-template-columns: 1fr; }
  .realtor-visual { display: none; }
  .service-area-content { grid-template-columns: 1fr; }
  .service-area-visual { max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links {
    /* iOS Safari fix: use dynamic viewport height so the menu always covers
       the *visual* viewport (URL bar shows/hides as the user scrolls). The
       100vh fallback is for older browsers; 100dvh wins where supported. */
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    background: rgba(15,23,42,0.98);
    flex-direction: column;
    /* Start items near the top with padding to clear the navbar instead of
       vertically centering — vertical centering used to push the first/last
       items off-screen on small phones once the URL bar collapsed. */
    justify-content: flex-start;
    gap: 24px;
    padding: 90px 24px 40px;
    z-index: 999;
    /* If items still don't fit (e.g. very small phones in landscape), let the
       menu scroll internally so every link stays reachable. */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active { display: flex; }

  .nav-links a {
    font-size: 1.3rem;
    color: white !important;
  }

  .mobile-toggle { display: flex; }

  /* Hide the "Book Now" CTA in the navbar on mobile — at narrow widths it
     overlaps the RentSomeTotes wordmark logo. Users can still book via the
     hamburger menu, the hero "View Packages" button, or any pricing card.
     Only the primary-styled link is hidden so the realtor dashboard's
     btn-outline "Log Out" button stays accessible. */
  .nav-actions a.btn-primary.btn-nav { display: none; }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero h1 { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1rem; }

  .section-header h2 { font-size: 2rem; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-8px); }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr 80px 80px;
    padding: 12px 16px;
  }

  .features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-cta { flex-direction: column; text-align: center; padding: 24px 20px; }
  .benefits-filter-btn { font-size: 0.78rem; padding: 7px 14px; }

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

  .service-area-badges { grid-template-columns: 1fr; }

  .cta-content h2 { font-size: 2rem; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; }
}

/* ═══════════════════════════════════════════
   UPSELL INTERSTITIAL OVERLAY
   ═══════════════════════════════════════════ */
#upsellOverlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#upsellOverlay.active {
  opacity: 1;
  pointer-events: auto;
}

.upsell-screen {
  background: #fff;
  border-radius: 20px;
  max-width: 720px;
  width: 95%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: upsellSlideUp 0.35s ease-out;
  overflow: hidden;
}
@keyframes upsellSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.upsell-screen-header {
  text-align: center;
  padding: 32px 32px 20px;
  border-bottom: 1px solid #e5e7eb;
}
.upsell-screen-header h2 {
  font-size: 1.5rem;
  margin: 12px 0 6px;
  font-weight: 800;
}
.upsell-screen-header p {
  color: #64748b;
  font-size: 0.92rem;
  margin: 0;
}

.upsell-screen-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.upsell-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.upsell-card:hover {
  border-color: #0D9488;
  background: rgba(13,148,136,0.02);
}
.upsell-card.selected {
  border-color: #0D9488;
  background: linear-gradient(135deg, rgba(13,148,136,0.06), rgba(6,95,70,0.04));
  box-shadow: 0 4px 16px rgba(13,148,136,0.12);
}

.upsell-card-check {
  flex-shrink: 0;
}
.upsell-checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.upsell-checkbox i {
  font-size: 0.85rem;
  color: transparent;
  transition: color 0.2s;
}
.upsell-card.selected .upsell-checkbox {
  background: #0D9488;
  border-color: #0D9488;
}
.upsell-card.selected .upsell-checkbox i {
  color: #fff;
}

.upsell-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0D9488, #065F46);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.upsell-card-icon i { color: #fff; font-size: 1.3rem; }

.upsell-card-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}
.upsell-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.upsell-img-zoom {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 320px; max-height: 320px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  z-index: 10000;
  pointer-events: none;
  object-fit: contain;
  background: white;
  padding: 8px;
}

.upsell-card-body { flex: 1; min-width: 0; }
.upsell-card-name { font-weight: 700; font-size: 1rem; }
.upsell-card-desc { font-size: 0.82rem; color: #64748b; margin-top: 2px; }

.upsell-card-right {
  text-align: right;
  flex-shrink: 0;
}
.upsell-card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0D9488;
}
.upsell-card-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.upsell-card-qty label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}
.upsell-card-qty-input {
  width: 50px;
  text-align: center;
  padding: 4px;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
}
.upsell-card-qty-input:focus {
  border-color: #0D9488;
  outline: none;
}

.upsell-screen-footer {
  border-top: 1px solid #e5e7eb;
  padding: 20px 32px 24px;
  background: #f8fafc;
}

.upsell-screen-totals {
  margin-bottom: 16px;
}
.upsell-screen-total-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 4px 0;
  color: #64748b;
}
.upsell-screen-total-line.upsell-grand-total {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 2px solid #e5e7eb;
}

.upsell-screen-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.upsell-screen-actions .btn {
  flex: 1;
  max-width: 300px;
  justify-content: center;
}

.upsell-back-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}
.upsell-back-link:hover { color: #0D9488; }

@media (max-width: 600px) {
  .upsell-screen { width: 100%; max-height: 100vh; border-radius: 0; }
  .upsell-screen-header { padding: 24px 20px 16px; }
  .upsell-screen-header h2 { font-size: 1.2rem; }
  .upsell-screen-items { padding: 16px; gap: 10px; }
  .upsell-card { padding: 14px; gap: 12px; flex-wrap: wrap; }
  .upsell-card-right { width: 100%; display: flex; justify-content: space-between; align-items: center; padding-top: 8px; border-top: 1px solid #f1f5f9; }
  .upsell-screen-footer { padding: 16px 20px 20px; }
  .upsell-screen-actions { flex-direction: column; }
  .upsell-screen-actions .btn { max-width: 100%; }
}
