/* Jangbadisaparati.ge — Oxygen concentrator rental & sales */

:root {
  --navy: #0a3d56;
  --teal: #0d6e7f;
  --teal-mid: #14919b;
  --cyan: #1eb3c0;
  --mint: #e8f7f8;
  --soft: #f3f8fb;
  --white: #ffffff;
  --text: #1b2b38;
  --muted: #5a6f7d;
  --line: #d7e4ec;
  --success: #1a8f6e;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe57;
  --danger-soft: #fff4e8;
  --shadow: 0 10px 30px rgba(10, 61, 86, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 61, 86, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 78px;
  --font: "Noto Sans Georgian", "Noto Sans", system-ui, -apple-system, sans-serif;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.9rem;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-weight: 800;
}

h1 { font-size: clamp(1.85rem, 4vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

/* Top bar */
.topbar {
  background: var(--navy);
  color: #d7eef3;
  font-size: 0.9rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  font-weight: 600;
}

.topbar-phones {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.topbar-note {
  opacity: 0.9;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.topbar-social a {
  opacity: 0.95;
}

.topbar-social a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215, 228, 236, 0.8);
  height: var(--header-h);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy), var(--teal-mid));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(10, 61, 86, 0.22);
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-text strong {
  color: var(--navy);
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-text span {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

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

.nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.nav a:hover {
  background: var(--mint);
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switch {
  display: inline-flex;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem;
}

.lang-switch button {
  min-width: 42px;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--muted);
}

.lang-switch button.active {
  background: var(--navy);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  box-shadow: 0 10px 22px rgba(10, 61, 86, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(10, 61, 86, 0.28);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--mint);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(30, 179, 192, 0.18), transparent 40%),
    linear-gradient(160deg, #071f2d 0%, #0a3d56 45%, #0d6e7f 100%);
  color: #fff;
  padding: 4.5rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("../images/soft-medical.jpg") center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "intro card"
    "details card";
  gap: 1.1rem 2.5rem;
  align-items: center;
}

.hero-intro { grid-area: intro; }
.hero-card { grid-area: card; align-self: center; }
.hero-details { grid-area: details; }

.hero-intro .lead {
  margin-bottom: 0;
}

.hero-details .check-list {
  margin-top: 0.35rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  display: inline-block;
  color: #9fe4ec;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 1.8rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

.check-list.dark li {
  color: var(--text);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  color: #7dffb0;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.check-list.dark .check-icon {
  background: rgba(26, 143, 110, 0.12);
  color: var(--success);
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 1rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}

.hero-card img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.hero-badge {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.hero-badge span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-contact {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-contact strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #fff;
}

.phone-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1rem;
}

.phone-links a {
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
}

.phone-links small {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9fe4ec;
}

/* Feature strip */
.feature-strip {
  margin-top: -2.2rem;
  position: relative;
  z-index: 2;
}

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

.feature-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.feature-pill .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-pill strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.feature-pill span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Cards */
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

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

.product-card.featured {
  border-color: rgba(13, 110, 127, 0.35);
  box-shadow: 0 16px 40px rgba(13, 110, 127, 0.14);
}

.product-media {
  position: relative;
  background: linear-gradient(180deg, #eaf4f7, #fff);
  padding: 1.25rem;
}

.product-media img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
}

.price-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(10, 61, 86, 0.25);
}

.price-tag em {
  font-style: normal;
  opacity: 0.8;
  font-weight: 600;
  font-size: 0.82rem;
}

.product-body {
  padding: 1.4rem 1.4rem 1.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.product-body h3 {
  margin: 0;
}

.product-body .check-list {
  margin: 0;
  flex: 1;
}

.product-body .check-list li {
  font-weight: 500;
  font-size: 0.95rem;
}

.warranty-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--danger-soft);
  color: #9a5b12;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  margin: 1.5rem auto 0;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.why-card .content {
  padding: 1.2rem 1.2rem 1.35rem;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.why-card p {
  margin: 0;
  font-size: 0.92rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.split-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.split-media .caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(7, 31, 45, 0.78);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.stat {
  background: var(--mint);
  border-radius: 16px;
  padding: 1rem 0.85rem;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.bullet-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
}

.bullet-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text);
  font-weight: 500;
}

.bullet-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.note-box {
  margin-top: 1.4rem;
  background: #fff8e8;
  border: 1px solid #f0d7a2;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  color: #7a5310;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Accessories */
.accessories {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.accessories-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.chip {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.accessories-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.accessories-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(10, 61, 86, 0.04);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.faq-question .chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
  transition: 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
  background: var(--navy);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071f2d, #0a4d68 55%, #0d6e7f);
  color: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero2.jpg") center/cover no-repeat;
  opacity: 0.14;
}

.cta-band > * {
  position: relative;
}

.cta-band h2,
.cta-band p,
.cta-band strong {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
}

.cta-phones {
  display: grid;
  gap: 0.7rem;
}

.cta-phones a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 0.95rem 1.1rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-align: center;
}

.cta-phones a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.location-card {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-info {
  padding: 1.8rem 1.7rem;
}

.location-info h3 {
  margin-bottom: 0.65rem;
}

.location-meta {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 0.3rem;
}

.location-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 600;
}

.location-meta a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.location-map {
  min-height: 320px;
  background: var(--soft);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Footer */
.footer {
  background: #071f2d;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 7rem;
}

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

.footer h3,
.footer strong {
  color: #fff;
}

.footer a {
  color: #c9ebf0;
}

.footer a:hover {
  color: #fff;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-follow {
  margin: 1rem 0 0.55rem;
  color: #fff !important;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.social-tiktok:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.social-facebook:hover {
  border-color: #4e8ef7;
  background: rgba(24, 119, 242, 0.28);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-address {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-warning {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-copy {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating actions */
.float-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 5.5rem;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: 0.2s ease;
}

.float-whatsapp:hover {
  transform: scale(1.06);
}

.float-whatsapp svg {
  width: 30px;
  height: 30px;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}

.mobile-cta .btn {
  flex: 1;
  padding: 0.8rem 0.6rem;
  font-size: 0.88rem;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(7, 31, 45, 0.42);
  z-index: 999;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-panel {
  background: #fff;
  width: min(88vw, 340px);
  margin-left: auto;
  height: 100%;
  padding: 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav-panel a {
  padding: 0.9rem 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--navy);
}

.mobile-nav-panel a:hover {
  background: var(--mint);
}

.mobile-nav-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }

/* Responsive */
@media (max-width: 980px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn-primary { display: none; }

  .hero-grid,
  .split,
  .accessories,
  .cta-band,
  .location-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-intro,
  .hero-card,
  .hero-details {
    grid-area: auto;
  }

  .feature-strip .container,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card img {
    height: 260px;
  }

  .split-media img {
    height: 300px;
  }
}

@media (max-width: 720px) {
  :root { --header-h: 70px; }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .topbar-note { display: none; }

  .logo-text span { display: none; }

  .cards-2,
  .feature-strip .container,
  .why-grid,
  .chip-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .section { padding: 3.25rem 0; }

  /* Mobile: headline + subtitle, then compact product image, then CTA */
  .hero {
    padding: 1.1rem 0 2.2rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .hero-intro {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0.35rem;
  }

  /* Mobile order: headline -> short subtitle -> image below */
  .hero-intro .hero-subtitle {
    display: none;
  }

  .hero h1 {
    order: 1;
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 0;
  }

  .hero-intro .lead {
    order: 2;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
  }

  .hero-card {
    padding: 0.55rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
  }

  .hero-card img {
    height: min(30vw, 175px);
    min-height: 135px;
    object-fit: contain;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
    border-radius: 14px;
  }

  .hero-badge {
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.55rem;
  }

  .hero-badge span {
    padding: 0.35rem 0.55rem;
    font-size: 0.7rem;
  }

  .hero-details .check-list {
    gap: 0.45rem;
    margin: 0.35rem 0 1rem;
  }

  .hero-details .check-list li {
    font-size: 0.9rem;
  }

  .hero-contact {
    margin-top: 0.85rem;
    padding-top: 0.9rem;
  }

  .feature-strip {
    margin-top: -1.2rem;
  }

  .feature-pill {
    padding: 0.95rem 1rem;
  }

  .product-card {
    border-radius: 20px;
  }

  .product-media {
    padding: 1rem;
  }

  .product-media img {
    height: 210px;
    object-fit: contain;
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .cta-band { padding: 1.6rem; }

  .location-info {
    padding: 1.35rem 1.2rem;
  }

  .mobile-cta { display: flex; }

  .float-whatsapp { bottom: 5.2rem; }

  .footer { padding-bottom: 7.5rem; }

  .btn-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product-card,
  .btn,
  .float-whatsapp {
    transition: none;
  }
}
