/* =====================================================
   MAINASARA SUPPLIES CO. LTD — styles.css v4
   Mobile-first, fluid typography, all breakpoints
   ===================================================== */

/* ── CSS Custom Properties ── */
:root {
  --blue:     #0b63b7;
  --blue-dk:  #084d90;
  --green:    #1b8f6b;
  --amber:    #f59e0b;
  --dark:     #0d1b2a;
  --text:     #111827;
  --muted:    #6b7280;
  --border:   rgba(11,99,183,.12);
  --bg:       #f4f7fb;
  --white:    #ffffff;
  --radius:   14px;
  --radius-sm:8px;
  --trans:    .22s ease;
  --shadow:   0 4px 20px rgba(0,0,0,.08);
  --shadow-md:0 10px 36px rgba(0,0,0,.11);
  --shadow-lg:0 22px 60px rgba(0,0,0,.15);
}

/* ── Reset ── */
*,::before,::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; }
ul { list-style:none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  border: none;
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), opacity var(--trans);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(11,99,183,.3);
}
.btn-primary:hover { box-shadow:0 12px 28px rgba(11,99,183,.38); }

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }

.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,.28);
}
.btn-wa:hover { box-shadow:0 12px 28px rgba(37,211,102,.38); }

/* =====================================================
   SECTION HEADER
   ===================================================== */
.sec-hdr { margin-bottom: clamp(24px, 5vw, 40px); }
.sec-hdr h2 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: #0a2540;
  line-height: 1.2;
  margin-bottom: 10px;
}
.sec-hdr p { color: var(--muted); font-size: clamp(14px, 2vw, 16px); max-width: 560px; }
.sec-hdr--light h2 { color: var(--white); }
.sec-hdr--light p { color: rgba(255,255,255,.7); }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px clamp(16px,4vw,32px);
  min-height: 68px;
}

/* ── Brand ── */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.brand-logo {
  width: clamp(40px,6vw,52px);
  height: clamp(40px,6vw,52px);
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.brand-words {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: clamp(13px, 2.2vw, 17px);
  font-weight: 800;
  color: #0a2540;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.brand-sub {
  font-size: clamp(9px, 1.4vw, 11px);
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  text-align: center; /* center-aligned under brand name */
}

/* ── RC pill ── */
.rc-pill {
  background: rgba(11,99,183,.08);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Hamburger ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(11,99,183,.08);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background var(--trans);
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform .24s ease, opacity .24s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav ── */
.hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  transition: background var(--trans), color var(--trans);
  white-space: nowrap;
}
.nav-link:hover { background: rgba(11,99,183,.07); color: var(--blue); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: var(--white) !important;
  border-radius: 20px;
  padding: 8px 18px;
  margin-left: 4px;
  box-shadow: 0 4px 14px rgba(11,99,183,.28);
}
.nav-cta:hover { background: linear-gradient(135deg, var(--blue-dk), #063d74) !important; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: linear-gradient(145deg, #0a2540 0%, #0e3f6e 55%, #0f5132 100%);
  padding: clamp(40px, 8vw, 80px) 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.hero-copy { color: var(--white); }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}

.hero-copy h1 {
  font-size: clamp(26px, 5.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-copy p {
  color: rgba(255,255,255,.75);
  font-size: clamp(14px, 2vw, 17px);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-n { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--white); line-height: 1.1; }
.stat-l { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* ── Slideshow ── */
.hero-media { position: relative; }

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform .8s ease;
}
.slide.active { opacity: 1; transform: scale(1); }

.ss-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  transition: background var(--trans), transform var(--trans);
  z-index: 10;
  color: #0a2540;
}
.ss-btn:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.ss-prev { left: 12px; }
.ss-next { right: 12px; }

.ss-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: background .22s, transform .22s;
}
.ss-dot.active { background: var(--white); transform: scale(1.4); }

/* =====================================================
   ABOUT
   ===================================================== */
.about-sec {
  background: var(--white);
  padding: clamp(48px, 8vw, 80px) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.about-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 30px);
  transition: box-shadow var(--trans), transform var(--trans);
}
.about-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.ac-icon { font-size: 32px; margin-bottom: 14px; }
.about-card h3 { font-size: clamp(16px, 2.5vw, 18px); font-weight: 700; color: #0a2540; margin-bottom: 10px; }
.about-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* =====================================================
   PRODUCTS
   ===================================================== */
.products-sec {
  background: var(--bg);
  padding: clamp(48px, 8vw, 80px) 0;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(14px, 3vw, 22px);
}

.prod-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
  cursor: pointer;
  position: relative;
  outline-offset: 3px;
}
.prod-card:hover  { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prod-card:focus  { outline: 3px solid var(--blue); }
.prod-card:active { transform: translateY(-2px); }

/* card image area */
.pc-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  flex-shrink: 0;
}
.pc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.52) 0%, rgba(0,0,0,0) 55%);
}

