/* ===== JAR2 RESTORATION — STYLESHEET ===== */
/* Aesthetic: Industrial-trusted, confident, clean utility */
/* Palette: Deep navy + safety orange + clean white */

:root {
  --navy: #0a1628;
  --navy-mid: #122040;
  --navy-light: #1e3460;
  --orange: #f97316;
  --orange-dark: #ea6a00;
  --orange-light: #fff3e8;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-light: #eaecf0;
  --gray-mid: #8a95a5;
  --gray-dark: #3d4a5c;
  --text: #1a2332;
  --text-light: #5a6778;
  --border: rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.35); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-nav {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  padding: 9px 20px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--orange-dark); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--off-white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 14px 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo-sub {
  color: var(--orange);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.hamburger {
  display: none;
  background: none; border: none;
  color: var(--white); font-size: 1.5rem;
  cursor: pointer; margin-left: auto;
}
.mobile-menu {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 12px 24px 20px;
  background: var(--navy-mid);
}
.mobile-menu a {
  color: rgba(255,255,255,0.82);
  font-size: 1rem; font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.15s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: white; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 64px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.accent { color: var(--orange); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 24px;
  width: fit-content;
}
.stat { padding: 0 20px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.12);
}
.hero-visual {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
  padding-left: 24px;
}
.equipment-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}
.equipment-card:hover { background: rgba(255,255,255,0.09); transform: translateX(6px) !important; }
.eq-icon { font-size: 1.8rem; flex-shrink: 0; }
.eq-info strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.eq-info span {
  color: var(--orange);
  font-size: 0.82rem;
  font-family: var(--font-mono);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.floating { animation: float 4s ease-in-out infinite; }
.delay-1 { animation-delay: 1.3s; }
.delay-2 { animation-delay: 2.6s; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--off-white); }
.steps {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: 56px;
}
.step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 20px; right: 24px;
}
.step h3 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p { color: var(--text-light); font-size: 0.97rem; line-height: 1.65; }
.step-arrow {
  font-size: 1.8rem; color: var(--orange);
  padding: 0 8px; margin-top: 40px;
  flex-shrink: 0;
}

/* ===== BUNDLES ===== */
.bundles-preview { background: var(--white); }
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.bundle-card {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.2s ease;
  background: var(--white);
}
.bundle-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--orange); }
.bundle-card.featured {
  border-color: var(--orange);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.bundle-card.featured h3 { color: var(--white); }
.bundle-card.featured p { color: rgba(255,255,255,0.7); }
.bundle-card.featured .bundle-includes li { color: rgba(255,255,255,0.85); }
.bundle-card.featured .price-from { color: rgba(255,255,255,0.5); }
.bundle-card.featured .price-num { color: var(--orange); }
.bundle-card.featured .price-per { color: rgba(255,255,255,0.5); }
.bundle-badge {
  position: absolute; top: -12px; left: 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.bundle-badge.best {
  background: var(--orange);
}
.bundle-icon { font-size: 2.5rem; margin-bottom: 16px; }
.bundle-card h3 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.bundle-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.55;
}
.bundle-includes {
  list-style: none;
  margin-bottom: 24px;
}
.bundle-includes li {
  font-size: 0.88rem;
  color: var(--gray-dark);
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-light);
}
.bundle-card.featured .bundle-includes li { border-color: rgba(255,255,255,0.1); }
.bundle-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 20px;
}
.price-from { font-size: 0.8rem; color: var(--gray-mid); }
.price-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.price-per { font-size: 0.82rem; color: var(--gray-mid); }
.bundles-cta { text-align: center; margin-top: 40px; }

/* ===== CALCULATOR ===== */
.calculator-section { background: var(--off-white); }
.calc-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.savings-display {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 28px;
  box-shadow: var(--shadow);
}
.savings-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
  color: var(--text-light);
}
.savings-contractor {
  font-weight: 600; color: var(--gray-dark);
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.5);
}
.savings-jar2 {
  font-weight: 600; color: var(--orange);
}
.savings-total {
  display: flex; justify-content: space-between;
  padding: 16px 0 0;
  font-size: 1rem; font-weight: 600;
  color: var(--navy);
}
.savings-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #22c55e;
}
.calc-inputs { display: flex; flex-direction: column; gap: 24px; }
.calc-field label {
  display: block;
  font-size: 0.88rem; font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
input[type="range"] {
  width: 100%; height: 6px;
  accent-color: var(--orange);
  cursor: pointer;
}
.range-val {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--orange);
  margin-top: 6px;
}
.damage-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.dmg-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--gray-dark);
}
.dmg-btn.active, .dmg-btn:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.dmg-btn.active { border-color: var(--orange); background: var(--orange); }

