:root {
  --primary: #0b4f9f;
  --primary-2: #093f7c;
  --accent: #e53935;
  --dark: #0a1b33;
  --muted: #5b6b82;
  --light: #f5f8ff;
  --card: #ffffff;
  --shadow: 0 14px 35px rgba(11, 79, 159, 0.16);
  --radius: 16px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Source Sans 3', sans-serif;
  margin: 0 0 12px;
  color: var(--dark);
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.info-bar {
  background: #2769B3;
  color: #eaf3ff;
  font-size: 14px;
  padding: 10px 0;
  overflow: hidden;
}
.notice-marquee {
  overflow: hidden;
  white-space: nowrap;
}
.notice-marquee-text {
  display: inline-block;
  padding-left: 100%;
  font-size: 20px;
  font-weight: 600;
  animation: notice-left 14s linear infinite;
}
@keyframes notice-left {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.info-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: 8px; }
.info-item a { color: #eaf3ff; }
.icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #e53935;
}
.lang-select {
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 6px 8px;
  border-radius: 8px;
}
.info-item.social { gap: 10px; }
.info-item.social a { color: #eaf3ff; font-size: 15px; display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.15); }
.info-item.social a:hover { background: rgba(255,255,255,0.25); }
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5eefc;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { width: 78px; height: auto; object-fit: contain; }
.brand-text {
  font-weight: 700;
  font-size: 27px;
  line-height: 1;
  white-space: nowrap;
  color: var(--primary);
}
.nav-links { display: flex; gap: 26px; align-items: center; flex: 1; justify-content: flex-end; flex-wrap: wrap; }
.nav-links a { font-weight: 600; color: var(--dark); position: relative; padding: 6px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { position: relative; }
.nav-drop-btn {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 0;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e7eefc;
  box-shadow: var(--shadow);
  padding: 10px 12px;
  display: none;
  min-width: 200px;
  z-index: 30;
}
.nav-drop-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
}
.nav-drop-menu a:hover { background: #eef4ff; }
.nav-dropdown.open .nav-drop-menu { display: block; }
.social-icons { display: flex; align-items: center; gap: 10px; }
.social-icons a { color: var(--dark); font-size: 16px; display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; border-radius: 10px; background: #ffffff; border: 1px solid rgba(0,0,0,0.06); }
.social-icons a:hover { color: #fff; background: var(--accent); border-color: transparent; }
.call-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #eef4ff;
}
.call-icon {
  font-size: 20px;
  color: var(--accent);
}
.call-label { font-size: 13px; color: var(--muted); }
.call-number { font-weight: 800; color: #000; }
.quote-call-box {
  background: transparent;
  padding: 0;
}
.cta-btn {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #fff;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(15, 111, 200, 0.18); }
.quote-open-btn {
  min-width: 132px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #0b4f9f;
}
.quote-open-btn:hover,
.quote-open-btn:active {
  background: #e53935;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #d8e4f8;
  padding: 10px;
  border-radius: 12px;
}
.quote-popup {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 34, 0.72);
  backdrop-filter: blur(3px);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quote-popup.show { display: flex; }
.quote-popup-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(7, 17, 34, 0.35);
  padding: 24px 20px 20px;
  position: relative;
}
.quote-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #eef4ff;
  color: #103f7d;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.quote-popup-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
}
.quote-popup-card p {
  margin: 0 0 14px;
  color: #5b6b82;
}
.quote-popup-form {
  display: grid;
  gap: 10px;
}
.quote-popup-form input,
.quote-popup-form textarea {
  border: 1px solid #d3dff5;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}
.quote-popup-form input:focus,
.quote-popup-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 79, 159, 0.15);
}
.banner-slider {
  background: #0b1b34;
  padding: 0;
}
.banner-slider .container { width: 100%; margin: 0 auto; padding: 0; max-width: none; }
.slider-shell {
  position: relative;
  overflow: hidden;
  background: #0a1b33;
  min-height: 560px;
}
.banner-track {
  position: absolute;
  inset: 0;
  min-height: 560px;
  height: 560px;
}
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.banner-slide.active { opacity: 1; z-index: 1; }
.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 17, 34, 0.76) 0%, rgba(7, 17, 34, 0.62) 46%, rgba(7, 17, 34, 0.48) 100%);
}
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.74);
}
.banner-overlay {
  position: relative;
  z-index: 4;
  width: min(1180px, 92%);
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
  padding: 42px 0 72px;
}
.banner-content {
  color: #fff;
  max-width: 650px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.banner-content h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.1;
  color: #fff;
}
.banner-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  max-width: 620px;
}
.banner-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.banner-cta-primary {
  background: linear-gradient(120deg, #2d7fdf, #ee3823);
  box-shadow: 0 16px 36px rgba(8, 20, 42, 0.35);
}
.banner-cta-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.86);
  color: #fff;
}
.banner-cta-secondary:hover {
  background: #fff;
  color: #0b4f9f;
}
.banner-form-card {
  background: rgba(255, 255, 255, 0.93);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 52px rgba(8, 20, 42, 0.28);
  padding: 24px;
  width: min(420px, 100%);
  justify-self: end;
}
.banner-form-card h3 {
  margin: 0 0 6px;
  font-size: 26px;
}
.banner-form-card p {
  margin: 0 0 14px;
  color: #4a5b74;
  font-size: 14px;
}
.banner-form {
  display: grid;
  gap: 10px;
}
.banner-form input {
  background: rgba(255, 255, 255, 0.96);
}
.banner-form .cta-btn.full {
  width: 100%;
  margin-top: 4px;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.88);
  color: var(--primary);
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 7;
}
.slider-btn:hover { background: #fff; }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 7;
}
.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
}
.slider-dot.active { background: #fff; }
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e8f6ff, #ffffff 45%);
  padding: 60px 0 60px;
  border-bottom: 1px solid #e7eefc;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(15,111,200,0.10), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(15,111,200,0.14), transparent 40%),
    linear-gradient(135deg, rgba(15,111,200,0.15), rgba(230,58,58,0.08));
  opacity: 0.6;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff5f5;
  color: var(--accent);
  font-weight: 700;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(30px, 4vw, 44px); line-height: 1.2; }
