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

:root {
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --cyan-800: #155e75;
  --cyan-900: #164e63;
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --white: #ffffff;
  --dark: #0a1628;
  --text-main: #0f172a;
  --text-muted: #475569;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(6, 182, 212, 0.12);
  --shadow-lg: 0 10px 40px rgba(6, 182, 212, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sky-50);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary { background: var(--cyan-500); color: white; box-shadow: 0 4px 12px rgba(6,182,212,0.3); }
.btn-primary:hover { background: var(--cyan-600); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(6,182,212,0.4); }

.btn-outline { background: transparent; border: 2px solid var(--cyan-500); color: var(--cyan-700); }
.btn-outline:hover { background: var(--cyan-50); border-color: var(--cyan-600); color: var(--cyan-800); }

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 100px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cyan-100);
  padding: 16px 5%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--cyan-700);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 1rem; font-weight: 500; color: var(--text-muted); transition: 0.2s; -webkit-tap-highlight-color: transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan-600); font-weight: 700; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--cyan-700); -webkit-tap-highlight-color: transparent; padding: 8px; }

/* ── HERO ── */
.hero {
  padding: 180px 5% 120px;
  background: linear-gradient(160deg, var(--cyan-50) 0%, var(--white) 100%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(circle at top right, rgba(34,211,238,0.1), transparent 60%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-100);
  color: var(--cyan-700);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hero-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.5rem, 6vw, 3.5rem); margin-bottom: 24px; line-height: 1.15; }
.hero-title span { color: var(--cyan-500); }
.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}
.hero-stats { display: flex; gap: 48px; margin-top: 60px; padding-top: 32px; border-top: 1px solid rgba(6, 182, 212, 0.2); }
.stat-item strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; color: var(--cyan-700); font-weight: 800; line-height: 1; }
.stat-item span { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; display: block; font-weight: 500; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BRANDS MARQUEE ── */
.brands { background: var(--white); padding: 80px 0; border-bottom: 1px solid var(--cyan-100); overflow: hidden; }

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin-top: 48px;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  transition: all 0.3s ease;
  cursor: default;
  flex-shrink: 0;
}

.brand-logo-img {
  max-height: 48px;
  max-width: 96px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-item:hover .brand-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.15);
}

.brand-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
  white-space: nowrap;
}

.brand-item:hover .brand-name {
  color: var(--cyan-600);
}

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.service-card { background: var(--white); padding: 40px; border-radius: var(--radius); border: 1px solid var(--cyan-100); transition: 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column;}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--cyan-300); }
.service-icon { width: 64px; height: 64px; background: var(--cyan-100); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 24px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); margin-bottom: 24px; font-size: 1rem; line-height: 1.6; flex-grow: 1; }
.service-link { color: var(--cyan-600); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; font-size: 0.95rem; }

/* ── FEATURED SERVICE CARDS ── */
.featured-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.featured-svc-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 20px;
  border: 2px solid var(--cyan-200);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.featured-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-400);
}

.featured-svc-card.popular-card {
  border-color: var(--cyan-400);
  box-shadow: 0 6px 30px rgba(6, 182, 212, 0.12);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan-500);
  color: white;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.featured-svc-icon {
  width: 64px;
  height: 64px;
  background: var(--cyan-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: 0.3s;
}

.featured-svc-card:hover .featured-svc-icon {
  background: var(--cyan-200);
  transform: scale(1.08);
}

.featured-svc-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.featured-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2px;
  line-height: 1.5;
}

.featured-price strong {
  color: var(--cyan-700);
  font-weight: 800;
  font-size: 1.15rem;
}

.featured-price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.featured-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}

.featured-features li {
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--cyan-100);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

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

.featured-features li .check-icon {
  color: var(--cyan-500);
  font-size: 0.85rem;
  flex-shrink: 0;
  font-weight: 700;
}

.featured-install-fee {
  background: var(--cyan-50);
  border: 1px dashed var(--cyan-300);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--cyan-800);
  font-weight: 600;
}

