/* ===========================
   EASY PRIME RETURNS
   Styles — 2026
   =========================== */

/* --- CUSTOM PROPERTIES --- */
:root {
  --black: #0b0f14;
  --white: #fafbfc;
  --cream: #f5f7fa;
  --prime-blue: #2563eb;
  --prime-dark: #1d4ed8;
  --prime-light: #eff6ff;
  --amazon-orange: #FF9900;
  --amazon-dark: #E68A00;
  --amazon-light: #FFF3E0;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --green: #22c55e;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --navy: #0f172a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);
  --shadow-blue: 0 8px 30px rgba(37,99,235,0.25);
  --shadow-gold: 0 8px 30px rgba(245,158,11,0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
  background: var(--navy);
  color: white;
  font-size: 0.82rem;
  padding: 0.6rem 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  border-bottom: 2px solid var(--amazon-orange);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.announcement-bar p {
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.announcement-bar a {
  color: var(--amazon-orange);
  font-weight: 700;
  transition: color var(--transition);
}

.announcement-bar a:hover {
  color: #FFB84D;
}

.announcement-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}

.announcement-close:hover {
  color: white;
}

.announcement-bar.hidden {
  display: none;
}

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

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: var(--announcement-height, 40px);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 0.7rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  z-index: 1001;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--prime-blue) 0%, #3b82f6 50%, #60a5fa 100%);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.logo:hover .logo-mark {
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 6px 20px rgba(37,99,235,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

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

.logo-light {
  font-weight: 500;
  color: var(--gray-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--prime-blue);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--navy);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--prime-blue);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: all var(--transition) !important;
  box-shadow: var(--shadow-blue);
}

.nav-cta:hover {
  background: var(--prime-dark);
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--prime-blue);
}

.mobile-menu .nav-cta-mobile {
  display: block;
  text-align: center;
  background: var(--prime-blue);
  color: white;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-blue);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--white) 0%, var(--cream) 60%, #e0e7ff 100%);
  padding-top: 7rem;
}

/* Animated background orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.08);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(245, 158, 11, 0.06);
  bottom: -10%;
  left: -5%;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.05);
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}

@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(15px, 15px) scale(1.02); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--prime-light);
  border: 1px solid rgba(37, 99, 235, 0.12);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prime-blue);
  margin-bottom: 1.5rem;
  animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 1.3rem;
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero h1 .highlight {
  color: var(--prime-blue);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -2px;
  right: -2px;
  height: 12px;
  background: rgba(245, 158, 11, 0.25);
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-trust {
  display: flex;
  gap: 1.8rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

.trust-icon {
  width: 28px;
  height: 28px;
  background: var(--prime-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* Hero Image */
.hero-visual {
  position: relative;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3.5;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating cards on hero image */
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  z-index: 2;
  animation: floatCard 6s ease-in-out infinite;
  border: 1px solid rgba(0,0,0,0.04);
}

.float-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.float-card-1 {
  top: 8%;
  right: -12%;
  animation-delay: 0s;
}

.float-card-1 .float-card-icon {
  background: #ecfdf5;
}

.float-card-2 {
  bottom: 12%;
  left: -10%;
  animation-delay: -2s;
}

.float-card-2 .float-card-icon {
  background: #eff6ff;
}

.float-card-3 {
  bottom: 38%;
  right: -8%;
  animation-delay: -4s;
}

.float-card-3 .float-card-icon {
  background: #fefce8;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--prime-blue);
  color: white;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--prime-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,99,235,0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245,158,11,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
  width: 100%;
}

.btn-outline:hover {
  border-color: var(--prime-blue);
  color: var(--prime-blue);
  transform: translateY(-2px);
}

