/* ============================================================
   CL Systems Pte Ltd – Site Revamp Stylesheet
   Desktop : faithfully recreates clsystems.com.sg
   Mobile  : clean modern responsive design
   ============================================================ */

/* ── Google Font: Inter ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:      #2a6d9a;
  --accent:       #cc0000;
  --text:         #333333;
  --white:        #ffffff;
  --footer-bg:    #000000;
  --footer-link:  #00ccff;
  --body-bg:      #39414a;
  --sidebar-link: #166db1;
  --container:    1024px;
  --font-omega:   'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Inter', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; }
ul  { list-style: none; }

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

/* Touch targets: min 44×44px on interactive elements */
.nav-menu > li > a { min-height: 44px; display: flex; align-items: center; }
.nav-toggle { min-width: 44px; min-height: 44px; }
.sidebar-nav li a { min-height: 44px; }
.quick-card-links a { min-height: 44px; }

/* ── Body & outer wrapper ───────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  background: var(--body-bg) url('../images/bg.jpg') center top;
}

.site-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--white);
  box-shadow: -4px 0 12px rgba(0,0,0,.35), 4px 0 12px rgba(0,0,0,.35);
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: stretch;
  background: var(--white);
}

.site-logo {
  flex: 0 0 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.site-logo img {
  width: 155px;
  height: 80px;
  object-fit: contain;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.nav-toggle {
  display: none;
}

.nav-menu {
  display: flex;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text);
  white-space: nowrap;
  line-height: 1.2;
}

.nav-menu > li:hover > a,
.nav-menu > li.active > a {
  background: var(--primary);
  color: var(--white);
}

/* Dropdowns */
.nav-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid #ddd;
  box-shadow: 2px 4px 8px rgba(0,0,0,.15);
  z-index: 999;
}

.nav-menu li:hover > ul {
  display: block;
}

.nav-menu li ul li a {
  display: block;
  padding: 7px 12px;
  font-size: 11px;
  color: var(--text);
  white-space: nowrap;
}

.nav-menu li ul li:hover > a {
  background: #eee;
  font-weight: bold;
}

/* ── Hero Slider ────────────────────────────────────────────── */
.hero-wrap {
  background: #f4f4f4;
}

/* LOF slider internals */
#lofslidecontent45 {
  margin: 0 auto;
  display: block;
  position: relative;
}
.lof-main-outer {
  overflow: hidden;
  position: relative;
}
ul.lof-main-wapper {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.lof-main-wapper li {
  float: left;
  display: block;
}
ul.lof-main-wapper li img {
  display: block;
  width: 1001px;
  height: 445px;
}
.preload {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #f4f4f4;
  z-index: 10;
}
.lof-navigator-wapper {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
}
.lof-navigator-outer {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
}
ul.lof-navigator {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex !important;
  width: auto !important;
  gap: 6px;
}
ul.lof-navigator li {
  width: 28px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border-radius: 3px;
  transition: background .3s;
}
ul.lof-navigator li.active {
  background: var(--white);
}
ul.lof-navigator li span { display: none; }

/* ── Quick-link boxes below slider ──────────────────────────── */
.quick-links {
  display: flex;
  gap: 14px;
  padding: 14px 12px 16px;
  background: var(--white);
}

.quick-card {
  flex: 1;
  min-width: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
}

.quick-card-header {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 9px 12px;
}

.quick-card-img { overflow: hidden; }

.quick-card-img img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.quick-card:hover .quick-card-img img { transform: scale(1.04); }

.quick-card-links {
  flex: 1;
  padding: 8px 12px 12px;
  background: #f8f9fb;
  border-top: 2px solid var(--primary);
}

.quick-card-links a {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 0;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text);
  line-height: 1.4;
  border-bottom: 1px solid #e8e8e8;
}

.quick-card-links a:last-child { border-bottom: none; }

.quick-card-links a:hover { color: var(--accent); }

.ql-arrow {
  color: var(--accent);
  font-size: 9px;
  flex-shrink: 0;
  line-height: 1.6;
}

/* ── Partners strip ─────────────────────────────────────────── */
.partners-strip {
  padding: 12px 24px 16px;
  background: var(--white);
}

.partners-strip h2 {
  font-family: var(--font-omega);
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 0 10px 2px;
  color: var(--text);
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-left: 4px;
}

.partners-logos img {
  width: 135px;
  height: auto;
  object-fit: contain;
  display: inline-block;
}