.featured-install-fee strong {
  font-weight: 800;
}

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

/* ── SERVICE LIST CARDS ── */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.svc-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--cyan-100);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-300);
}

.svc-card-icon {
  width: 52px;
  height: 52px;
  background: var(--cyan-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: 0.3s;
}

.svc-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan-700);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-card:hover .svc-card-icon {
  background: var(--cyan-200);
  transform: scale(1.1);
}

.svc-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.svc-card .badge-populer-card {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--cyan-500);
  color: white;
  font-size: 0.6rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* ── RENTAL PRICING ── */
.rental { background: linear-gradient(180deg, var(--white) 0%, var(--cyan-50) 100%); }
.pricing-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; margin-top: 30px; }

.price-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 24px;
  border: 2px solid var(--cyan-100);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.popular { border-color: var(--cyan-400); box-shadow: var(--shadow-lg); transform: scale(1.03); z-index: 2; }
.badge-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--cyan-500); color: white; padding: 6px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; white-space: nowrap; }

.price-unit { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.price-type { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.5; min-height: 40px; display: flex; align-items: center; justify-content: center;}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--cyan-200);
  font-size: 1rem;
  font-weight: 500;
}

.price-row.main-price {
  background-color: var(--cyan-50);
  margin: 0 -20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cyan-200);
  border-top: 1px solid var(--cyan-200);
  font-size: 1.1rem;
}
.price-row.main-price span:last-child {
  font-weight: 800;
  color: var(--cyan-700);
  font-size: 1.25rem;
}