.btn-amazon {
  background: linear-gradient(180deg, #FFB84D 0%, var(--amazon-orange) 100%);
  color: var(--navy);
  border: 1px solid var(--amazon-dark);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-amazon:hover {
  background: linear-gradient(180deg, var(--amazon-orange) 0%, var(--amazon-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,153,0,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-amazon:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 1.1rem 2.8rem;
}

.btn-arrow {
  transition: transform var(--transition);
  display: inline-block;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* --- STATS BAR --- */
.stats-bar {
  padding: 3.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--prime-blue);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* --- TRUST STRIP --- */
.trust-strip {
  padding: 2.5rem 0;
  background: var(--amazon-light);
  border-top: 1px solid rgba(255,153,0,0.12);
  border-bottom: 1px solid rgba(255,153,0,0.12);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 0;
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amazon-orange);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255,153,0,0.12);
}

.trust-badge-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.1rem;
}

.trust-badge-card span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* --- SECTION COMMON --- */
.section {
  padding: 6rem 0;
}

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

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

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

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-tag-blue { color: var(--prime-blue); }

.section-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 550px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- HOW IT WORKS --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3.5rem auto 0;
  position: relative;
}

/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(37,99,235,0.4), rgba(255,255,255,0.1));
  z-index: 0;
}

.step-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--prime-blue), #60a5fa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow-blue);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: white;
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* --- BEFORE YOUR PICKUP --- */
.pickup-req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 3rem auto 0;
}

.pickup-req-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pickup-req-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pickup-req-icon {
  width: 72px;
  height: 72px;
  background: var(--prime-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: transform var(--transition);
}

.pickup-req-card:hover .pickup-req-icon {
  transform: scale(1.08) rotate(-3deg);
}

.pickup-req-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--prime-blue);
  color: white;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.pickup-req-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pickup-req-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pickup-req-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* --- BENEFITS --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.benefits-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefits-image:hover img {
  transform: scale(1.03);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--prime-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
}

.benefit-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- SCHEDULE --- */
.schedule-card {
  max-width: 700px;
  margin: 2rem auto 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.days-strip {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.day {
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--gray-100);
  color: var(--gray-400);
  transition: all var(--transition);
  cursor: default;
}

.day.active {
  background: var(--prime-blue);
  color: white;
  box-shadow: var(--shadow-blue);
  transform: scale(1.05);
}

.schedule-note {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* --- PRICING --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 840px;
  margin: 3rem auto 0;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

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

.price-card.popular {
  border-color: var(--prime-blue);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--prime-blue), #60a5fa);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.35rem 1.2rem;
  border-radius: 100px;
  box-shadow: var(--shadow-blue);
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.price-tagline {
  font-size: 0.83rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.price-amount span {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 400;
}

.price-features {
  margin: 1.5rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.price-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-700);
}

.check {
  width: 20px;
  height: 20px;
  background: #ecfdf5;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check svg {
  width: 12px;
  height: 12px;
  stroke: var(--green);
  stroke-width: 2.5;
  fill: none;
}

/* --- LIMITS --- */
.limits-card {
  max-width: 760px;
  margin: 2rem auto 0;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--gray-200);
}

.limits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.limit-item {
  text-align: center;
  padding: 1.3rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.limit-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.limit-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.limit-val {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--prime-blue);
}

.limit-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.1rem;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--prime-light), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--prime-blue);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* --- RATING AGGREGATE --- */
.rating-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--amazon-orange);
}

.rating-score {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.rating-count {
  font-size: 0.88rem;
  color: var(--gray-500);
}

.rating-count::before {
  content: '|';
  margin-right: 0.6rem;
  color: var(--gray-300);
}

/* --- COMPARISON --- */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin: 3rem auto 0;
}

