/* ═══════════════════════════════════════════════════════════
   RENTATOTE — Complete Website Stylesheet
   Modern, clean, eco-friendly brand aesthetic
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --primary: #1A1A1A;
  --primary-dark: #0A0A0A;
  --primary-light: #2D2D2D;
  --primary-lighter: #444444;
  --primary-pale: #888888;
  --accent: #00d6fc;
  --accent-light: #33e0fd;
  --accent-dark: #00a8c8;
  --dark: #000000;
  --text: #1A1A1A;
  --text-light: #555555;
  --text-lighter: #888888;
  --bg: #FFFFFF;
  --bg-off: #F8F9FA;
  --bg-green: #F0F4FF;
  --bg-cream: #F5F7FF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading span {
  color: var(--primary);
}

.section-subtext {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 214, 252, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255,255,255,0.4);
}

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

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--bg);
  color: var(--primary);
  border-color: var(--bg);
}

.btn-white:hover {
  background: var(--bg-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

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

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

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

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--primary);
  color: white !important;
  border-radius: 50px;
  font-weight: 600;
}

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

.nav-cta:hover {
  background: var(--primary-light) !important;
  color: white !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 214, 252, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 26, 26, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--accent-light);
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.hero-tote-icon {
  font-size: 120px;
  margin-bottom: 16px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 1.5s;
}

.hero-float-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-float-card .card-icon.green {
  background: var(--bg-green);
}

.hero-float-card .card-icon.gold {
  background: var(--bg-cream);
}

.hero-float-card .card-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.hero-float-card .card-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

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

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-off);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.trust-item .trust-icon {
  font-size: 1.3rem;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg);
}

.how-it-works .section-heading,
.how-it-works .section-label {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 20px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-pale), var(--accent), var(--primary-pale));
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.4);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h4 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--bg-off);
}

.pricing .section-heading,
.pricing .section-label {
  text-align: center;
}

.pricing-compare {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-compare p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-cream);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-dark);
}

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

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 214, 252, 0.15);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-card .plan-emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
  margin-top: 8px;
}

.pricing-card.popular .plan-emoji {
  margin-top: 24px;
}

.pricing-card .plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-card .plan-totes {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.pricing-card .plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card .plan-price sup {
  font-size: 1.4rem;
  font-weight: 700;
  top: -1rem;
}

.pricing-card .plan-period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card .plan-features {
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

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

.pricing-card .plan-features .check {
  color: var(--primary-lighter);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

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

/* Savings callout */
.pricing-savings {
  margin-top: 48px;
  text-align: center;
}

.savings-box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 20px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.savings-box .savings-icon {
  font-size: 2.5rem;
}

