/* ===== BRAND COLORS ===== */
:root {
  --primary: #1a3c6b;
  --accent: #f26522;
  --dark: #1a2535;
  --light-bg: #f4f7fc;
}

/* ===== BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; color: #333; }
section { scroll-margin-top: 80px; }

/* ===== NAVBAR ===== */
#mainNavbar {
  background: transparent;
  transition: all 0.35s ease;
  padding: 16px 0;
}
#mainNavbar.scrolled, #mainNavbar.solid {
  background: var(--primary) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 10px 0;
}
#mainNavbar .navbar-brand {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.5px;
  text-decoration: none;
}
#mainNavbar .navbar-brand span { color: var(--accent); }
#mainNavbar .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  padding: 8px 15px !important;
  transition: color 0.2s;
  font-size: 0.95rem;
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active { color: var(--accent) !important; }
#mainNavbar .btn-contact {
  background: var(--accent);
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 20px !important;
  margin-left: 6px;
  transition: background 0.2s;
}
#mainNavbar .btn-contact:hover { background: #d4551a; color: #fff !important; }
#mainNavbar .navbar-toggler { border-color: rgba(255,255,255,0.3); }
#mainNavbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel .carousel-item {
  background: linear-gradient(135deg, #081629 0%, #1a3c6b 60%, #0a2a5e 100%);
  position: relative;
  overflow: hidden;
}
.slide-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(242,101,34,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.hero-geo {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 0 90px;
}
.hero-badge {
  display: inline-block;
  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.40);
  color: var(--accent);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  transition: all 0.22s;
  display: inline-block;
}
.btn-accent:hover { background: #d4551a; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(242,101,34,0.4); }
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.45);
  color: #fff;
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  transition: all 0.22s;
  display: inline-block;
  margin-left: 12px;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.10); color: #fff; }

/* Hero Visual Cards */
.hero-visual { position: relative; z-index: 2; padding: 130px 0 90px; }
.float-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.float-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, background 0.3s;
  gap: 10px;
}
.float-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.11); }
.float-card i { font-size: 2.2rem; color: var(--accent); }
.float-card.wide { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; gap: 16px; padding: 18px 24px; }
.float-card.wide i { font-size: 1.6rem; }
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
}
.hero-carousel .carousel-indicators .active { background: var(--accent); }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon { display: none; }