.hero p { font-size: 18px; color: var(--muted); }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  align-items: center;
}
.ghost-btn {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 11px 16px;
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.ghost-btn:hover { background: var(--primary); color: #fff; }
.hero-slider {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
  border: 1px solid #e3edfb;
}
.slider-track {
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.dose {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.dose.green { color: #14804a; }
.dose.red { color: var(--accent); }
.section {
  padding: 70px 0;
  position: relative;
}
.section h2 { font-size: clamp(26px, 3vw, 34px); }
.subhead { color: var(--muted); margin-bottom: 26px; }
.page-hero {
  position: relative;
  padding: 80px 0;
  background: url("../images/slider/banner-1.jpg") center/cover no-repeat;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.58);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero h1 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
}
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  color: #eaf2ff;
}
.breadcrumb a { color: #fff; opacity: 0.9; }
.breadcrumb .sep { opacity: 0.7; }
.mv-section {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 55%);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.mv-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2ecfb;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 20px 46px rgba(10, 33, 68, 0.10);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  align-items: start;
}
.mv-card::before {
  content: none;
}
.mv-icon {
  width: 220px;
  height: 220px;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  box-shadow: none;
  border: none;
}
.mv-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.mv-copy h3 {
  margin: 2px 0 10px;
  font-size: 24px;
  color: var(--dark);
}
.mv-copy p {
  margin: 0;
  color: #4a5b74;
  line-height: 1.8;
  font-size: 15.5px;
}
.why-choose {
  background: #f4f8ff;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.why-choose-copy h2 { margin-bottom: 18px; }
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e3ecfb;
  box-shadow: 0 10px 24px rgba(10, 33, 68, 0.08);
}
.why-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(11,79,159,0.12);
  color: var(--primary);
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}
.why-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.why-choose-media {
  position: relative;
  display: grid;
  place-items: center;
}
.why-dots {
  position: absolute;
  top: 0;
  left: 10%;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.5;
}
.why-image {
  position: relative;
  width: min(520px, 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(10, 33, 68, 0.18);
}
.why-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.why-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: rgba(11,79,159,0.85);
  color: #fff;
  padding: 10px 6px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.why-badge.second {
  top: auto;
  bottom: 70px;
  background: rgba(9,63,124,0.88);
}
.why-badge.third {
  top: auto;
  bottom: 14px;
  background: rgba(229,57,53,0.85);
}
.franchise-overview {
  background: #ffffff;
}
.franchise-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.franchise-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(28px, 3.4vw, 36px);
}
.franchise-copy .subhead { color: #4f6078; }
.franchise-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  background: #2b6bb3;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(10, 33, 68, 0.18);
}
.franchise-list-title {
  margin: 18px 0 10px;
  font-size: 18px;
  color: var(--dark);
}
.franchise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  color: #4a5b74;
}
.franchise-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.franchise-list i {
  color: var(--primary);
  margin-top: 2px;
}
.franchise-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 46px rgba(10, 33, 68, 0.14);
  border: 1px solid #e1eaf8;
}
.franchise-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.franchise-benefits {
  background: linear-gradient(180deg, #eff4ff 0%, #ffffff 55%);
}
.franchise-benefit-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e1eaf8;
  box-shadow: 0 14px 32px rgba(10, 33, 68, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.franchise-benefit-card::after {
  content: none;
}
.franchise-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11,79,159,0.25);
  box-shadow: 0 22px 50px rgba(10, 33, 68, 0.18);
}
.franchise-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(140deg, #0b4f9f, #2a73c8);
  color: var(--primary);
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
  box-shadow: 0 10px 22px rgba(11,79,159,0.22);
  color: #fff;
}
.franchise-benefit-card:nth-child(2) .franchise-icon {
  background: linear-gradient(140deg, #e53935, #ff6a5a);
  box-shadow: 0 10px 22px rgba(229,57,53,0.25);
}
.franchise-benefit-card:nth-child(3) .franchise-icon {
  background: linear-gradient(140deg, #14804a, #2fbf71);
  box-shadow: 0 10px 22px rgba(20,128,74,0.25);
}
.franchise-benefit-card:nth-child(4) .franchise-icon {
  background: linear-gradient(140deg, #7b3fcf, #b06af5);
  box-shadow: 0 10px 22px rgba(123,63,207,0.25);
}
.franchise-benefit-card:nth-child(5) .franchise-icon {
  background: linear-gradient(140deg, #0f7f9f, #29b7d9);
  box-shadow: 0 10px 22px rgba(15,127,159,0.25);
}
.franchise-benefit-card:nth-child(6) .franchise-icon {
  background: linear-gradient(140deg, #d07a00, #f3b63b);
  box-shadow: 0 10px 22px rgba(208,122,0,0.25);
}
.franchise-benefit-card h3 { margin: 0 0 8px; }
.franchise-benefit-card p { margin: 0; color: var(--muted); }
.franchise-docs { background: #f7faff; }
.franchise-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.franchise-docs-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.franchise-docs-note {
  margin-top: 14px;
  padding: 12px 14px;
  background: #eef4ff;
  border: 1px solid #dbe7fb;
  border-radius: 12px;
  color: #334a6b;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(10, 33, 68, 0.08);
}
.franchise-docs-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(10, 33, 68, 0.16);
  border: 1px solid #e1eaf8;
}
.grow-section {
  padding: 0;
  background: #2b6bb3;
}
.grow-section .container {
  width: 100%;
  max-width: none;
  padding: 0;
}
.grow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
  color: #fff;
}
.grow-copy {
  padding: 50px 40px 50px 150px;
  display: grid;
  gap: 12px;
  align-content: center;
  background: linear-gradient(135deg, #2b6bb3, #245a96);
  position: relative;
  overflow: hidden;
}
.grow-copy::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 28px;
  width: 78px;
  height: 78px;
  background-image: radial-gradient(rgba(255,255,255,0.45) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  opacity: 0.7;
}
.grow-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 34px);
}
.grow-copy p {
  margin: 0;
  color: #e6edff;
  max-width: 520px;
}
.grow-media {
  position: relative;
  background: url("../images/work/bg.webp") center/cover no-repeat;
}
.grow-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 30, 66, 0.5);
}
.grow-overlay {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 28px);
  z-index: 1;
}
.grow-phone-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 16px 34px rgba(229,57,53,0.35);
  position: relative;
}
.grow-phone-number { letter-spacing: 0.02em; }
.grow-phone-icon::before,
.grow-phone-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(229,57,53,0.6);
  opacity: 0;
  animation: growWave 2.4s ease-out infinite;
}
.grow-phone-icon::after {
  inset: -16px;
  animation-delay: 1.2s;
}
@keyframes growWave {
  0% { transform: scale(0.9); opacity: 0.9; }
  70% { opacity: 0.25; }
  100% { transform: scale(1.35); opacity: 0; }
}
.pill-title {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 12px;
}
.about-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: #2b6bb3;
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  margin-bottom: 10px;
  box-shadow: 0 8px 18px rgba(10, 33, 68, 0.18);
  justify-self: start;
}
.who-we-are-title {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.12em;
}
.contact-info {
  background: linear-gradient(180deg, #f4f7ff 0%, #eef3ff 100%);
}
.contact-info .container {
  width: 100%;
  max-width: none;
  padding: 0 24px;
}
.contact-info-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(241,246,255,0.95));
  border: 1px solid #e2ecfb;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(10, 33, 68, 0.12);
  position: relative;
  overflow: hidden;
}
.contact-info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(11,79,159,0.08), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(229,57,53,0.10), transparent 45%),
    radial-gradient(circle at 70% 85%, rgba(11,79,159,0.06), transparent 45%);
  pointer-events: none;
}
.contact-info-head {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
}
.contact-info-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  background: #2b6bb3;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(10, 33, 68, 0.16);
  margin-bottom: 10px;
}
.contact-info-head h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 36px);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.contact-info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 18px 16px;
  border: 1px solid #dfe8f8;
  box-shadow: 0 14px 32px rgba(10, 33, 68, 0.10);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-info-card::after { content: none; }
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(10, 33, 68, 0.18);
  border-color: rgba(11,79,159,0.25);
}
.contact-info-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, #3f82d0, #245a96);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 12px 26px rgba(11,79,159,0.22);
}
.contact-info-card h3 { margin: 6px 0 4px; }
.contact-info-card p { margin: 0; color: var(--muted); }
.contact-info-card a { font-weight: 700; color: var(--primary); }
.contact-info-body h3 { margin: 2px 0 6px; font-size: 18px; }
.contact-info-note {
  text-align: center;
  color: #4a5b74;
  margin: 22px 0 14px;
  position: relative;
  z-index: 1;
}
.contact-info-cta-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.contact-info-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f6fbe, #1f5aa3);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 36px rgba(10, 33, 68, 0.18);
}
.contact-form-section { background: #ffffff; }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}
.contact-points {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
  color: #4a5b74;
}
.contact-points i { color: var(--primary); margin-right: 8px; }
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e1eaf8;
  box-shadow: 0 18px 40px rgba(10, 33, 68, 0.12);
}
.contact-form-card h3 { margin-top: 0; }
.contact-map {
  background: #f7faff;
  padding-bottom: 0;
}
.contact-map .container {
  width: 100%;
  max-width: none;
  padding: 0;
}
.map-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e1eaf8;
  box-shadow: 0 18px 40px rgba(10, 33, 68, 0.12);
  overflow: hidden;
}
.map-card iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
footer {
  margin-top: 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.step { display: flex; gap: 12px; align-items: flex-start; }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.franchise-steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.franchise-steps {
  background: #D8E4FF;
}
.franchise-step-card {
  background: #ffffff;
  border: 1px solid #e1eaf8;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(10, 33, 68, 0.10);
  display: grid;
  gap: 10px;
  align-content: start;
}
.franchise-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.franchise-step-card .step-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 24px rgba(11,79,159,0.2);
}
.franchise-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(229,57,53,0.12);
  color: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.franchise-step-card h3 {
  margin: 0;
  font-size: 17px;
}
.franchise-step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.dual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}
.stat-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.stat {
  padding: 14px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e7eefc;
  box-shadow: var(--shadow);
}
.stat strong { display: block; font-size: 20px; color: var(--primary); }
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: 22px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 60%);
  top: -60px;
  right: -40px;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