/* ── Page banner bar ────────────────────────────────────────── */
.page-banner {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Interior page 3-column layout ─────────────────────────── */
.interior-wrap {
  display: flex;
  align-items: flex-start;
  width: 95%;
  margin: 0 auto;
  padding: 12px 0 24px;
}

/* Left sidebar */
.sidebar-left {
  width: 257px;
  flex-shrink: 0;
  background: url('../images/lft-abt-us.jpg') no-repeat top left;
  min-height: 200px;
}


.sidebar-left-inner {
  padding-top: 56px;
}

.sidebar-nav li {
  border-bottom: 1px solid #ccc;
}

.sidebar-nav li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8px 10px 14%;
  font-family: var(--font-omega);
  font-size: 14px;
  color: var(--sidebar-link);
  line-height: 20px;
}

.sidebar-nav li a:hover { color: var(--accent); text-decoration: underline; }
.sidebar-nav li a img  { flex-shrink: 0; width: 10px; height: 17px; display: inline; }

/* Main content */
.main-content {
  flex: 1;
  padding: 8px 16px;
  min-width: 0;
}

/* Right sidebar */
.sidebar-right {
  width: 181px;
  flex-shrink: 0;
  background: url('../images/right-abt-us.jpg') no-repeat top left;
  min-height: 200px;
}

.sidebar-right-inner {
  padding: 30px 10px 12px;
  font-size: 12px;
  color: var(--text);
  line-height: 18px;
}

.sidebar-right-inner img {
  width: 153px;
  height: auto;
  margin-bottom: 8px;
}

.sidebar-right-inner h3 {
  font-family: var(--font-omega);
  font-size: 14px;
  color: var(--accent);
  padding: 4px 0 6px;
}

.sidebar-right-inner a {
  color: var(--accent);
  font-size: 12px;
  word-break: break-all;
}

.sidebar-right-inner a:hover { text-decoration: underline; }

/* ── Typography helpers ─────────────────────────────────────── */
.page-heading {
  font-family: var(--font-omega);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 0 10px;
  line-height: 1.2;
}

.page-subheading {
  font-family: var(--font-omega);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 0;
}

.body-text {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 20px;
  margin: 8px 0;
}

.body-text-red {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
  line-height: 18px;
}

.section-heading {
  font-family: var(--font-omega);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.core-heading {
  font-family: var(--font-omega);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.4;
}

.location-bar {
  font-family: var(--font-omega);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  padding: 10px 15px;
  line-height: 1.2;
}

/* ── About Us – mini link cards ─────────────────────────────── */
.mini-cards {
  display: flex;
  gap: 14px;
  margin: 14px 0;
}

.mini-card {
  width: 165px;
  background: url('../images/abt-us-bg.jpg') no-repeat;
  background-size: cover;
  padding: 6px 8px 10px;
}

.mini-card img.card-img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto 4px;
}

.mini-card-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--primary);
  margin: 4px 0;
}

.mini-card-label img { width: 9px; height: 7px; display: inline; }

.mini-card p {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text);
  margin: 4px 0;
  line-height: 16px;
}

.mini-card a.btn-read {
  display: block;
  margin-top: 6px;
}

.mini-card a.btn-read img { width: 85px; height: 25px; display: inline; }

/* ── Feature list ───────────────────────────────────────────── */
.feature-list li {
  padding: 3px 0 3px 16px;
  position: relative;
  font-family: var(--font-omega);
  font-size: 14px;
  color: var(--text);
  line-height: 19px;
}

.feature-list li::before {
  content: '▸';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 12px;
  top: 5px;
}

/* ── Cash recycling: features + image side by side ──────────── */
.cr-layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 10px;
}
.cr-features { flex: 1; min-width: 0; }
.cr-image { flex: 0 0 220px; }
.cr-image img { width: 100%; height: auto; }

@media (max-width: 768px) {
  .cr-layout { flex-direction: column; }
  .cr-image { flex: none; width: 180px; }
}

/* ── Arrow bullet list ───────────────────────────────────────── */
.arrow-list { margin: 6px 0 10px; }
.arrow-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  line-height: 19px;
  padding: 3px 0;
}
.arrow-item img { flex-shrink: 0; width: 14px; height: 11px; margin-top: 4px; display: inline; }

/* ── Partners page ──────────────────────────────────────────── */
.partner-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.partner-item:last-child { border-bottom: none; }