/* ===== SECTION HELPERS ===== */
.section-header { text-align: center; margin-bottom: 55px; }
.section-badge {
  display: inline-block;
  background: rgba(242,101,34,0.10);
  color: var(--accent);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-subtitle {
  color: #6c757d;
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.accent-bar {
  width: 56px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ===== ABOUT SECTION ===== */
.about-section { padding: 100px 0; background: #fff; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  color: #444;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.stats-panel {
  background: linear-gradient(145deg, #1a3c6b 0%, #0d2347 100%);
  border-radius: 20px;
  padding: 40px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.stats-panel::after {
  content: '';
  position: absolute;
  right: -50px; top: -50px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.stat-box { text-align: center; padding: 20px 10px; }
.stat-number {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-top: 6px; font-weight: 500; }
.stats-panel .tech-icons { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.stats-panel .tech-icons i { font-size: 1.9rem; color: rgba(255,255,255,0.25); transition: color 0.2s; cursor: default; }
.stats-panel .tech-icons i:hover { color: var(--accent); }

/* ===== BRAND CARD (Products/Services) ===== */
.section-light { padding: 100px 0; background: var(--light-bg); }
.section-white { padding: 100px 0; background: #fff; }
.brand-card {
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  transition: all 0.3s;
  height: 100%;
  border-top: 4px solid transparent;
  position: relative;
}
.brand-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.12);
  border-top-color: var(--accent);
}
.card-icon-wrap {
  width: 58px; height: 58px;
  background: rgba(242,101,34,0.10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon-wrap i { font-size: 1.65rem; color: var(--accent); }
.brand-card h5 { font-weight: 700; color: var(--primary); font-size: 1.07rem; margin-bottom: 10px; }
.brand-card p { color: #6c757d; font-size: 0.91rem; line-height: 1.75; margin: 0; }
.btn-learn {
  display: inline-block;
  margin-top: 18px;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-learn:hover { background: var(--primary); color: #fff; }

/* ===== CLIENT LOGOS SLIDER ===== */
.clients-section { padding: 70px 0; background: #fff; overflow: hidden; }
.clients-track-outer { overflow: hidden; }
.clients-track {
  display: flex;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo-box {
  flex-shrink: 0;
  width: 180px;
  height: 86px;
  margin: 0 12px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: #b0b8c9;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  filter: grayscale(1);
  transition: all 0.3s;
  cursor: default;
}
.client-logo-box:hover {
  filter: grayscale(0);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--light-bg); }
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 20px;
  font-size: 6rem;
  color: rgba(242,101,34,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: var(--accent); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card blockquote {
  color: #555;
  font-size: 0.94rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
  border: none;
  padding: 0;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2a6db5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author h6 { margin: 0; font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.testimonial-author small { color: #aaa; }
.carousel-btn-group { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.carousel-btn {
  width: 44px; height: 44px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-btn:hover { background: var(--accent); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 72px 0 0; }
.footer .footer-brand { font-size: 1.4rem; font-weight: 800; color: #fff; display: block; margin-bottom: 14px; }
.footer .footer-brand span { color: var(--accent); }
.footer p { font-size: 0.91rem; line-height: 1.75; }
.footer h6 { color: #fff; font-weight: 700; font-size: 0.98rem; margin-bottom: 20px; letter-spacing: 0.3px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  font-size: 0.91rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-links a::before { content: '›'; color: var(--accent); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.60);
  font-size: 0.90rem;
  align-items: flex-start;
  line-height: 1.55;
}
.footer-contact-list li i { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.80);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.86rem; }
.footer-bottom a { color: var(--accent); text-decoration: none; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #081629 0%, #1a3c6b 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(242,101,34,0.09), transparent 60%);
}
.page-hero h1 { color: #fff; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); position: relative; margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,0.68); font-size: 1.05rem; position: relative; }
.page-hero .breadcrumb { justify-content: center; position: relative; }
.breadcrumb-item a { color: var(--accent); text-decoration: none; }
.breadcrumb-item { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.80); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.30); }

/* ===== BLOG CARDS ===== */
.blog-card {
  background: #fff;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  transition: all 0.3s;
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(0,0,0,0.13); }
.blog-img-wrap {
  height: 196px;
  background: linear-gradient(135deg, #1a3c6b, #2a6db5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 3.2rem;
}
.blog-body { padding: 24px; }
.blog-badge {
  display: inline-block;
  background: rgba(242,101,34,0.10);
  color: var(--accent);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.blog-card h5 { font-weight: 700; color: var(--primary); font-size: 1rem; line-height: 1.5; margin-bottom: 10px; }
.blog-card p { color: #777; font-size: 0.88rem; line-height: 1.72; margin-bottom: 16px; }
.blog-meta { color: #bbb; font-size: 0.80rem; display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.blog-meta i { color: var(--accent); }
.btn-read {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.87rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-read:hover { color: var(--accent); gap: 10px; }

/* ===== TEAM ===== */
.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.3s;
  height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(0,0,0,0.13); }
.team-avatar {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--primary), #2a6db5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border: 4px solid rgba(242,101,34,0.20);
}
.team-card h5 { font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-role { color: var(--accent); font-size: 0.86rem; font-weight: 600; margin-bottom: 14px; display: block; }
.team-card p { color: #777; font-size: 0.88rem; line-height: 1.7; }

/* ===== TIMELINE ===== */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: #e4e9f0;
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 30px);
  margin-bottom: 36px;
  position: relative;
}
.tl-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 30px);
}
.tl-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(242,101,34,0.3);
}
.tl-content {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  max-width: 380px;
  border-left: 4px solid var(--accent);
}
.tl-year { color: var(--accent); font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.tl-content h6 { font-weight: 700; color: var(--primary); margin-bottom: 4px; font-size: 0.97rem; }
.tl-content p { color: #777; font-size: 0.87rem; margin: 0; line-height: 1.6; }
@media (max-width: 767px) {
  .timeline::before { left: 18px; }
  .tl-item, .tl-item:nth-child(even) { justify-content: flex-start; padding-left: 55px; padding-right: 0; }
  .tl-item::after { left: 18px; }
}

/* ===== MISSION / VALUES ===== */
.mission-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  height: 100%;
  border-top: 4px solid var(--accent);
  transition: transform 0.3s;
}
.mission-card:hover { transform: translateY(-5px); }
.mission-icon {
  width: 62px; height: 62px;
  background: rgba(242,101,34,0.10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.mission-icon i { font-size: 1.75rem; color: var(--accent); }
.mission-card h5 { font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.mission-card p { color: #6c757d; font-size: 0.90rem; line-height: 1.75; margin: 0; }

/* ===== CONTACT ===== */
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-icon {
  width: 50px; height: 50px;
  background: rgba(242,101,34,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-item h6 { font-weight: 700; color: var(--primary); margin-bottom: 3px; font-size: 0.97rem; }
.contact-info-item p { color: #777; font-size: 0.90rem; margin: 0; line-height: 1.55; }
.map-placeholder {
  background: var(--light-bg);
  border-radius: 12px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  border: 2px dashed #dee2e6;
  gap: 8px;
}
.map-placeholder i { font-size: 2.5rem; }
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.22rem rgba(26,60,107,0.15);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #0d2347);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(242,101,34,0.13), transparent 60%);
}
.cta-banner h2 { color: #fff; font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.5rem); position: relative; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.68); font-size: 1.05rem; position: relative; margin-bottom: 30px; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== OUTLINE BRAND BUTTON ===== */
.btn-outline-brand {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.22s;
  display: inline-block;
}
.btn-outline-brand:hover { background: var(--primary); color: #fff; }
