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

:root {
  --orange:  #e8620a;
  --orange2: #bf4f07;
  --dark:    #111827;
  --body:    #374151;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --off:     #f9fafb;
  --white:   #ffffff;
  --light:   #fff4ee;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; font-size: 15px; line-height: 1.6; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 7%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--orange); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 13px; color: var(--white); letter-spacing: 0.5px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 17px; color: var(--dark); line-height: 1.1; }
.logo-tag { font-size: 10px; color: var(--muted); letter-spacing: 0.5px; font-weight: 500; }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--body); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }
.nav-btn {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: 8px; font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}
.nav-btn:hover { background: var(--orange2) !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--off); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 6%;
  z-index: 99;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--dark); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 13px 20px !important;
  border-radius: 8px;
  margin-top: 8px;
  border-bottom: none !important;
  font-weight: 700 !important;
}
.mobile-nav .nav-btn:hover { background: var(--orange2) !important; }

/* ── HERO ── */
.hero {
  padding: 100px 7% 90px;
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
  background-image:
    linear-gradient(to right, rgba(10,15,25,0.88) 0%, rgba(10,15,25,0.55) 100%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-left { position: relative; z-index: 1; max-width: 660px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 6px 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge span { font-size: 13px; font-weight: 600; color: var(--white); }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.08;
  color: var(--white); margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 16px; color: rgba(255,255,255,0.7);
  line-height: 1.75; max-width: 500px; margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-primary { background: var(--orange); color: var(--white); padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; transition: background 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.btn-hero-primary:hover { background: var(--orange2); }
.btn-hero-secondary { background: rgba(255,255,255,0.1); color: var(--white); padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.25); transition: background 0.2s, border-color 0.2s; display: inline-flex; align-items: center; gap: 6px; backdrop-filter: blur(4px); }
.btn-hero-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.45); }

.hero-stats { display: flex; gap: 28px; align-items: center; }
.hero-stat-num { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-num span { color: var(--orange); }
.hero-stat-txt { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 3px; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

.hero-mc-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── BRAND BAR ── */
.brand-bar {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.brand-bar-label {
  font-size: 11px; font-weight: 700; color: var(--muted);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.brand-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.brand-logo-item {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.brand-logo-item:hover { opacity: 0.8; }

/* ── SECTION BASE ── */
.section { padding: 60px 7%; }
.section-alt { background: var(--off); }
.section-center { text-align: center; }
.section-center .sub { margin: 0 auto; }

.tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}

h2.title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800; color: var(--dark);
  line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 14px;
}
h2.title span { color: var(--orange); }

.sub {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; max-width: 520px;
  margin-bottom: 0;
}

/* ── FEATURES (2 col grid + image) ── */
.features-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }

.feat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feat:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); border-color: rgba(232,98,10,0.2); }

.feat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feat-icon svg { width: 20px; height: 20px; stroke: var(--orange); }

.feat h4 { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.feat p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.features-img {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 4/3;
  background: #ccc center / cover no-repeat;
}
.features-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
}
.features-badge {
  position: absolute; bottom: 20px; right: 20px; z-index: 1;
  background: var(--orange); color: var(--white);
  padding: 14px 18px; border-radius: 12px;
  text-align: center; box-shadow: 0 8px 24px rgba(232,98,10,0.3);
}
.features-badge-num { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 800; line-height: 1; }
.features-badge-txt { font-size: 11px; font-weight: 600; opacity: 0.85; margin-top: 2px; }

/* ── SERVICES CARDS ── */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 48px;
}

.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 24px;
  transition: all 0.25s; position: relative;
  overflow: hidden;
}
.svc-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); border-color: rgba(232,98,10,0.2); }

.svc-img {
  width: 100%; border-radius: 10px; aspect-ratio: 16/9;
  object-fit: cover; display: block;
  margin-bottom: 20px;
}

.svc-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; display: block; }
.svc-card h3 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.svc-card p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--orange); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.svc-link:hover { gap: 8px; }

/* ── WHY US ── */
.why-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.why-img {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  background: #1a2a3a center / cover no-repeat;
}
.why-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 100%);
}
.why-img-badge {
  position: absolute; top: 20px; left: 20px; z-index: 1;
  background: var(--orange); color: var(--white);
  padding: 8px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
}