.compare-card {
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.compare-card:hover {
  transform: translateY(-4px);
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 1.8rem;
  font-weight: 700;
  font-size: 1rem;
}

.compare-header-diy {
  background: var(--gray-100);
  color: var(--gray-600);
  border-bottom: 2px solid var(--gray-200);
}

.compare-header-us {
  background: linear-gradient(135deg, #FFF8EC, var(--amazon-light));
  color: var(--navy);
  border-bottom: 2px solid var(--amazon-orange);
}

.compare-diy {
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.compare-diy:hover {
  box-shadow: var(--shadow-md);
}

.compare-us {
  background: var(--white);
  border: 2px solid var(--amazon-orange);
  box-shadow: 0 4px 20px rgba(255,153,0,0.1);
}

.compare-us:hover {
  box-shadow: 0 12px 40px rgba(255,153,0,0.15);
}

.compare-list {
  padding: 1.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.compare-bad,
.compare-good {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.compare-bad {
  color: var(--gray-500);
}

.compare-good {
  color: var(--gray-700);
}

.compare-x {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fef2f2;
  color: #ef4444;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.compare-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  border-radius: 50%;
}

.compare-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--green);
  stroke-width: 2.5;
  fill: none;
}

.compare-cost {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.8rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-100);
}

.compare-us .compare-cost {
  background: #FFF8EC;
  border-top-color: rgba(255,153,0,0.1);
}

.compare-cost-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.compare-cost-value {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.compare-cost-bad {
  color: #ef4444;
}

.compare-cost-good {
  color: var(--green);
}

.compare-cta {
  margin: 1.2rem 1.8rem 1.5rem;
  width: calc(100% - 3.6rem);
}

/* Amazon Smile Divider */
.smile-divider {
  max-width: 200px;
  margin: 3rem auto 0;
  text-align: center;
}

.smile-divider svg {
  width: 100%;
  height: auto;
}

/* --- FAQ --- */
.faq-list {
  max-width: 700px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
  padding: 1.4rem 0;
  text-align: left;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--prime-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--prime-blue);
  stroke-width: 2;
  fill: none;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--prime-blue);
}

.faq-item.open .faq-icon svg {
  stroke: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding-bottom: 1.4rem;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* --- APARTMENTS --- */
.apartments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.apartments-content {
  color: white;
}

.apartments-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

.apartments-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 2rem;
}

.apartments-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.apartments-benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,153,0,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amazon-orange);
  flex-shrink: 0;
}

.apartments-benefit strong {
  display: block;
  font-size: 0.92rem;
  color: white;
  margin-bottom: 0.15rem;
}

.apartments-benefit span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.apartments-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.apartments-cta-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* Apartment info card */
.apartments-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.apartments-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.3rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.apartments-steps {
  list-style: none;
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  counter-reset: none;
}

.apartments-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.apartments-step-num {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--prime-blue), #60a5fa);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
}

.apartments-card-footer {
  padding: 1rem 1.8rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  line-height: 1.5;
}

/* --- PAGE HERO EXTRAS (apartments) --- */
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-hero-content .section-tag {
  color: var(--amazon-orange);
}

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* --- PROBLEM CARDS --- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

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

.problem-icon {
  width: 52px;
  height: 52px;
  background: var(--amazon-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- PM BENEFITS GRID --- */
.pm-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pm-benefit-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

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

.pm-benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--prime-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.pm-benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pm-benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- FLEXIBLE PLANS --- */
.plans-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.plan-option-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
}

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

.plan-option-featured {
  border-color: var(--prime-blue);
  box-shadow: var(--shadow-blue);
}

.plan-option-label {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--prime-blue);
  margin-bottom: 0.8rem;
}

.plan-option-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.plan-option-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.plan-option-list {
  list-style: none;
  padding: 0;
}

.plan-option-list li {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.plan-option-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* --- CTA NOTE --- */
.cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1.5rem;
}

/* --- CTA SECTION --- */
.cta-section {
  padding: 7rem 0;
  background: var(--navy);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section .section-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.8rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
}

/* --- FOOTER --- */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.3rem 0;
  transition: color var(--transition);
}

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

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0;
  margin-bottom: 0;
}

.footer-disclaimer p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.65;
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: var(--prime-blue);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition);
}

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