.pc-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.pc-new-tag {
  position: absolute;
  top: 12px;
  right: 0;
  background: var(--amber);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px 0 0 4px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.pc-body {
  padding: clamp(16px, 3vw, 20px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pc-body h3 { font-size: clamp(15px, 2.2vw, 17px); font-weight: 700; color: #0a2540; margin-bottom: 7px; }
.pc-body p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }

.view-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: var(--white);
  border: none;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: opacity var(--trans), transform var(--trans);
}
.view-btn:hover { opacity: .88; transform: translateY(-1px); }

.prod-card--new { border: 2px solid rgba(245,158,11,.35); }
.prod-card--new .view-btn { background: linear-gradient(135deg, #f59e0b, #d97706); }

/* =====================================================
   SERVICES
   ===================================================== */
.services-sec {
  background: linear-gradient(145deg, #0a2540, #0e3f6e 60%, #0f5132);
  padding: clamp(48px, 8vw, 80px) 0;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.svc-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 32px);
  transition: background var(--trans), transform var(--trans);
  backdrop-filter: blur(6px);
}
.svc-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }

.svc-icon { font-size: 34px; margin-bottom: 14px; }
.svc-card h3 { font-size: clamp(16px, 2.5vw, 18px); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.svc-card p  { font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.7; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-sec {
  background: var(--white);
  padding: clamp(48px, 8vw, 80px) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
}

.contact-info h2 { font-size: clamp(22px, 4vw, 30px); font-weight: 800; color: #0a2540; margin-bottom: 12px; }
.contact-info > .sec-hdr p { margin-bottom: 24px; }

.cinfo-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.cinfo-list li { display: flex; gap: 12px; align-items: flex-start; }
.ci-ico { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.cinfo-list li span:last-child,
.cinfo-list li a { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.cinfo-list li a:hover { color: var(--blue); }

.contact-map {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}
.map-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.map-pin { font-size: 40px; }
.map-header h3 { font-size: clamp(17px, 3vw, 20px); font-weight: 700; color: #0a2540; margin-bottom: 2px; }
.map-header p  { font-size: 13px; color: var(--muted); }
.contact-map > p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 8px; }
.map-note { font-size: 13px; color: #9ca3af; margin-top: 4px; }
.map-wa {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid rgba(27,143,107,.25);
  border-radius: 10px;
  transition: background var(--trans), transform var(--trans);
}
.map-wa:hover { background: rgba(27,143,107,.06); transform: translateY(-2px); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--dark); }

.ftr-top { padding: clamp(48px, 8vw, 72px) 0 clamp(36px, 6vw, 52px); }

.ftr-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr 1.6fr;
  gap: clamp(28px, 5vw, 44px);
}

.ftr-brand { display: flex; flex-direction: column; }

.ftr-logo {
  width: 58px; height: 58px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.ftr-name { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.ftr-tagline { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 20px; }

.ftr-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  align-self: flex-start;
  transition: opacity var(--trans), transform var(--trans);
  box-shadow: 0 6px 18px rgba(37,211,102,.3);
}
.ftr-wa-btn:hover { opacity: .9; transform: translateY(-2px); }

.ftr-rc {
  margin-top: 16px;
  align-self: flex-start;
  background: rgba(11,99,183,.3);
  color: rgba(255,255,255,.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 12px;
  border-radius: 999px;
}

.ftr-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.35); font-weight: 700; margin-bottom: 18px; }
.ftr-col ul { display: flex; flex-direction: column; gap: 10px; }
.ftr-col li { font-size: 13.5px; color: rgba(255,255,255,.6); }
.ftr-col li a { color: rgba(255,255,255,.6); transition: color var(--trans); }
.ftr-col li a:hover { color: var(--white); }

.ftr-contact-col h4 { margin-bottom: 18px; }
.ftr-ci { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 13px; line-height: 1.55; }
.ftr-ci span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.ftr-ci a { color: rgba(255,255,255,.6); transition: color var(--trans); }
.ftr-ci a:hover { color: var(--white); }

.ftr-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.ftr-bottom-inner { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,.32); flex-wrap: wrap; }
.ftr-sep { color: rgba(255,255,255,.15); }

/* =====================================================
   PRODUCT MODAL
   ===================================================== */
.pm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2,10,30,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: clamp(12px, 4vw, 24px);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.pm-backdrop:not([hidden]) { 
  opacity: 1; 
  pointer-events: auto;
  visibility: visible;
}

.pm-card {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
  transform: translateY(20px) scale(.97);
  transition: transform .3s ease;
}
.pm-backdrop:not([hidden]) .pm-card { transform: translateY(0) scale(1); }

.pm-img-hdr {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
  background-color: var(--blue);
}
.pm-img-hdr::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.58) 100%);
}

.pm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(255,255,255,.92);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  transition: background var(--trans), transform var(--trans);
  color: #333;
}
.pm-close:hover { background: #fff; transform: scale(1.1); }

.pm-title-overlay {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 5;
  color: #fff;
}
.pm-title-overlay .pm-icon { font-size: 22px; display: block; margin-bottom: 4px; }
.pm-title-overlay h2 { font-size: clamp(18px, 4vw, 24px); font-weight: 800; margin: 0; line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,.5); }

.pm-body {
  padding: clamp(18px, 4vw, 26px);
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
}

.pm-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Accordion */
.pm-sections { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }

.pm-section {
  border: 1px solid rgba(11,99,183,.14);
  border-radius: 12px;
  overflow: hidden;
}

.pm-toggle {
  width: 100%;
  background: rgba(11,99,183,.04);
  border: none;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a2540;
  text-align: left;
  transition: background var(--trans);
}
.pm-toggle:hover { background: rgba(11,99,183,.08); }
.pm-section.open > .pm-toggle { background: rgba(11,99,183,.09); color: var(--blue); }

.pm-chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}
.pm-section.open .pm-chev { transform: rotate(180deg); }

.pm-items { list-style: none; padding: 0; margin: 0; max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.pm-section.open .pm-items { max-height: 700px; }

.pm-items li {
  padding: 9px 16px 9px 36px;
  position: relative;
  font-size: 13.5px;
  color: var(--muted);
  border-top: 1px solid rgba(11,99,183,.06);
  line-height: 1.5;
}
.pm-items li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 9px;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}

.pm-wa-btn {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: opacity var(--trans), transform var(--trans);
  box-shadow: 0 8px 24px rgba(37,211,102,.28);
  letter-spacing: .2px;
}
.pm-wa-btn:hover { opacity: .9; transform: translateY(-2px); }

/* =====================================================
   RESPONSIVE — MOBILE FIRST
   ===================================================== */

/* ── Medium phones (≥480px) ── */
@media (min-width: 480px) {
  .hero-btns .btn { min-width: 140px; }
}

/* ── Tablets (≥768px) ── */
@media (min-width: 768px) {
  .about-grid  { grid-template-columns: repeat(3, 1fr); }
  .svc-grid    { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Laptops (≥1024px) ── */
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .ftr-grid   { grid-template-columns: 1.8fr 1fr 1.4fr 1.6fr; }
}

/* ── Max-width breakpoints (tablet and below) ── */

/* Mobile nav — tablets ≤900px */
@media (max-width: 900px) {
  .rc-pill { display: none; }
}

/* Mobile nav ≤768px */
@media (max-width: 768px) {
  /* Header */
  .burger { display: flex; }
  .brand-sub { display: none; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 400;
    pointer-events: none;
    opacity: 0;
    transition: opacity .22s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }

  .nav-link {
    font-size: 20px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 14px;
    width: min(320px, 80vw);
    text-align: center;
    border: 1px solid rgba(11,99,183,.1);
    background: rgba(11,99,183,.03);
  }
  .nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-dk)) !important;
    border-color: transparent !important;
    color: var(--white) !important;
  }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy  { order: 2; text-align: center; }
  .hero-media { order: 1; }
  .hero-copy p  { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-copy h1 { text-align: center; }

  /* Products — 2 columns on tablet */
  .prod-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Modal — sheet from bottom */
  .pm-backdrop { align-items: flex-end; padding: 0; }
  .pm-card { max-height: 93vh; border-radius: 20px 20px 0 0; max-width: 100%; }
  .pm-img-hdr { height: 170px; }
}

