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

:root {
  --black: #111111;
  --black2: #1C1C1C;
  --black3: #252525;
  --blue: #5B9BD5;
  --blue-light: #EAF3FB;
  --blue-mid: #B5D4F4;
  --white: #ffffff;
  --gray: #F4F7FB;
  --gray2: #E8EEF5;
  --text: #1a1a1a;
  --text-muted: #666;
  --border: #dde3eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--blue);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo span { color: var(--blue); }
.logo em { font-style: normal; font-weight: 400; font-size: 14px; color: rgba(255,255,255,0.5); margin-left: 4px; }

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 7px 16px;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #4a8bc4 !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

/* HERO */
.hero {
  background: var(--gray);
  border-bottom: 0.5px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--black2); }

.btn-secondary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  margin-left: 12px;
  transition: background 0.2s;
}
.btn-secondary:hover { background: #4a8bc4; }

/* AUTH BOX */
.auth-box {
  background: var(--white);
  border: 0.5px solid var(--blue-mid);
  border-top: 3px solid var(--blue);
  border-radius: 4px;
  padding: 22px;
}

.auth-box h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.auth-box ul { display: flex; flex-direction: column; gap: 8px; }

.auth-box li {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-box li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* INFO STRIP */
.info-strip {
  background: var(--black);
  padding: 12px 24px;
}

.info-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.info-strip span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-strip span strong { color: var(--white); }

/* RETAILER STRIP */
.retailer-strip {
  background: var(--blue-light);
  border-top: 0.5px solid var(--blue-mid);
  border-bottom: 0.5px solid var(--blue-mid);
  padding: 14px 24px;
}

.retailer-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.retailer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #185FA5;
  white-space: nowrap;
}

.retailer-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--white);
  border: 0.5px solid var(--blue-mid);
  border-radius: 2px;
  color: #185FA5;
}

/* SECTIONS */
section {
  padding: 60px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-top: 3px solid var(--black);
  border-radius: 2px;
  padding: 22px;
  transition: border-top-color 0.2s;
}

.svc-card:hover { border-top-color: var(--blue); }

.svc-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.svc-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; }

.svc-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.svc-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PHOTO GRID */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.photo-grid img:first-child {
  grid-row: span 2;
}

/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 48px;
}

.stat {
  padding: 24px;
  text-align: center;
  border-right: 0.5px solid var(--border);
  background: var(--white);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* CTA BAND */
.cta-band {
  background: var(--black);
  padding: 48px 24px;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-band p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}

.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; }

.contact-row h4 { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.contact-row p, .contact-row a { font-size: 14px; color: var(--text-muted); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr { border-bottom: 0.5px solid var(--border); }
.hours-table td { padding: 6px 0; font-size: 13px; color: var(--text-muted); }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--text); }

.map-embed {
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid var(--border);
}

.map-embed iframe { width: 100%; height: 300px; border: none; display: block; }

/* SERVICES PAGE */
.services-full { padding: 60px 24px; }
.services-full-inner { max-width: 1100px; margin: 0 auto; }

.svc-full {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: start;
}

.svc-full:first-child { padding-top: 0; }

.svc-full-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }

.svc-full h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--black); margin-bottom: 12px; }

.svc-full p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }

.brand-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.brand-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; background: var(--blue-light); color: #185FA5; border-radius: 2px; }

/* FORM PAGE */
.form-page { padding: 60px 24px; max-width: 900px; margin: 0 auto; }
.form-page h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.form-page .sub { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }

.zoho-wrap {
  background: var(--gray);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 8px;
}

.zoho-wrap iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: 2px;
  background: var(--white);
}

/* PAGE HERO */
.page-hero {
  background: var(--black);
  padding: 48px 24px;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.page-hero p { font-size: 15px; color: rgba(255,255,255,0.6); }

/* FOOTER */
footer {
  background: var(--black);
  border-top: 3px solid var(--blue);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo span { color: var(--blue); }

.footer-col p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 220px; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col li, .footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 60px; left: 0; right: 0; background: var(--black); padding: 16px 24px; border-top: 0.5px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 10px 0; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: block; }
  header { position: relative; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .auth-box { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 0.5px solid var(--border); }

  .about-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-grid img:first-child { grid-row: span 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .svc-full { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
}