.partner-logo-col {
  flex: 0 0 180px;
  text-align: center;
}

.partner-logo-col img { max-width: 160px; margin: 0 auto; }

.partner-desc h3 {
  font-family: var(--font-omega);
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 8px;
}

.partner-desc p {
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.partner-desc a.visit {
  color: var(--primary);
  font-size: 12px;
  text-decoration: underline;
}

/* ── Contact page ───────────────────────────────────────────── */
.contact-layout {
  display: flex;
  gap: 24px;
  width: 95%;
  margin: 0 auto;
  padding: 16px 0 24px;
}

.contact-info-col { flex: 0 0 320px; }

.contact-info-col h2 {
  font-family: var(--font-omega);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 14px;
}

.contact-entry {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.contact-entry img {
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline;
}

.contact-entry-text {
  font-size: 12px;
  color: var(--text);
  line-height: 18px;
}

.contact-entry-text a { color: var(--accent); }
.contact-entry-text a:hover { text-decoration: underline; }

.contact-form-col { flex: 1; }

.contact-map { margin-top: 12px; }
.contact-map iframe { display: block; max-width: 100%; }
.contact-map small a { font-size: 11px; }

.contact-map-full { width: 100%; }
.contact-map-full iframe { display: block; width: 100%; border: none; }

/* Keep existing .cflite / lite_styles.css intact; just widen it */
.cflite { width: 100% !important; }

/* ── Sitemap ────────────────────────────────────────────────── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px 24px 32px;
  width: 95%;
  margin: 0 auto;
}

.sitemap-col h3 {
  font-family: var(--font-omega);
  font-size: 14px;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.sitemap-col li { padding: 3px 0; }

.sitemap-col li a { font-size: 13px; color: var(--text); }
.sitemap-col li a:hover { color: var(--accent); text-decoration: underline; }

/* ── Thank-you ──────────────────────────────────────────────── */
.thankyou-box {
  padding: 40px 24px;
  text-align: center;
}

.thankyou-box h2 {
  font-family: var(--font-omega);
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 16px;
}

.thankyou-box p {
  font-size: 14px;
  line-height: 22px;
  color: var(--text);
  margin-bottom: 8px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  padding: 0 24px 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: 16px;
  padding-top: 4px;
}

.footer-col h3,
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--white);
  padding: 10px 0 6px 4px;
  margin-bottom: 4px;
}

.footer-col a {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--footer-link);
  padding: 4px 4px;
}
.footer-col address {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--footer-link);
  line-height: 18px;
  padding: 8px 4px;
}

.footer-col a:hover { color: var(--accent); text-decoration: underline; }

/* ====================================================================
   MOBILE  ≤ 768 px  –  Clean modern redesign
   ==================================================================== */