.savings-box .savings-text h4 {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.savings-box .savings-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US / BENEFITS
   ═══════════════════════════════════════════════════════════ */
.benefits {
  padding: 100px 0;
  background: var(--bg);
}

.benefits .section-heading,
.benefits .section-label {
  text-align: center;
}

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

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

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

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.benefit-icon.green { background: var(--bg-green); }
.benefit-icon.gold { background: var(--bg-cream); }
.benefit-icon.blue { background: #EFF6FF; }

.benefit-card h4 {
  margin-bottom: 10px;
  color: var(--dark);
}

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

/* ═══════════════════════════════════════════════════════════
   USE CASES
   ═══════════════════════════════════════════════════════════ */
.use-cases {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
}

.use-cases .section-label {
  color: var(--accent-light);
  text-align: center;
}

.use-cases .section-heading {
  color: white;
  text-align: center;
}

.use-cases .section-subtext {
  color: rgba(255,255,255,0.65);
}

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

.use-case-card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: 1px solid var(--accent-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.use-case-card:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  transform: translateY(-4px);
}

.use-case-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.use-case-card h4 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.use-case-card p {
  color: rgba(10,10,10,0.8);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SUSTAINABILITY / ABOUT
   ═══════════════════════════════════════════════════════════ */
.sustainability {
  padding: 100px 0;
  background: var(--bg);
}

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

.sustain-visual {
  background: var(--bg-green);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
}

.sustain-big-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.sustain-big-label {
  font-size: 1rem;
  color: var(--primary-light);
  font-weight: 600;
}

.sustain-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.sustain-stat {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.sustain-stat .stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.sustain-stat .stat-lbl {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

.sustain-content h2 {
  margin-bottom: 20px;
}

.sustain-content p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.sustain-list {
  margin: 24px 0;
}

.sustain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.sustain-list .check-circle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--bg-green);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq {
  padding: 100px 0;
  background: var(--bg-off);
}

.faq .section-heading,
.faq .section-label {
  text-align: center;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-pale);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT / ORDER SECTION
   ═══════════════════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact .section-heading,
.contact .section-label {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 20px;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-xl);
  padding: 48px;
  color: white;
}

.contact-info h3 {
  color: white;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.contact-info > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method-text .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-method-text .value {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.contact-hours {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-hours h4 {
  color: var(--accent-light);
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-hours p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

/* FORM */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.contact-form > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-lighter);
  box-shadow: 0 0 0 3px rgba(0, 214, 252, 0.2);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-off);
}

.testimonials .section-heading,
.testimonials .section-label {
  text-align: center;
}

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

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

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

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

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

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

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

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

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
  text-align: center;
}

.cta-banner h2 {
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(0,0,0,0.6);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 32px;
}

.cta-banner .btn {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.cta-banner .btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

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

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand .nav-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 320px;
}

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

.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;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--dark);
}

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

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet: keep desktop nav but tighten spacing */
@media (max-width: 860px) and (min-width: 769px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.85rem; }
  .nav-cta { padding: 8px 16px !important; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 1000;
    padding: 12px 20px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-top: 2px solid var(--accent);
  }
  .nav-links.active { 
    display: flex; 
  }
  .nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    padding: 14px 16px;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links a:hover,
  .nav-links a:active {
    background: var(--bg-off);
    color: var(--accent-dark);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    background: var(--primary) !important;
    color: white !important;
    text-align: center !important;
    border-radius: 8px !important;
    margin-top: 8px;
    border-bottom: none !important;
  }
  .nav-cta:hover {
    background: var(--accent) !important;
    color: #000 !important;
  }
  .nav-toggle { 
    display: flex; 
    z-index: 1002;
    position: relative;
  }
  
  .hero { padding: 100px 0 60px; min-height: auto; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-6px); }
  
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .sustain-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .trust-inner { gap: 24px; }
  .savings-box { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 90px 0 50px; }
  .pricing-card { padding: 28px 20px; }
  .contact-info, .contact-form { padding: 32px 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
}
/* ═══════════════════════════════════════════════════════ */
/* HERO PLACEHOLDER IMAGE                                  */
/* ═══════════════════════════════════════════════════════ */
.hero-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.hero-image-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════ */
/* PHOTO STRIP SECTION                                     */
/* ═══════════════════════════════════════════════════════ */
.photo-strip {
  padding: 80px 0;
  background: var(--bg-off);
}

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

.photo-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.16);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-item:hover img {
  transform: scale(1.04);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 24px 16px 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════ */
/* DOLLY ADD-ON STYLES                                     */
/* ═══════════════════════════════════════════════════════ */
.addon-group {
  margin-bottom: 20px;
}

.addon-group > label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.addon-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.addon-option {
  flex: 1;
  min-width: 140px;
  cursor: pointer;
}

.addon-option input {
  display: none;
}

.addon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: var(--bg);
  transition: all 0.2s ease;
  text-align: center;
  cursor: pointer;
}

.addon-option input:checked + .addon-box {
  border-color: var(--accent);
  background: rgba(0, 214, 252, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 214, 252, 0.15);
}

.addon-box:hover {
  border-color: var(--accent);
  background: rgba(0, 214, 252, 0.05);
}

.addon-icon {
  font-size: 1.4rem;
}

.addon-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.addon-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-dark);
}

/* ═══════════════════════════════════════════════════════ */
/* FORM SUCCESS MESSAGE                                    */
/* ═══════════════════════════════════════════════════════ */
.form-success-msg {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-off);
  border-radius: 16px;
  border: 2px solid var(--accent);
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success-msg h3 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 12px;
}

.form-success-msg p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════ */
/* FULL-WIDTH BUTTON                                       */
/* ═══════════════════════════════════════════════════════ */
.btn-full {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Every Occasion highlight */
.c4076,
.section-heading .c4076 {
  color: #00d6fc !important;
}