/* ===== WHY JAR2 ===== */
.why { background: var(--navy); }
.why .section-h2 { color: var(--white); }
.why .section-label { color: var(--orange); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.2s;
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-3px);
}
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h4 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testi-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testi-author span { font-size: 0.78rem; color: var(--gray-mid); }

/* ===== BLOG PREVIEW ===== */
.blog-preview { background: var(--off-white); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  border: 1.5px solid var(--gray-light);
  transition: all 0.2s;
  cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow); border-color: var(--orange); transform: translateY(-3px); }
.blog-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 100px;
  margin-bottom: 14px; width: fit-content;
}
.blog-card h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.blog-card p {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.6; margin-bottom: 16px;
}
.read-more {
  font-size: 0.85rem; font-weight: 600;
  color: var(--orange);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 80px 0;
}
.cta-content { text-align: center; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px; margin: 0 auto;
}

/* ===== RENTALS PAGE ===== */
.rentals-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 48px;
}
.rental-card {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  background: var(--white);
  transition: all 0.2s;
}
.rental-card:hover { box-shadow: var(--shadow-lg); border-color: var(--orange); }
.rental-header {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 16px;
}
.rental-price-block { text-align: right; }
.rental-from { font-size: 0.78rem; color: var(--gray-mid); display: block; }
.rental-price {
  font-family: var(--font-display);
  font-size: 2.2rem; line-height: 1;
  color: var(--orange);
}
.rental-per { font-size: 0.8rem; color: var(--gray-mid); }
.rental-card h3 {
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.rental-card .desc {
  font-size: 0.92rem; color: var(--text-light);
  margin-bottom: 20px; line-height: 1.6;
}
.rental-items {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 24px;
}
.rental-items li {
  font-size: 0.85rem; color: var(--gray-dark);
  display: flex; align-items: center; gap: 6px;
}
.rental-items li::before {
  content: '✓';
  color: var(--orange); font-weight: 700; font-size: 0.8rem;
}
.period-btns {
  display: flex; gap: 8px; margin-bottom: 20px;
}
.period-btn {
  flex: 1; padding: 8px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; text-align: center;
  transition: all 0.15s;
  color: var(--gray-dark);
}
.period-btn.active { border-color: var(--orange); background: var(--orange-light); color: var(--orange-dark); }
.period-btn:hover { border-color: var(--navy); }

/* ===== SHOP PAGE ===== */
.shop-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.shop-card {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--white);
  transition: all 0.2s;
  display: flex; flex-direction: column;
}
.shop-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.shop-img {
  width: 100%; height: 180px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; margin-bottom: 16px;
  overflow: hidden;
}
.shop-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
}
.shop-category {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.shop-card h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
  line-height: 1.3;
}
.shop-card p {
  font-size: 0.85rem; color: var(--text-light);
  line-height: 1.55; margin-bottom: 16px; flex: 1;
}
.shop-card-footer {
  display: flex; justify-content: space-between;
  align-items: center;
}
.shop-price {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--navy);
}
.amazon-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ff9900;
  color: var(--white);
  font-size: 0.8rem; font-weight: 700;
  padding: 7px 14px; border-radius: 8px;
  transition: all 0.15s;
}
.amazon-link:hover { background: #e68900; transform: scale(1.03); }

/* ===== BLOG PAGE ===== */
.blog-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 36px 0 48px;
}
.filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
  color: var(--gray-dark);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.blog-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-list-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-light);
  transition: all 0.2s;
  display: flex; flex-direction: column;
}
.blog-list-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--orange); }
.blog-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-body .blog-tag { margin-bottom: 12px; }
.blog-body h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
  line-height: 1.4; flex: 1;
}
.blog-body p {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.6; margin-bottom: 14px;
}
.blog-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.78rem; color: var(--gray-mid);
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: flex-start;
}
.contact-info h3 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin-bottom: 20px;
}
.contact-item {
  display: flex; gap: 14px;
  margin-bottom: 24px;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong {
  display: block; font-size: 0.92rem;
  color: var(--navy); margin-bottom: 2px;
}
.contact-item p { font-size: 0.88rem; color: var(--text-light); }
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 18px 0;
}
.faq-q {
  font-size: 0.97rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
  cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center;
}
.faq-a {
  font-size: 0.9rem; color: var(--text-light);
  line-height: 1.65;
  display: none;
}
.faq-a.open { display: block; padding-top: 4px; }
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--navy); margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 64px 40px; min-height: auto; }
  .hero-visual { display: none; }
  .bundle-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 24px; }
  .hero-h1 { font-size: 3rem; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 0; margin: 0 auto; }
  .bundle-grid, .why-grid, .testi-grid, .blog-grid, .blog-list, .shop-grid { grid-template-columns: 1fr; }
  .rentals-grid { grid-template-columns: 1fr; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .rental-items { grid-template-columns: 1fr; }
}