@media (max-width: 768px) {

  body { background: #f0f2f5; }

  .site-wrapper {
    max-width: 100%;
    box-shadow: none;
  }

  /* ── Sticky header ── */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    min-height: 60px;
  }

  .site-logo {
    flex: 0 0 auto;
    padding: 6px 0;
  }

  .site-logo img { width: 100px; height: 52px; }

  /* Hamburger button */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all .25s ease;
    border-radius: 2px;
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Full-screen nav drawer */
  .site-nav {
    position: fixed;
    inset: 60px 0 0 0;
    background: rgba(10,20,40,.97);
    transform: translateX(-100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 999;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav.open { transform: translateX(0); }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    padding: 8px 0 24px;
  }

  .nav-menu > li { border-bottom: 1px solid #1a2a3a; }

  .nav-menu > li > a {
    color: var(--white);
    font-size: 15px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-menu > li > a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform .2s;
  }

  .nav-menu > li.no-sub > a::after { display: none; }

  .nav-menu > li.open > a::after {
    transform: rotate(-135deg);
    margin-top: 2px;
  }

  .nav-menu > li:hover > a,
  .nav-menu > li.active > a { background: var(--primary); }

  /* Submenus */
  .nav-menu li ul {
    display: none;
    position: static;
    background: rgba(255,255,255,.05);
    border: none;
    box-shadow: none;
    width: 100%;
  }

  .nav-menu li.open > ul { display: block; }

  .nav-menu li ul li a {
    color: #ccc;
    padding: 11px 20px 11px 36px;
    font-size: 13px;
    white-space: normal;
  }

  .nav-menu li ul li:hover > a {
    color: var(--white);
    background: rgba(255,255,255,.05);
    font-weight: normal;
  }

  /* ── Hero ── */
  .hero-wrap { background: #eee; }

  /* Mobile slider — LOF plugin is bypassed; vanilla JS takes over */
  #lofslidecontent45 {
    width: 100% !important;
    height: auto !important;
  }

  .lof-main-outer {
    width: 100% !important;
    height: auto !important;
    overflow: hidden;
  }

  ul.lof-main-wapper {
    width: 100% !important;
    display: block !important;
    position: static !important;
    left: 0 !important;
  }

  ul.lof-main-wapper li {
    float: none !important;
    display: none !important;
    width: 100%;
  }

  ul.lof-main-wapper li.mob-active {
    display: block !important;
  }

  ul.lof-main-wapper li img {
    width: 100% !important;
    height: auto !important;
  }

  .lof-navigator-wapper {
    position: absolute !important;
    bottom: 8px !important;
    left: 0 !important;
    width: 100% !important;
    text-align: center;
  }

  .lof-navigator-outer {
    width: 100% !important;
    height: auto !important;
    float: none !important;
  }

  /* ── Quick cards ── */
  .quick-links {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: #f0f2f5;
  }

  .quick-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    background: var(--white);
    border: none;
  }

  .quick-card-title {
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    min-height: 44px;
    border-radius: 0;
  }

  .quick-card img.card-photo { height: 120px; }

  .quick-card-links { background: var(--white); padding: 10px 14px 14px; }

  .quick-card-links a {
    font-size: 13px;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--primary);
  }

  .quick-card-links a:last-child { border-bottom: none; }

  /* ── Partners ── */
  .partners-strip {
    padding: 16px;
    background: var(--white);
    margin-top: 8px;
    border-radius: 8px;
    margin: 8px 16px;
  }

  .partners-logos { justify-content: center; gap: 20px; }
  .partners-logos img { width: 100px; }

  /* ── Interior pages ── */
  .page-banner { display: none; }

  .interior-wrap {
    flex-direction: column;
    width: 100%;
    padding: 16px;
    gap: 0;
  }

  /* Left sidebar: becomes pill tab bar */
  .sidebar-left {
    width: 100%;
    background: none;
    min-height: 0;
    margin-bottom: 16px;
  }

  .sidebar-left-inner { padding-top: 0; }

  .sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary);
  }

  .sidebar-nav li { border-bottom: none; }

  .sidebar-nav li a {
    background: #e8eef4;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 12px;
    color: var(--primary);
    justify-content: center;
    width: auto;
  }

  .sidebar-nav li a:hover,
  .sidebar-nav li.active a {
    background: var(--primary);
    color: var(--white);
  }

  .sidebar-nav li a img { display: none; }

  /* Main content */
  .main-content { padding: 16px 0; }

  /* Right sidebar */
  .sidebar-right { width: 100%; margin-top: 16px; }
  .sidebar-right-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px;
    background: #f0f4f8;
    border-radius: 8px;
  }
  .sidebar-right-inner img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
  .sidebar-right-inner h3 { font-size: 14px; margin: 0 0 6px; }

  /* Interior page images */
  .main-content img[style*="float:right"],
  .main-content img[style*="float: right"] {
    float: none !important;
    display: block;
    max-width: 100% !important;
    margin: 0 0 12px 0 !important;
  }

  /* Two-column product layout (cash recycling) */
  .cr-layout { flex-direction: column; }
  .cr-image { flex: none; width: 100%; text-align: center; }
  .cr-image img { max-width: 220px; }

  /* ── Contact page ── */
  .contact-layout {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
  .contact-info-col { flex: none; width: 100%; }
  .contact-form-col { width: 100%; }

  /* Fix inline width:250px on form inputs */
  .cflite { width: 100% !important; }
  .cflite tr { display: block; margin-bottom: 10px; }
  .cflite td { display: block; width: 100% !important; padding: 2px 0 !important; }
  .cflite td label { display: block; margin-bottom: 4px; font-weight: 600; font-size: 13px; }
  .cflite input[type="text"],
  .cflite input[type="email"],
  .cflite input[type="tel"],
  .cflite textarea {
    width: 100% !important;
    box-sizing: border-box;
    font-size: 16px;
  }
  .cflite textarea { height: 100px !important; }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
  .footer-grid h4 { font-size: 13px; }
  .footer-grid a, .footer-grid address { font-size: 12px; }
  .footer-col a { min-height: 44px; padding: 0 4px; }

}