/* Small phones ≤480px */
@media (max-width: 480px) {
  /* Products — single column */
  .prod-grid { grid-template-columns: 1fr; }

  /* Footer — single column */
  .ftr-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }

  /* Hero stats — compact */
  .stat-div { display: none; }
  .hero-stats { gap: 20px; }
}

/* Very small phones ≤360px */
@media (max-width: 360px) {
  .hdr-inner { padding: 8px 12px; }
  .brand-name { font-size: 13px; }
  .brand-logo { width: 36px; height: 36px; }
  .hero-copy h1 { font-size: 22px; }
  .pm-toggle { font-size: 13px; }
}

/* Landscape mobile */
@media (orientation: landscape) and (max-height: 600px) {
  .hero { padding: 24px 0; }
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-copy { order: 1; text-align: left; }
  .hero-media { order: 2; }
  .hero-btns { justify-content: flex-start; }
  .hero-stats { justify-content: flex-start; }
  .hero-copy h1 { text-align: left; }
  .slideshow { aspect-ratio: 16/9; }
  .pm-backdrop { align-items: center; padding: 12px; }
  .pm-card { max-height: 95vh; border-radius: 20px; max-width: 700px; }
  .pm-img-hdr { height: 130px; }
}

/* Print */
@media print {
  .site-header, .hero, footer, .view-btn, .burger { display: none; }
  body { background: #fff; font-size: 12pt; }
}

.svc-svg {
  display: block;
  margin: 0 auto 1.25rem;
  color: var(--primary);
  opacity: 0.9;
}
.svc-card:hover .svc-svg {
  color: var(--secondary);
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.ci-svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-right: 12px;
}