.price-row.installation-fee span:last-child {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ── SECOND HAND TOGGLE ── */
.secondhand-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.secondhand-section.show {
  max-height: 1200px;
  opacity: 1;
  margin-top: 40px;
}

.toggle-secondhand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 14px 32px;
  background: var(--cyan-50);
  border: 2px dashed var(--cyan-400);
  border-radius: 100px;
  color: var(--cyan-700);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.toggle-secondhand-btn:hover {
  background: var(--cyan-100);
  border-color: var(--cyan-500);
}

.toggle-secondhand-btn .toggle-arrow {
  display: inline-block;
  transition: transform 0.3s;
  font-size: 1.1rem;
}

.toggle-secondhand-btn.active .toggle-arrow {
  transform: rotate(180deg);
}

.rental-features { margin-top: 60px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.feature-tag { background: var(--white); padding: 12px 24px; border-radius: 50px; border: 1px solid var(--cyan-200); display: flex; align-items: center; gap: 8px; color: var(--cyan-800); font-weight: 600; font-size: 0.95rem; }

.rental-why { margin-top: 60px; background: white; padding: 48px; border-radius: var(--radius); border: 1px solid var(--cyan-100); }
.rental-why h3 { margin-bottom: 24px; font-size: 1.5rem; }
.rental-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.rental-why-grid h4 { color: var(--cyan-700); margin-bottom: 12px; font-size: 1.2rem; }
.rental-why-grid p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

.condition-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cyan-700);
  margin-top: 50px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 50px; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 182, 212, 0.08);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: var(--radius);
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ── WHY US & FAQ ── */
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 50px; }
.faq-item { background: var(--white); border-radius: 16px; margin-bottom: 16px; border: 1px solid var(--cyan-100); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 24px; background: none; border: none; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.2s; -webkit-tap-highlight-color: transparent; line-height: 1.4; gap: 12px; }
.faq-question:hover { background: var(--sky-50); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 24px; background: var(--sky-50); }
.faq-answer p { padding-bottom: 24px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-question { color: var(--cyan-600); background: var(--cyan-50); }
.icon-toggle { transition: 0.3s; font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.faq-item.active .icon-toggle { transform: rotate(45deg); }

/* ── REVIEWS SECTION ── */
.reviews-section {
  background: var(--sky-50);
}

/* ── CONTACT & MAP ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; margin-top: 50px; }
.contact-info-card { background: var(--white); padding: 40px; border-radius: var(--radius); border: 1px solid var(--cyan-100); }
.contact-info-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; }
.contact-row { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--cyan-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cyan-600); font-size: 1.2rem; flex-shrink: 0; }

/* MAP CONTAINER FIX */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 450px;
  border: 2px solid var(--cyan-200);
  box-shadow: var(--shadow);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* END MAP CONTAINER FIX */

.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag { background: var(--cyan-50); color: var(--cyan-700); padding: 6px 16px; border-radius: 6px; font-size: 0.9rem; font-weight: 500; }
.contact-divider { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--cyan-100); }

/* ── FOOTER ── */
footer { background: var(--dark); color: #94a3b8; padding: 80px 5% 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 48px; margin-bottom: 60px; }
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; color: white; font-weight: 800; margin-bottom: 24px; display: block; text-decoration: none; }
.footer-links li { margin-bottom: 14px; list-style: none; }
.footer-links a { color: #cbd5e1; text-decoration: none; transition: 0.2s; font-size: 0.95rem; -webkit-tap-highlight-color: transparent; }
.footer-links a:hover { color: var(--cyan-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; font-size: 0.9rem; }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a { color: #94a3b8; text-decoration: none; transition: 0.2s; font-size: 0.85rem; -webkit-tap-highlight-color: transparent; }
.footer-bottom-links a:hover { color: var(--cyan-400); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: white; font-size: 1.8rem; transition: 0.3s; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.footer-socials a:hover { color: #22d3ee; }
.footer-grid h4 { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── FAB WHATSAPP ── */
.wa-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 64px; height: 64px; background: #25D366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4); text-decoration: none;
  transition: 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ═══════════════════════════════════════════════
   MOBILE — TABLET (max-width: 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    gap: 0;
  }
  .nav-links.active { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--cyan-100); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 16px 0; font-size: 1.05rem; }
  .mobile-toggle { display: block; }

  .hero { padding: 130px 5% 80px; }
  .hero-title { font-size: 2rem; line-height: 1.2; }
  .hero-desc { font-size: 1.05rem; margin-bottom: 32px; }
  .hero-badge { font-size: 0.82rem; padding: 6px 16px; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; padding: 16px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; margin-top: 40px; padding-top: 24px; }
  .stat-item { flex: 1 1 40%; min-width: 120px; text-align: center; }
  .stat-item strong { font-size: 1.6rem; }
  .stat-item span { font-size: 0.82rem; margin-top: 4px; }

  .section-padding { padding: 70px 0; }
  .section-title { font-size: 1.65rem; margin-bottom: 16px; }
  .section-desc { font-size: 1rem; margin-bottom: 36px; line-height: 1.7; }
  .section-tag { font-size: 0.78rem; margin-bottom: 12px; }

  .brands { padding: 60px 0; }
  .marquee-wrapper { margin-top: 36px; }
  .marquee-track { gap: 36px; animation-duration: 30s; }
  .brand-item { padding: 12px 16px; gap: 8px; }
  .brand-logo-img { max-height: 36px; max-width: 72px; }
  .brand-name { font-size: 0.7rem; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 28px 24px; }
  .service-card h3 { font-size: 1.2rem; }
  .service-card p { font-size: 0.95rem; }

  .featured-services { grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
  .featured-svc-card { padding: 28px 24px; }
  .featured-svc-card h4 { font-size: 1.2rem; }
  .featured-price { font-size: 0.9rem; }
  .featured-price strong { font-size: 1.05rem; }
  .featured-price-note { font-size: 0.78rem; margin-bottom: 18px; }
  .featured-features li { font-size: 0.88rem; padding: 7px 0; }
  .featured-install-fee { font-size: 0.85rem; padding: 10px 14px; }

  .service-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
  .svc-card { padding: 24px 16px; }
  .svc-card-icon { width: 48px; height: 48px; margin-bottom: 14px; }
  .svc-card-icon svg { width: 22px; height: 22px; }
  .svc-card h4 { font-size: 0.95rem; }
  .svc-card p { font-size: 0.82rem; margin-bottom: 16px; }
  .svc-card .btn-sm { font-size: 12px; padding: 9px 16px; }

  .pricing-wrapper { grid-template-columns: 1fr; gap: 28px; }
  .price-card { padding: 32px 24px; }
  .price-card.popular { transform: scale(1); }
  .price-unit { font-size: 1.3rem; }
  .price-type { font-size: 0.9rem; min-height: auto; margin-bottom: 24px; }
  .price-row { font-size: 0.95rem; padding: 14px 0; }
  .price-row.main-price { margin: 0 -16px; padding: 14px 16px; font-size: 1rem; }
  .price-row.main-price span:last-child { font-size: 1.1rem; }
  .price-row.installation-fee span:last-child { font-size: 0.9rem; }
  .rental-features { margin-top: 40px; gap: 10px; }
  .feature-tag { padding: 10px 16px; font-size: 0.85rem; }
  .rental-why { margin-top: 40px; padding: 28px 20px; }
  .rental-why h3 { font-size: 1.25rem; margin-bottom: 20px; }
  .rental-why-grid { grid-template-columns: 1fr; gap: 24px; }
  .rental-why-grid h4 { font-size: 1.1rem; }
  .rental-why-grid p { font-size: 0.95rem; }
  .condition-title { font-size: 1.25rem; margin-top: 40px; }

  .toggle-secondhand-btn { font-size: 0.9rem; padding: 12px 24px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }

  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-card { padding: 28px 20px; }
  .contact-info-card h3 { font-size: 1.25rem; margin-bottom: 24px; }
  .contact-row { gap: 14px; margin-bottom: 22px; }
  .contact-icon { width: 40px; height: 40px; font-size: 1rem; }
  .contact-row strong { font-size: 0.95rem; }
  .contact-row p { font-size: 0.9rem; }
  .map-container { min-height: 280px; }
  .area-tag { font-size: 0.82rem; padding: 5px 12px; }
  .contact-divider { margin-top: 28px; padding-top: 24px; }

  footer { padding: 56px 5% 32px; }
  .footer-grid { gap: 36px; margin-bottom: 40px; grid-template-columns: 1fr 1fr; }
  .footer-logo { font-size: 1.3rem; margin-bottom: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; font-size: 0.85rem; }
  .footer-bottom-links { justify-content: center; gap: 16px; }

  .wa-fab { bottom: 24px; right: 20px; width: 56px; height: 56px; }
  .wa-fab svg { width: 28px; height: 28px; }
}

/* ═══════════════════════════════════════════════
   MOBILE — SMALL PHONES (max-width: 480px)
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {

  .container { padding: 0 16px; }
  nav { padding: 12px 16px; }
  .nav-brand { font-size: 1.15rem; gap: 6px; }
  .hero { padding: 110px 16px 60px; }
  .hero-title { font-size: 1.65rem; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.75rem; padding: 5px 14px; margin-bottom: 20px; }
  .hero-buttons .btn { padding: 14px 20px; font-size: 14px; }
  .hero-stats { gap: 16px; margin-top: 32px; padding-top: 20px; }
  .stat-item { flex: 1 1 42%; }
  .stat-item strong { font-size: 1.35rem; }
  .stat-item span { font-size: 0.75rem; }
  .section-padding { padding: 56px 0; }
  .section-title { font-size: 1.4rem; }
  .section-desc { font-size: 0.92rem; margin-bottom: 28px; }

  .brands { padding: 48px 0; }
  .marquee-track { gap: 28px; animation-duration: 25s; }
  .brand-item { padding: 10px 12px; gap: 6px; }
  .brand-logo-img { max-height: 30px; max-width: 60px; }
  .brand-name { font-size: 0.6rem; }

  .service-card { padding: 24px 20px; }
  .service-icon { width: 52px; height: 52px; font-size: 1.6rem; margin-bottom: 18px; }
  .service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .service-card p { font-size: 0.9rem; margin-bottom: 18px; }

  .featured-services { margin-top: 28px; gap: 20px; }
  .featured-svc-card { padding: 24px 18px; }
  .featured-svc-card h4 { font-size: 1.1rem; margin-bottom: 12px; }
  .featured-price { font-size: 0.85rem; }
  .featured-price strong { font-size: 0.98rem; }
  .featured-price-note { font-size: 0.75rem; margin-bottom: 16px; }
  .featured-features li { font-size: 0.82rem; padding: 6px 0; gap: 8px; }
  .featured-install-fee { font-size: 0.8rem; padding: 8px 12px; margin-bottom: 16px; }

  .service-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
  .svc-card { padding: 20px 12px; }
  .svc-card-icon { width: 42px; height: 42px; margin-bottom: 10px; border-radius: 10px; }
  .svc-card-icon svg { width: 20px; height: 20px; }
  .svc-card h4 { font-size: 0.88rem; }
  .svc-card p { font-size: 0.78rem; margin-bottom: 14px; line-height: 1.4; }
  .svc-card .btn-sm { font-size: 11px; padding: 8px 12px; }

  .price-card { padding: 28px 20px; border-radius: 18px; }
  .price-unit { font-size: 1.15rem; }
  .price-row.main-price { margin: 0 -12px; padding: 12px 12px; font-size: 0.95rem; }
  .price-row.main-price span:last-child { font-size: 1rem; }
  .price-row { font-size: 0.9rem; padding: 12px 0; }
  .feature-tag { padding: 8px 14px; font-size: 0.8rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 28px; }
  .faq-question { padding: 18px 16px; font-size: 0.95rem; }
  .faq-answer p { font-size: 0.9rem; padding-bottom: 18px; }
  .icon-toggle { font-size: 1.3rem; }

  .contact-info-card { padding: 24px 16px; }
  .contact-info-card h3 { font-size: 1.15rem; }
  .map-container { min-height: 220px; }

  footer { padding: 44px 16px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-logo { font-size: 1.2rem; }
  .footer-bottom-links { flex-direction: column; gap: 10px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.45rem; }
  .hero-desc { font-size: 0.9rem; }
  .section-title { font-size: 1.3rem; }
  .brand-logo-img { max-height: 26px; max-width: 50px; }
  .brand-name { font-size: 0.55rem; }
  .stat-item strong { font-size: 1.2rem; }
  .hero-stats { gap: 12px; }
  .gallery-grid { gap: 6px; }
  .btn { font-size: 13px; padding: 13px 18px; }
  .service-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .svc-card p { display: none; }
  .svc-card { padding: 16px 10px; }
  .svc-card-icon { width: 38px; height: 38px; }
  .svc-card-icon svg { width: 18px; height: 18px; }
  .featured-svc-card { padding: 20px 14px; }
  .featured-features li { font-size: 0.78rem; padding: 5px 0; }
}

/* ── TOUCH TARGET ── */
@media (pointer: coarse) {
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .faq-question { min-height: 52px; }
  .service-link { min-height: 44px; display: inline-flex; align-items: center; padding: 4px 0; }
  .footer-links a { display: inline-block; padding: 4px 0; min-height: 36px; }
  .footer-bottom-links a { display: inline-block; padding: 4px 0; min-height: 36px; }
}

/* ── SAFE AREA INSET ── */
@supports (padding: max(0px)) {
  .wa-fab { bottom: max(24px, env(safe-area-inset-bottom)); right: max(20px, env(safe-area-inset-right)); }
  nav { padding-left: max(5%, env(safe-area-inset-left)); padding-right: max(5%, env(safe-area-inset-right)); }
  footer { padding-bottom: max(40px, calc(env(safe-area-inset-bottom) + 16px)); }
}

/* ── LANDSCAPE PHONE FIX ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 100px 5% 50px; }
  .hero-stats { margin-top: 28px; padding-top: 16px; gap: 20px; }
  .section-padding { padding: 50px 0; }
}