/* --- MOBILE STICKY CTA --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-cta-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
}

/* --- RESPONSIVE --- */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content { order: 1; }
  .hero-visual { order: 2; max-width: 480px; margin: 0 auto; }

  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }

  .compare-grid {
    max-width: 700px;
  }

  .apartments-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .apartments-sub {
    max-width: 100%;
  }

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

  .plans-options-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pm-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .mobile-overlay { display: block; }
  .mobile-sticky-cta { display: block; }

  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.5rem 0;
  }

  .announcement-bar p strong { display: inline; }

  .trust-strip {
    padding: 2rem 0;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .trust-badge-card {
    padding: 0.8rem 1rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .trust-badge-icon {
    width: 40px;
    height: 40px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .compare-header {
    font-size: 0.92rem;
    padding: 1rem 1.3rem;
  }

  .compare-list {
    padding: 1rem 1.3rem;
  }

  .compare-bad, .compare-good {
    font-size: 0.85rem;
  }

  .compare-cost {
    padding: 0.8rem 1.3rem;
  }

  .compare-cta {
    margin: 1rem 1.3rem 1.3rem;
    width: calc(100% - 2.6rem);
  }

  .rating-count::before {
    display: none;
  }

  .rating-aggregate {
    flex-direction: column;
    gap: 0.3rem;
  }

  .apartments-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .apartments-sub {
    font-size: 0.95rem;
  }

  .apartments-card-header {
    padding: 1rem 1.3rem;
    font-size: 0.88rem;
  }

  .apartments-steps {
    padding: 1.2rem 1.3rem;
  }

  .apartments-card-footer {
    padding: 0.8rem 1.3rem;
  }

  .apartments-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

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

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

  .plans-options-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Add bottom padding so sticky CTA doesn't cover content */
  body { padding-bottom: 72px; }

  .hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
  }

  .section-heading {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .section-sub {
    font-size: 0.95rem;
  }

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

  .steps-grid::before { display: none; }

  .step-card {
    padding: 1.8rem 1.5rem;
  }

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

  .price-card {
    padding: 2rem 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

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

  .stats-bar {
    padding: 2.5rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .stat-item:not(:last-child)::after { display: none; }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .trust-item {
    font-size: 0.78rem;
  }

  .float-card { display: none; }

  .hero-image-wrapper {
    aspect-ratio: 4 / 3;
  }

  .pickup-req-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pickup-req-card {
    padding: 2rem 1.5rem;
  }

  .benefit-list {
    gap: 1.4rem;
  }

  .benefit-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .schedule-card {
    padding: 1.5rem;
  }

  .days-strip {
    gap: 0.35rem;
  }

  .day {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 1.2rem 0;
    min-height: 48px;
  }

  .faq-answer-inner {
    font-size: 0.88rem;
  }

  .cta-section {
    padding: 4rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .mobile-menu {
    width: 280px;
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .section { padding: 3rem 0; }

  .announcement-bar { font-size: 0.7rem; }

  .trust-strip { padding: 1.5rem 0; }

  .trust-badge-card strong { font-size: 0.82rem; }
  .trust-badge-card span { font-size: 0.72rem; }

  .compare-bad, .compare-good { font-size: 0.82rem; }
  .compare-cost-value { font-size: 1rem; }

  .smile-divider { max-width: 140px; margin-top: 2rem; }

  .apartments-benefit strong { font-size: 0.85rem; }
  .apartments-benefit span { font-size: 0.78rem; }
  .apartments-steps li { font-size: 0.82rem; }

  .hero { padding-top: 6rem; padding-bottom: 2rem; }

  .hero h1 {
    font-size: 1.9rem;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    justify-content: center;
    padding: 0.85rem 1.5rem;
  }

  .hero-visual {
    max-width: 100%;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .section-sub {
    font-size: 0.88rem;
  }

  .section-tag {
    font-size: 0.68rem;
    letter-spacing: 2px;
  }

  .stats-grid {
    gap: 0.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .step-card {
    padding: 1.5rem 1.2rem;
  }

  .step-card h3 {
    font-size: 1.05rem;
  }

  .step-card p {
    font-size: 0.85rem;
  }

  .pickup-req-card h3 {
    font-size: 1rem;
  }

  .pickup-req-card p {
    font-size: 0.85rem;
  }

  .pickup-req-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .pickup-req-icon svg {
    width: 32px;
    height: 32px;
  }

  .benefit-item h3 {
    font-size: 0.95rem;
  }

  .benefit-item p {
    font-size: 0.82rem;
  }

  .schedule-card {
    padding: 1.2rem;
  }

  .day {
    padding: 0.5rem 0.7rem;
    font-size: 0.75rem;
  }

  .price-card {
    padding: 1.5rem 1.2rem;
  }

  .price-amount {
    font-size: 2.4rem;
  }

  .price-features li {
    font-size: 0.85rem;
  }

  .limits-card {
    padding: 1.2rem;
  }

  .limit-item {
    padding: 1rem 0.6rem;
  }

  .limit-val {
    font-size: 1.3rem;
  }

  .limit-label {
    font-size: 0.68rem;
  }

  .testimonial-text {
    font-size: 0.88rem;
  }

  .cta-section .section-heading {
    font-size: 1.5rem;
  }

  .cta-sub {
    font-size: 0.92rem;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .logo-mark svg {
    width: 16px;
    height: 16px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .nav {
    padding: 0.65rem 0;
  }

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

  .footer-col a {
    font-size: 0.82rem;
    min-height: 36px;
    display: flex;
    align-items: center;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .container { padding: 0 0.75rem; }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .days-strip {
    gap: 0.25rem;
  }

  .day {
    padding: 0.45rem 0.5rem;
    font-size: 0.7rem;
  }

  .limits-grid {
    gap: 0.6rem;
  }

  .stats-grid {
    gap: 0.6rem;
  }
}

/* --- PAGE HERO (subpages) --- */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--navy);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
}

.page-hero-content .hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* --- PROMISE / VALUE CARDS --- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.promise-card {
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.promise-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--prime-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--prime-blue);
}

.promise-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.promise-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- STORY SECTION --- */
.story-content {
  max-width: 680px;
  margin: 0 auto;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.story-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 7rem 0 3rem;
  }

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

@media (max-width: 480px) {
  .page-hero {
    padding: 6.5rem 0 2.5rem;
  }

  .page-hero-content h1 {
    font-size: 1.45rem;
  }

  .promise-card {
    padding: 1.6rem 1.3rem;
  }
}

/* --- FORM STYLES --- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.2px;
}

.form-label span[aria-hidden] {
  color: var(--amazon-orange);
}

.form-optional {
  font-weight: 400;
  color: var(--gray-400);
  font-size: 0.8rem;
}

.form-input,
.form-select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--prime-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

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

.form-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.contact-card-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.8rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.contact-info-card-highlight {
  border-color: var(--amazon-orange);
  background: var(--amazon-light);
}

.contact-info-card-highlight:hover {
  border-color: var(--amazon-dark);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--prime-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card-highlight .contact-info-icon {
  background: rgba(255, 153, 0, 0.15);
}

.contact-info-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.contact-info-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-link {
  font-size: 0.92rem;
  color: var(--prime-blue);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--prime-dark);
}

.contact-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-hours li {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.contact-hours li strong {
  color: var(--gray-700);
  font-weight: 600;
}

.contact-info-note {
  font-size: 0.82rem !important;
  color: var(--gray-400) !important;
  font-style: italic;
  margin-top: 0.2rem;
}

.contact-info-body .btn-sm {
  margin-top: 0.8rem;
  display: inline-flex;
}

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

  .contact-info-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.8rem 1.4rem;
  }

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

/* ===========================
   BOOKING PAGE
   =========================== */

/* --- BOOKING LAYOUT (two-column) --- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

/* --- BOOKING CARD --- */
.booking-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

/* --- BOOKING FORM --- */
.booking-form {
  display: flex;
  flex-direction: column;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 2rem;
}

.form-fieldset:last-of-type {
  margin-bottom: 2rem;
}

.form-legend {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
  display: block;
  width: 100%;
}

/* --- FILE INPUT --- */
.form-file {
  width: 100%;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 0.65rem 1rem;
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.form-file:hover {
  border-color: var(--prime-blue);
  background: var(--prime-light);
}

.form-file:focus {
  outline: none;
  border-color: var(--prime-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Override centered form-note for booking helper text */
.booking-form .form-note {
  text-align: left;
  margin-top: 0.35rem;
}

.booking-form .form-note-center {
  text-align: center;
  margin-top: 0.75rem;
}

/* --- RADIO CARDS --- */
.form-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-radio-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.2rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: white;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-radio-card:hover {
  border-color: var(--prime-blue);
  background: var(--prime-light);
}

.form-radio-card:has(.form-radio:checked) {
  border-color: var(--prime-blue);
  background: var(--prime-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-radio {
  margin-top: 3px;
  accent-color: var(--prime-blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-radio-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.form-radio-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.form-radio-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* --- SUBMIT BUTTON --- */
.booking-submit {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

/* --- SIDEBAR --- */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.sidebar-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gray-300);
}

.sidebar-card-muted {
  background: var(--prime-light);
  border-color: rgba(37, 99, 235, 0.15);
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.sidebar-card-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
}

.sidebar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amazon-orange);
}

.sidebar-note {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.sidebar-note strong {
  color: var(--navy);
}

/* --- SR ONLY (screen reader) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- PRICING RECAP --- */
.pricing-recap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 2.5rem auto 0;
}

.pricing-recap-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.pricing-recap-featured {
  border-color: var(--amazon-orange);
  box-shadow: 0 4px 20px rgba(255, 153, 0, 0.12);
}

.pricing-recap-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #FFB84D 0%, var(--amazon-orange) 100%);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-recap-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pricing-recap-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-recap-unit {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.2rem;
}

.pricing-recap-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  width: 100%;
}

.pricing-recap-features li {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-recap-features li:last-child {
  border-bottom: none;
}

.pricing-recap-card .btn {
  width: 100%;
  margin-top: auto;
}

/* --- BOOKING PAGE RESPONSIVE --- */
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .booking-card {
    padding: 1.5rem;
  }

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

  .booking-sidebar {
    grid-template-columns: 1fr;
  }

  .pricing-recap-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .booking-card {
    padding: 1.2rem;
    border-radius: var(--radius-md);
  }

  .form-legend {
    font-size: 0.92rem;
  }
}

/* --- LEGAL PAGES & PAGE HERO VARIANTS --- */
.page-hero-sm {
  padding: 8rem 0 3rem;
}

.page-hero-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.7rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.2rem;
  list-style: disc;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0.3rem;
}

.legal-content a {
  color: var(--prime-blue);
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-hero-sm { padding: 7rem 0 2rem; }
  .page-hero-heading { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .legal-content h2 { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .page-hero-sm { padding: 6rem 0 1.5rem; }
  .page-hero-heading { font-size: 1.5rem; }
}

/* --- PICKUP CALENDAR --- */
.pickup-calendar {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: var(--navy);
  color: white;
}

.cal-month-year {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.3px;
}

.cal-nav {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.cal-nav:hover {
  background: rgba(255,255,255,0.2);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 0.6rem 0.5rem 0.3rem;
  border-bottom: 1px solid var(--gray-200);
}

.cal-weekdays span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  padding: 0.5rem;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  background: none;
  color: var(--gray-400);
  cursor: default;
  transition: all var(--transition);
  font-family: 'Sora', sans-serif;
}

.cal-day.available {
  color: var(--navy);
  background: var(--amazon-light);
  cursor: pointer;
  font-weight: 700;
}

.cal-day.available:hover {
  background: var(--amazon-orange);
  color: white;
  transform: scale(1.08);
}

.cal-day.selected {
  background: var(--amazon-orange);
  color: white;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(255,153,0,0.3);
}

.cal-day.today {
  position: relative;
}

.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--prime-blue);
  border-radius: 50%;
}

.cal-day.past {
  color: var(--gray-300);
}

.cal-day.empty {
  visibility: hidden;
}

.cal-selected-display {
  margin-top: 0.6rem;
  padding: 0.6rem 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gray-500);
  text-align: center;
  font-weight: 500;
  transition: all var(--transition);
}

.cal-selected-display.has-date {
  background: var(--amazon-light);
  color: var(--navy);
  font-weight: 700;
  border: 1px solid rgba(255,153,0,0.2);
}

@media (max-width: 480px) {
  .cal-day {
    font-size: 0.78rem;
  }

  .cal-weekdays span {
    font-size: 0.62rem;
  }
}

/* Ensure touch targets */
@media (pointer: coarse) {
  .nav-cta-mobile,
  .faq-question,
  .btn,
  .mobile-menu a,
  .footer-col a {
    min-height: 44px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }
}