.why-points { margin-top: 32px; }
.why-point {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.why-point:last-child { border-bottom: none; }
.why-check {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-check svg { width: 16px; height: 16px; stroke: var(--orange); }
.why-point h4 { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-point p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── CREDENTIALS ── */
.creds-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 48px;
}

.cred-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.cred-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

.cred-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--light); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.cred-icon svg { width: 24px; height: 24px; stroke: var(--orange); }

.cred-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.cred-value { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); }
.cred-active { color: #16a34a !important; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--dark); padding: 64px 7%;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center; border-radius: 20px;
  margin: 0 7% 60px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60px; right: 100px;
  width: 200px; height: 200px;
  background: rgba(232,98,10,0.15); border-radius: 50%;
  filter: blur(40px);
}
.cta-banner h2 { font-family: 'Manrope', sans-serif; font-size: clamp(20px, 3vw, 32px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-banner p { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 500px; }
.cta-banner-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cta1 { background: var(--orange); color: var(--white); padding: 13px 26px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.btn-cta1:hover { background: var(--orange2); }
.btn-cta2 { background: rgba(255,255,255,0.08); color: var(--white); padding: 13px 26px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; border: 1px solid rgba(255,255,255,0.15); transition: background 0.2s; }
.btn-cta2:hover { background: rgba(255,255,255,0.14); }

/* ── CONTACT ── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 72px; align-items: start;
}

.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--orange); }
.contact-lbl { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-val { font-size: 15px; font-weight: 600; color: var(--dark); }

.contact-form {
  background: var(--off); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}
.contact-form h3 { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 6px; letter-spacing: 0.3px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 14px; color: var(--dark);
  font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,98,10,0.08); }
.fg input::placeholder, .fg textarea::placeholder { color: #9ca3af; }
.fg select { cursor: pointer; }
.fg textarea { resize: vertical; min-height: 88px; }
.btn-submit { width: 100%; background: var(--orange); color: var(--white); border: none; border-radius: 8px; padding: 13px; font-size: 15px; font-weight: 700; font-family: 'Manrope', sans-serif; cursor: pointer; transition: background 0.2s; letter-spacing: 0.3px; }
.btn-submit:hover { background: var(--orange2); }

/* ── FOOTER ── */
footer {
  background: var(--dark); padding: 56px 7% 28px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark { width: 34px; height: 34px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 12px; color: var(--white); }
.footer-logo-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 16px; color: var(--white); }

.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-mc { font-size: 13px; font-weight: 600; color: var(--orange); }

/* ── PREVIEW BANNER ── */
.preview-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 14px 7%;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 999; box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  flex-wrap: wrap; gap: 12px;
}
.pb-left { display: flex; align-items: center; gap: 12px; }
.pb-dot { width: 10px; height: 10px; min-width: 10px; min-height: 10px; background: var(--orange); border-radius: 50%; flex-shrink: 0; animation: blink 2s infinite; }
.pb-text strong { font-size: 14px; font-weight: 700; color: var(--dark); }
.pb-text span { font-size: 13px; color: var(--muted); margin-left: 6px; }
.pb-btns { display: flex; gap: 10px; }
.pb-btn1 { background: var(--orange); color: var(--white); padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.pb-btn1:hover { background: var(--orange2); }
.pb-btn2 { background: transparent; color: var(--dark); padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; border: 1px solid var(--border); transition: border-color 0.2s; }
.pb-btn2:hover { border-color: var(--dark); }

body { padding-bottom: 68px; }

/* truck SVG shared */
.truck-svg { width: 100px; opacity: 0.15; }

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ── TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  nav { padding: 0 5%; }
  nav .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 72px 5% 64px; min-height: unset; }

  .features-wrap { grid-template-columns: 1fr; gap: 40px; }
  .why-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }

  .creds-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .cta-banner { grid-template-columns: 1fr; margin: 0 5% 72px; }
  .cta-banner-btns { flex-direction: row; }

  .brand-logos { gap: 36px; }
  .brand-logo-item { height: 58px; max-width: 180px; }
  .form-row { grid-template-columns: 1fr; }

  .section { padding: 48px 5%; }
  .brand-bar { padding: 32px 5%; gap: 22px; }
}

/* ── PHONE (≤ 600px) ── */
@media (max-width: 600px) {
  nav { padding: 0 4%; height: 60px; }
  .mobile-nav { top: 60px; padding: 8px 4%; }

  .hero { padding: 56px 4% 48px; }
  .hero p { display: none; }
  .btn-hero-secondary { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .btn-hero-primary { justify-content: center; width: auto; align-self: flex-start; }
  .hero-stats { gap: 16px; }

  .section { padding: 40px 4%; }
  .brand-bar { padding: 24px 4%; gap: 18px; }
  .brand-logo-item { height: 36px; max-width: 120px; }
  .brand-logos { gap: 24px; }

  .features-list { grid-template-columns: 1fr 1fr; gap: 12px; }
  .features-img { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .svc-card { padding: 18px 16px; }
  .svc-img { margin-bottom: 14px; aspect-ratio: 4/3; }
  .svc-card p { font-size: 12px; line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .svc-card h3 { font-size: 15px; margin-bottom: 8px; }
  .svc-tag { font-size: 10px; }

  .why-img { display: none; }

  .cta-banner { padding: 40px 5%; margin: 0 4% 56px; border-radius: 14px; }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .btn-cta1, .btn-cta2 { text-align: center; justify-content: center; }

  .contact-form { padding: 24px 20px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }

  .preview-banner { padding: 12px 4%; }
  .pb-text span { font-size: 12px; }
}

/* ── SMALL PHONE (≤ 400px) ── */
@media (max-width: 400px) {
  .logo-tag { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .creds-grid { grid-template-columns: 1fr; }
  .features-list { gap: 10px; }
  .feat { padding: 16px 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pb-btns { flex-direction: row; flex-wrap: nowrap; }
  .pb-btn1, .pb-btn2 { padding: 8px 12px; font-size: 12px; white-space: nowrap; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