form { display: grid; gap: 12px; }
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #dbe5f5;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #f9fbff;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,111,200,0.14);
}
textarea { min-height: 120px; resize: vertical; }
footer {
  background: #2769B3;
  color: #e9f1ff;
  padding: 42px 0 24px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
footer .container {
  width: min(1180px, 94%);
}
.pdf-float {
  position: fixed;
  left: -52px;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 999;
  background: transparent;
}
.pdf-float img {
  display: block;
  width: 170px;
  height: auto;
  transform: rotate(-90deg);
  transform-origin: center;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.22));
}
.pdf-float:hover { transform: translateY(-50%) translateX(6px); }
.quote-float-right {
  position: fixed;
  right: -68px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 999;
  border: none;
  background: linear-gradient(135deg, #0f6fc8, #0a4f9d);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 12px 26px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 12px 24px rgba(11, 59, 115, 0.35);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.quote-float-right:hover {
  transform: translateY(-50%) rotate(90deg) translateY(-5px);
  box-shadow: 0 16px 28px rgba(11, 59, 115, 0.4);
}
.quote-bottom-float,
.scroll-top-float {
  position: fixed;
  right: 16px;
  z-index: 1000;
  border: none;
  color: #fff;
}
.quote-bottom-float {
  bottom: 88px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: linear-gradient(135deg, #0f6fc8, #0a4f9d);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quote-bottom-float::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #fff;
  color: #0b3b73;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  animation: quoteNowMessage 15s ease-in-out infinite;
}
.quote-bottom-float::before {
  content: "";
  position: absolute;
  right: calc(100% + 5px);
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  opacity: 0;
  pointer-events: none;
  animation: quoteNowArrow 15s ease-in-out infinite;
}
.quote-bottom-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(11, 59, 115, 0.35);
}
.scroll-top-float {
  bottom: 24px;
  background: #0f6fc8;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.scroll-top-float:hover {
  transform: translateY(-3px);
  background: #0959a6;
}
@keyframes quoteNowMessage {
  0%, 8% {
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
  }
  10%, 35% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  40% {
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
  }
}
@keyframes quoteNowArrow {
  0%, 8% { opacity: 0; }
  10%, 35% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(160px, 0.9fr) minmax(160px, 0.9fr) minmax(220px, 1fr);
  column-gap: 32px;
  row-gap: 28px;
  align-items: start;
  justify-items: start;
  justify-content: space-between;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}
.foot-logo { width: 72px; height: auto; }
.foot-name { font-size: 23px; line-height: 1.05; display: block; white-space: nowrap; }
footer .foot-name { font-weight: 600; }
.foot-tagline { display: none; }
.footer-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  padding: 20px 20px 22px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
  backdrop-filter: blur(4px);
  margin-left: -8px;
}
.footer-card .foot-brand {
  margin-left: -6px;
}
.foot-copy { color: #d9e6ff; margin: 12px 0 14px; }
.foot-links a:hover { color: #fff; transform: translateX(2px); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #EE3823;
  font-size: 15px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.footer-social a:hover { background: #EE3823; color: #fff; border-color: #EE3823; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
.foot-title { color: #fff; margin: 0 0 10px 6px; font-weight: 700; }
.foot-links { display: grid; gap: 10px; }
.foot-links a { color: #e9f1ff; display: flex; align-items: center; gap: 10px; }
.foot-arrow {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  color: #EE3823;
  font-size: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.footer-contact { display: grid; gap: 12px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e9f1ff;
}
.footer-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #EE3823;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,0.06);
}
.footer-icon i {
  line-height: 1;
}
@media (min-width: 901px) {
  .footer-contact .contact-line {
    align-items: flex-start;
  }
  .footer-contact .footer-icon {
    flex: 0 0 30px;
    margin-top: 2px;
  }
}
.foot-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #EE3823;
  color: #fff;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(229,57,53,0.25);
}
.foot-cta:hover { background: #d12f2f; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 26px;
  padding-top: 16px;
  font-size: 14px;
  display: block;
  text-align: center;
}
.footer-bottom .dev-link { color: #fff; text-decoration: underline; }
.footer-bottom .dev-link:hover { color: #dfe9ff; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.mini-badge {
  padding: 8px 10px;
  background: #eef4ff;
  color: var(--primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.process-pill {
  border: 1px dashed #d2def3;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(13, 50, 100, 0.08);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(230,58,58,0.15);
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8d6ef, transparent);
  margin: 16px 0;
}
.ribbon {
  display: inline-flex;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #e5ecfb;
  border-radius: 12px;
  gap: 10px;
  box-shadow: var(--shadow);
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}
.mobile-hide { display: inline-flex; }
@media (max-width: 900px) {
  .mv-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 20px;
  }
  .mv-card::before {
    left: 20px;
    right: 20px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 3px;
  }
  .mv-icon {
    width: 180px;
    height: 180px;
  }
  .why-choose-grid { grid-template-columns: 1fr; }
  .why-dots { left: 0; top: -10px; }
  .grow-grid { grid-template-columns: 1fr; }
  .grow-copy { padding: 34px 26px; }
  .grow-overlay { font-size: 18px; }
  .franchise-grid { grid-template-columns: 1fr; }
  .franchise-list { grid-template-columns: 1fr; }
  .franchise-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .franchise-docs-grid { grid-template-columns: 1fr; }
  .franchise-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .brand-text { font-size: 23px; }
  .pdf-float { left: -78px; right: auto; top: 55%; bottom: auto; }
  .pdf-float img { width: 120px; }
  .quote-float-right {
    right: -66px;
    padding: 10px 22px;
    font-size: 14px;
  }
  .quote-bottom-float,
  .scroll-top-float {
    right: 12px;
  }
  .quote-bottom-float {
    bottom: 80px;
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  .quote-bottom-float::after {
    font-size: 12px;
    padding: 7px 11px;
  }
  .scroll-top-float {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .scroll-top-float { bottom: 20px; }
}
@media (max-width: 860px) {
  .info-bar { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    position: absolute;
    top: 62px;
    right: 16px;
    box-shadow: var(--shadow);
    width: min(300px, 92vw);
    gap: 10px;
  }
  .nav-links.open { display: flex; }
  .social-icons { width: 100%; justify-content: flex-start; }
  .menu-toggle { display: inline-flex; }
  nav { position: relative; }
  .hero { padding: 54px 0 40px; }
  .banner-track { min-height: 760px; height: 760px; }
  .banner-overlay {
    min-height: 760px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0 72px;
    justify-items: start;
  }
  .banner-content h1 { font-size: clamp(30px, 8vw, 42px); }
  .banner-content p { font-size: 16px; }
  .banner-form-card {
    justify-self: stretch;
    width: min(460px, 100%);
  }
  .slider-btn { width: 38px; height: 38px; }
  .slider-btn { display: none; }
  .mobile-hide { display: none; }
  .info-flex { justify-content: center; }
  .call-box { display: none; }
}
@media (max-width: 600px) {
  .banner-track { min-height: 820px; height: 820px; }
  .banner-overlay {
    min-height: 820px;
    width: min(1180px, 90%);
    padding-top: 28px;
  }
  .banner-form-card { display: none; }
  .banner-actions { width: 100%; }
  .banner-actions a {
    width: 100%;
    text-align: center;
  }
  .banner-form-card {
    padding: 18px;
    border-radius: 14px;
  }
  .slider-dots { bottom: 14px; }
  .contact-info .container { padding: 0 14px; }
  .contact-info-panel { padding: 22px 16px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .contact-info-icon { width: 56px; height: 56px; font-size: 22px; }
  .contact-info-cta { width: 100%; max-width: 320px; }
  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 18px;
  }
  .footer-card {
    margin: 0;
    width: 100%;
  }
  .foot-title { margin-left: 0; }
  .foot-links { gap: 12px; }
  .footer-contact { gap: 10px; }
  .foot-copy { margin-bottom: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .foot-name { white-space: normal; }
  .pdf-float {
    top: 58%;
    left: -34px;
    right: auto;
    bottom: auto;
  }
  .pdf-float img { width: 110px; }
  .quote-float-right {
    right: -62px;
    padding: 9px 20px;
    font-size: 13px;
  }
  .why-cards { grid-template-columns: 1fr; }
  .franchise-benefit-grid { grid-template-columns: 1fr; }
  .franchise-steps-grid { grid-template-columns: 1fr; }
  .grow-copy {
    padding: 32px 20px 32px 28px;
  }
  .grow-copy::before {
    left: 16px;
    top: 16px;
    width: 66px;
    height: 66px;
    background-size: 11px 11px;
  }
  .grow-media { min-height: 180px; }
  .grow-overlay {
    font-size: 16px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0 12px;
  }
  .grow-phone-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  nav {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .brand {
    gap: 8px;
  }
  .brand img { width: 62px; }
  .brand-text {
    font-size: 21px;
    white-space: nowrap;
    position: relative;
    top: -1px;
  }
  .brand { max-width: calc(100% - 52px); }
  .menu-toggle { margin-left: auto; }
  .nav-links { top: 56px; right: 12px; }
  .quote-float-right { display: none; }
  .quote-bottom-float,
  .scroll-top-float {
    right: 10px;
  }
  .quote-bottom-float {
    bottom: 66px;
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .quote-bottom-float::after {
    font-size: 11px;
    padding: 6px 10px;
  }
  .scroll-top-float {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .scroll-top-float { bottom: 16px; }
}
.welcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}
.welcome-visual {
  position: relative;
  min-height: 340px;
}
.welcome-blob {
  position: absolute;
  inset: 8% 12%;
  background: radial-gradient(circle at 18% 28%, rgba(229,57,53,0.16), transparent 45%), radial-gradient(circle at 70% 70%, rgba(11,79,159,0.14), transparent 55%);
  filter: blur(0px);
  border-radius: 28px;
}
.welcome-main {
  width: 92%;
  max-width: 520px;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(10,27,51,0.18);
  position: relative;
  z-index: 1;
  object-fit: cover;
  height: 300px;
}
.welcome-card {
  position: absolute;
  right: 6%;
  bottom: -18%;
  width: 52%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(10,27,51,0.16);
  overflow: hidden;
  border: 6px solid #fff;
  z-index: 2;
}
.welcome-card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.welcome-copy h2 { margin-top: 8px; }
.welcome-copy {
  display: grid;
  gap: 12px;
  align-content: start;
  max-width: 640px;
}
.welcome-copy h2 {
  line-height: 1.2;
  margin-bottom: 6px;
  font-weight: 600;
}
.welcome-copy .subhead {
  margin: 0;
  line-height: 1.7;
  color: var(--dark);
}
.welcome-copy .chip-row {
  margin-top: 6px;
  justify-content: flex-start;
}
.services {
  background: linear-gradient(180deg, #e7f0ff 0%, #d9e7ff 45%, #eef4ff 100%);
  position: relative;
  overflow: hidden;
}
.services::before,
.services::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  z-index: 0;
}
.services::before {
  left: -140px;
  top: -160px;
  background: radial-gradient(circle, rgba(11,79,159,0.18), transparent 60%);
}
.services::after {
  right: -160px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(229,57,53,0.16), transparent 60%);
}
.services-head {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.services-head h2 { font-weight: 600; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.service-card {
  --icon-bg: linear-gradient(140deg, #0b4f9f, #1a7fe0);
  --icon-glow: rgba(11,79,159,0.25);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.88));
  border-radius: 20px;
  padding: 26px 24px 28px;
  box-shadow: 0 20px 50px rgba(10, 33, 68, 0.12);
  border: 1px solid rgba(12, 43, 90, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.7;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.6), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(10, 33, 68, 0.22), 0 0 0 8px rgba(11,79,159,0.06);
  border-color: rgba(11,79,159,0.25);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--icon-bg);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: 0 14px 26px var(--icon-glow), inset 0 0 0 1px rgba(255,255,255,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover .service-icon {
  transform: translateY(-2px) rotate(-4deg);
  box-shadow: 0 18px 34px var(--icon-glow), inset 0 0 0 1px rgba(255,255,255,0.45);
}
.service-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 700;
}
.service-card:hover h3 { color: var(--primary); }
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.service-card:nth-child(2) {
  --icon-bg: linear-gradient(140deg, #14804a, #2fbf71);
  --icon-glow: rgba(20,128,74,0.28);
}
.service-card:nth-child(3) {
  --icon-bg: linear-gradient(140deg, #7b3fcf, #b06af5);
  --icon-glow: rgba(123,63,207,0.25);
}
.service-card:nth-child(4) {
  --icon-bg: linear-gradient(140deg, #d07a00, #f3b63b);
  --icon-glow: rgba(208,122,0,0.25);
}
.service-card:nth-child(5) {
  --icon-bg: linear-gradient(140deg, #0f7f9f, #29b7d9);
  --icon-glow: rgba(15,127,159,0.25);
}
.service-card:nth-child(6) {
  --icon-bg: linear-gradient(140deg, #c7302b, #ff6a5a);
  --icon-glow: rgba(199,48,43,0.25);
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { text-align: left; }
}
.process {
  background: linear-gradient(180deg, #eef4ff, #e3ecff);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(10, 33, 68, 0.12);
  border: 1.5px solid #d5e2fb;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  
}
.process-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.process-body {
  padding: 16px;
}
.process-card h3 { margin: 0 0 8px; color: var(--dark); }
.process-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(10, 33, 68, 0.20), 0 0 0 6px rgba(229,57,53,0.08);
  border-color: #ee9ba1;
}
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-card img { height: 150px; }
}
.products-gallery {
  background: #D8E4FF;
}
.products-img-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.prod-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #d5e2fb;
  box-shadow: 0 14px 32px rgba(10, 33, 68, 0.12);
  text-decoration: none;
  color: var(--dark);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.prod-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.prod-card h3 {
  margin: 0;
  padding: 14px;
  font-size: 17px;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(10, 33, 68, 0.20), 0 0 0 6px rgba(229,57,53,0.08);
  border-color: #ee9ba1;
}
@media (max-width: 1100px) {
  .products-img-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .products-img-grid { grid-template-columns: 1fr; }
}
.launch-products {
  background: #E4E9F3;
  padding: 96px 0;
}
.launch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.launch-head h2 {
  margin: 0;
  font-weight: 600;
}
.launch-nav {
  display: inline-flex;
  gap: 10px;
}
.launch-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #c7d7f4;
  background: #fff;
  color: #0b4f9f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(10, 33, 68, 0.1);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.launch-nav-btn:hover {
  background: #0b4f9f;
  color: #fff;
  border-color: #0b4f9f;
  transform: translateY(-2px);
}
.launch-nav-btn:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}
.launch-slider-shell {
  overflow: hidden;
}
.launch-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}
.launch-track::-webkit-scrollbar {
  display: none;
}
.launch-card {
  flex: 0 0 clamp(230px, 25vw, 290px);
  background: #fff;
  border: 1.5px solid #d5e2fb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(10, 33, 68, 0.12);
  scroll-snap-align: start;
  position: relative;
}
.launch-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}
.launch-card h3 {
  margin: 0;
  padding: 14px 14px 6px;
  font-size: 17px;
}
.launch-card p {
  margin: 0;
  padding: 0 14px 12px;
  color: #5b6b82;
  font-size: 14px;
  line-height: 1.5;
}
.launch-card a {
  display: inline-flex;
  margin: 0 14px 16px;
  color: #0b4f9f;
  font-weight: 700;
}
.launch-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e53935;
  color: #fff;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (max-width: 900px) {
  .launch-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .launch-products {
    padding: 78px 0;
  }
  .launch-card {
    flex-basis: min(84vw, 310px);
  }
  .launch-nav {
    align-self: flex-end;
  }
}
.injectables-section {
  background: #f3f7ff;
}
.injectables-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #cdd6e6;
  box-shadow: 0 18px 40px rgba(10, 33, 68, 0.12);
  padding: 18px;
}
.injectables-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-weight: 600;
  color: #1d2a44;
}
.injectables-controls label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.injectables-controls select,
.injectables-controls input {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #b7c3d8;
  font-size: 14px;
  background: #fff;
}
.injectables-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 10px;
}
.injectables-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #c2cde1;
  min-width: 820px;
}
.injectables-table th,
.injectables-table td {
  padding: 12px 10px;
  border-right: 1px solid #d4deec;
  vertical-align: top;
  font-size: 14.5px;
}
.injectables-table th:last-child,
.injectables-table td:last-child {
  border-right: none;
}
.injectables-table thead th {
  background: #2f3a8c;
  color: #fff;
  font-weight: 700;
  position: relative;
}
.injectables-table thead th.sortable::before,
.injectables-table thead th.sortable::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  opacity: 0.6;
}
.injectables-table thead th.sortable::before {
  top: 38%;
  border-bottom: 7px solid rgba(255, 255, 255, 0.9);
}
.injectables-table thead th.sortable::after {
  top: 56%;
  border-top: 7px solid rgba(255, 255, 255, 0.9);
}
.injectables-table tbody tr:nth-child(even) {
  background: #f2f2f2;
}
.injectables-table td .name-reg-mark {
  font-size: 1.14em;
  font-weight: 700;
  line-height: 0;
  position: relative;
  top: -0.03em;
}
.product-thumb {
  width: 64px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #cfd7e6;
  background: #fff;
  box-shadow: 0 6px 14px rgba(10, 33, 68, 0.12);
}
.visual-muted {
  color: #7b879c;
  font-weight: 500;
}
.visual-link {
  color: #2f3a8c;
  font-weight: 600;
}

.view-product-btn {
  color: #2f3a8c;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #2f3a8c;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: 14px;
}

.view-product-btn:hover {
  background-color: #2f3a8c;
  color: #fff;
}

.product-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  width: 100vw;
  height: 100vh;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.product-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  z-index: 10001;
  max-width: min(1120px, 92vw);
  max-height: calc(100vh - 32px);
  margin: auto;
  animation: zoomIn 0.3s ease;
}

#modalImg {
  max-width: 100%;
  max-height: calc(100vh - 32px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.close-modal {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 10002;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  cursor: pointer;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(238, 56, 35, 0.9);
  border: 2px solid #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.close-modal:hover {
  background: #EE3823;
  transform: scale(1.1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .product-modal {
    padding: 10px;
  }
  .close-modal {
    top: 10px;
    right: 10px;
    font-size: 28px;
    width: 36px;
    height: 36px;
  }
  
  #modalImg {
    max-height: calc(100vh - 20px);
  }
}
.injectables-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-size: 14px;
  color: #4b5a73;
}
.injectables-pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.injectables-pagination button {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #c2cde1;
  background: #fff;
  font-weight: 600;
  color: #28324a;
  cursor: pointer;
}
.injectables-pagination button.active {
  background: #2f3a8c;
  border-color: #2f3a8c;
  color: #fff;
}
.injectables-pagination button:disabled {
  opacity: 0.5;
  cursor: default;
}
@media (max-width: 900px) {
  .injectables-card { padding: 14px; }
  .injectables-controls { align-items: flex-start; }
}
@media (max-width: 640px) {
  .injectables-table { min-width: 680px; }
  .product-thumb { width: 54px; height: 48px; }
}
.contact-split {
  background: #2769B3;
  color: #fff;
  padding: 50px 0 40px;
}
.contact-split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
  grid-template-areas: "form copy";
}
.contact-card { grid-area: form; }
.contact-copy { grid-area: copy; align-self: flex-start; }
.contact-card {
  background: #fff;
  color: #111;
  border-radius: 16px;
  padding: 24px 24px 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  border: 2px solid #000;
  max-width: 480px;
  width: 100%;
}
.contact-card h2 { margin-top: 0; }
.contact-form-heading {
  font-weight: 400;
  font-family: "Canva Sans", "Poppins", sans-serif;
}
.contact-card form { display: grid; gap: 10px; }
.contact-card label { font-weight: 700; }
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d5d8de;
  background: #f8f9fb;
}
.contact-card textarea { min-height: 120px; resize: vertical; }
.cta-btn.full { width: 100%; justify-content: center; display: inline-flex; text-align: center; }
.contact-card .cta-btn.full {
  background: linear-gradient(120deg, #e53935, #d92f2f);
  box-shadow: 0 12px 28px rgba(229,57,53,0.28);
}
.contact-copy h2 { margin: 0 0 10px; color: #fff; }
.contact-copy h3 { margin: 18px 0 10px; color: #fff; }
.contact-copy p { color: #e9f1ff; }
.contact-copy ul { color: #e9f1ff; padding-left: 18px; line-height: 1.6; }

@media (max-width: 900px) {
  .contact-split-grid {
    grid-template-areas: "form" "copy";
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
@media (max-width: 1200px) {
  .welcome-card { right: 0; width: 60%; }
}
@media (max-width: 900px) {
  .welcome-grid { gap: 28px; }
  .welcome-visual { min-height: 280px; }
  .welcome-main { height: 240px; width: 100%; }
  .welcome-card { position: relative; width: 80%; right: auto; bottom: auto; margin: -24px auto 0; }
  .welcome-card img { height: 170px; }
  .welcome-copy { text-align: left; }
}


.critical {
  color: #EE3823;
  position: relative;
}

.reg {
  font-size: 30px;
  color: black;
  position: relative;
  top: -6px;
  left: 1px;
  font-weight: normal;   /* 🔥 bold remove */
}




.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  display: block;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  background: #fff;
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 18px;
  margin-top: 10px;
  color: #1b3c74;
}

.product-card p {
  font-size: 14px;
  color: #555;
}


/* Default (Desktop) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (🔥 important) */
@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;   /* one by one */
  }

  .product-card {
    width: 100%;
  }
}


.products .product-card img {
      cursor: pointer;
    }

    .image-lightbox {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1500;
    }

    .image-lightbox.is-open {
      display: flex;
    }

    .image-lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.82);
    }

    .image-lightbox-content {
      position: relative;
      z-index: 1;
      width: min(94vw, 980px);
      max-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 56px;
    }

    .image-lightbox-img {
      max-width: 100%;
      max-height: 86vh;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
      object-fit: contain;
    }

    .image-lightbox-close,
    .image-lightbox-nav {
      position: absolute;
      border: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(16, 16, 16, 0.8);
      color: #fff;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: background 0.2s ease;
    }

    .image-lightbox-close:hover,
    .image-lightbox-nav:hover {
      background: rgba(16, 16, 16, 0.95);
    }

    .image-lightbox-close {
      top: -56px;
      right: 0;
    }

    .image-lightbox-nav.prev {
      left: 0;
    }

    .image-lightbox-nav.next {
      right: 0;
    }

    body.lightbox-open {
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .image-lightbox-content {
        padding: 0 44px;
      }

      .image-lightbox-close {
        top: -50px;
      }
    }
