/* ============================================================
   CONSTRUCTION MD DESIGN — Master Stylesheet
   Clean, modern, professional — white / grey / dark blue
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Merriweather:wght@700;900&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Brand */
  --navy:       #0F2644;
  --navy-light: #1A3A5C;
  --navy-dark:  #091B33;
  --blue:       #2563EB;
  --blue-light: #3B82F6;
  --blue-pale:  #DBEAFE;
  --sky:        #E8F1FD;

  /* Neutrals */
  --white:      #FFFFFF;
  --off-white:  #F8F9FB;
  --gray-50:    #F1F3F5;
  --gray-100:   #E5E7EB;
  --gray-200:   #D1D5DB;
  --gray-300:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --gray-900:   #111827;

  /* Accent */
  --accent:     #F59E0B;
  --accent-dk:  #D97706;
  --success:    #10B981;
  --danger:     #EF4444;

  /* Typography */
  --ff-heading: 'Merriweather', Georgia, serif;
  --ff-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --sp-xs: .25rem; --sp-sm: .5rem; --sp-md: 1rem; --sp-lg: 1.5rem;
  --sp-xl: 2rem; --sp-2xl: 3rem; --sp-3xl: 4rem; --sp-4xl: 5rem; --sp-5xl: 7rem;

  /* Radii */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;

  /* Shadows */
  --sh-xs:  0 1px 2px rgba(0,0,0,.05);
  --sh-sm:  0 2px 6px rgba(0,0,0,.06);
  --sh-md:  0 4px 16px rgba(0,0,0,.08);
  --sh-lg:  0 8px 30px rgba(0,0,0,.1);
  --sh-xl:  0 16px 50px rgba(0,0,0,.12);
  --sh-blue: 0 4px 20px rgba(37,99,235,.2);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; font-size:16px }
body {
  font-family:var(--ff-body);
  background:var(--white);
  color:var(--gray-700);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img { max-width:100%; height:auto; display:block }
a { color:var(--blue); text-decoration:none; transition:var(--transition) }
a:hover { color:var(--navy) }
ul,ol { list-style:none }
h1,h2,h3,h4,h5,h6 { font-family:var(--ff-heading); line-height:1.25; color:var(--navy) }
h1 { font-size:clamp(2rem,4.5vw,3.2rem); font-weight:900 }
h2 { font-size:clamp(1.6rem,3.5vw,2.4rem); font-weight:700 }
h3 { font-size:clamp(1.15rem,2vw,1.45rem); font-weight:700 }
p  { margin-bottom:var(--sp-md) }

/* ---------- Utility ---------- */
.container { width:90%; max-width:var(--max-w); margin:0 auto }
.text-center { text-align:center }
.text-blue { color:var(--blue) }
.text-navy { color:var(--navy) }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0 }

/* Section */
.section { padding:var(--sp-5xl) 0 }
.section--gray { background:var(--off-white) }
.section--navy { background:var(--navy); color:var(--white) }
.section--navy h2,.section--navy h3 { color:var(--white) }
.section--navy p { color:rgba(255,255,255,.8) }

.section-header { margin-bottom:var(--sp-3xl); text-align:center }
.section-header h2 { margin-bottom:var(--sp-sm) }
.section-header .overline {
  display:inline-block;
  font-size:.8rem; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--blue); margin-bottom:var(--sp-sm);
}
.section-header .bar {
  width:60px; height:4px; border-radius:2px;
  background:linear-gradient(90deg,var(--blue),var(--accent));
  margin:var(--sp-md) auto;
}
.section-header p { color:var(--gray-500); max-width:600px; margin:0 auto; font-size:1.05rem }

/* ---------- Buttons ---------- */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 30px; border:none; border-radius:var(--r-sm);
  font-family:var(--ff-body); font-size:.92rem; font-weight:700;
  cursor:pointer; transition:var(--transition); text-transform:uppercase; letter-spacing:.6px;
}
.btn-primary {
  background:var(--blue); color:var(--white);
  box-shadow:var(--sh-blue);
}
.btn-primary:hover {
  background:var(--navy); color:var(--white);
  transform:translateY(-2px); box-shadow:var(--sh-lg);
}
.btn-outline {
  background:transparent; border:2px solid var(--blue); color:var(--blue);
}
.btn-outline:hover {
  background:var(--blue); color:var(--white); transform:translateY(-2px);
}
.btn-white {
  background:var(--white); color:var(--navy);
}
.btn-white:hover {
  background:var(--gray-50); transform:translateY(-2px); color:var(--navy);
}
.btn-accent {
  background:var(--accent); color:var(--navy);
}
.btn-accent:hover {
  background:var(--accent-dk); transform:translateY(-2px); color:var(--white);
}

/* ==================== NAVBAR ==================== */
.navbar {
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--gray-100);
  transition:var(--transition);
}
.navbar.scrolled { box-shadow:var(--sh-md) }
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  padding:var(--sp-md) 0;
}

/* Logo */
.nav-logo {
  display:flex; align-items:center; gap:10px;
  font-family:var(--ff-heading); font-size:1.3rem; font-weight:900; color:var(--navy);
}
.nav-logo .logo-mark {
  width:42px; height:42px;
  background:linear-gradient(135deg,var(--blue),var(--navy));
  border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:.85rem; font-weight:900; letter-spacing:1px;
}
.nav-logo .logo-text { display:flex; flex-direction:column; line-height:1.1 }
.nav-logo .logo-text .top { font-weight:800; font-size:.85rem; color:var(--navy); letter-spacing:1.5px; text-transform:uppercase }
.nav-logo .logo-text .bottom { font-weight:500; font-size:.72rem; color:var(--gray-500); letter-spacing:.5px; text-transform:uppercase }

/* Nav links */
.nav-links { display:flex; align-items:center; gap:var(--sp-lg) }
.nav-links a {
  color:var(--gray-700); font-size:.88rem; font-weight:600;
  position:relative; padding:4px 0;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
  background:var(--blue); border-radius:2px; transition:var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color:var(--navy) }
.nav-links a:hover::after,
.nav-links a.active::after { width:100% }
.nav-cta { padding:10px 22px; font-size:.82rem }

/* Hamburger */
.hamburger {
  display:none; flex-direction:column; gap:5px; cursor:pointer;
  background:none; border:none; padding:8px;
}
.hamburger span {
  width:24px; height:2.5px; background:var(--navy);
  border-radius:2px; transition:var(--transition);
}

/* ==================== HERO ==================== */
.hero {
  position:relative; min-height:100vh; display:flex; align-items:center;
  padding-top:80px; overflow:hidden;
  background:linear-gradient(160deg,var(--navy) 0%,var(--navy-light) 55%,var(--blue) 100%);
  color:var(--white);
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: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' fill-opacity='0.03'%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-glow {
  position:absolute; width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,235,.25) 0%,transparent 70%);
  top:-80px; right:-80px; z-index:0;
  animation:float 8s ease-in-out infinite;
}
.hero-glow-2 {
  position:absolute; width:350px; height:350px; border-radius:50%;
  background:radial-gradient(circle,rgba(245,158,11,.12) 0%,transparent 70%);
  bottom:-60px; left:-60px; z-index:0;
  animation:float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%,100% { transform:translate(0,0) scale(1) }
  50% { transform:translate(20px,-20px) scale(1.08) }
}
.hero-content { position:relative; z-index:2; max-width:660px }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15);
  border-radius:var(--r-full); padding:8px 20px;
  font-size:.82rem; font-weight:600; margin-bottom:var(--sp-xl);
}
.hero-badge .dot {
  width:8px; height:8px; background:var(--accent); border-radius:50%;
  animation:blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { color:var(--white); margin-bottom:var(--sp-lg) }
.hero h1 .accent {
  background:linear-gradient(135deg,var(--accent),#FBBF24);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero .lead {
  font-size:1.12rem; color:rgba(255,255,255,.8);
  margin-bottom:var(--sp-2xl); line-height:1.8;
}
.hero-buttons { display:flex; gap:var(--sp-md); flex-wrap:wrap }
.hero-stats {
  display:flex; gap:var(--sp-3xl); margin-top:var(--sp-3xl);
  padding-top:var(--sp-2xl); border-top:1px solid rgba(255,255,255,.12);
}
.hero-stat .number {
  font-family:var(--ff-heading); font-size:2.2rem; font-weight:900;
  color:var(--accent);
}
.hero-stat .label { font-size:.85rem; color:rgba(255,255,255,.65); margin-top:2px }

/* ==================== CARDS ==================== */
.card {
  background:var(--white); border:1px solid var(--gray-100);
  border-radius:var(--r-lg); padding:var(--sp-2xl);
  transition:var(--transition); position:relative; overflow:hidden;
}
.card:hover {
  transform:translateY(-6px); border-color:var(--blue-pale);
  box-shadow:var(--sh-lg);
}
.card-icon {
  width:56px; height:56px;
  background:var(--sky); border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:var(--sp-lg);
  transition:var(--transition);
}
.card:hover .card-icon {
  background:var(--blue); color:var(--white);
  transform:scale(1.05);
}
.card h3 { margin-bottom:var(--sp-sm) }
.card p { color:var(--gray-500); font-size:.93rem; margin:0 }
.card .card-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:.88rem; font-weight:700; color:var(--blue);
  margin-top:var(--sp-lg);
}
.card .card-link:hover { gap:10px }

/* Services grid */
.services-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:var(--sp-xl);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:var(--sp-xl);
}
.testimonial {
  background:var(--white); border:1px solid var(--gray-100);
  border-radius:var(--r-lg); padding:var(--sp-2xl); position:relative;
}
.testimonial .quote-mark {
  font-family:var(--ff-heading); font-size:4rem; font-weight:900;
  color:var(--blue-pale); line-height:1; position:absolute; top:16px; left:24px;
}
.testimonial .stars {
  color:var(--accent); font-size:1rem; margin-bottom:var(--sp-md); letter-spacing:2px;
}
.testimonial blockquote {
  font-size:.97rem; line-height:1.8; color:var(--gray-500);
  margin-bottom:var(--sp-lg); font-style:italic; position:relative; z-index:1;
}
.testimonial .author { display:flex; align-items:center; gap:var(--sp-md) }
.testimonial .avatar {
  width:46px; height:46px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--navy));
  display:flex; align-items:center; justify-content:center;
  font-weight:700; color:var(--white); font-size:1rem;
}
.testimonial .author-info .name { font-weight:700; color:var(--navy); font-size:.92rem }
.testimonial .author-info .role { font-size:.82rem; color:var(--gray-300) }

/* ==================== CTA ==================== */
.cta-section {
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 70% 50%,rgba(37,99,235,.15) 0%,transparent 60%);
}
.cta-inner {
  position:relative; z-index:1; text-align:center; max-width:680px; margin:0 auto;
}
.cta-inner h2 { color:var(--white); margin-bottom:var(--sp-md) }
.cta-inner p { color:rgba(255,255,255,.75); margin-bottom:var(--sp-2xl); font-size:1.05rem }
.cta-buttons { display:flex; gap:var(--sp-md); justify-content:center; flex-wrap:wrap }

/* ==================== FEATURES / WHY ==================== */
.features-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:var(--sp-xl);
}
.feature { text-align:center; padding:var(--sp-xl) }
.feature-icon {
  width:68px; height:68px;
  background:var(--sky); border:1px solid var(--blue-pale);
  border-radius:50%; margin:0 auto var(--sp-lg);
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem; transition:var(--transition);
}
.feature:hover .feature-icon {
  background:var(--blue); color:var(--white); border-color:var(--blue);
  box-shadow:var(--sh-blue); transform:scale(1.06);
}
.feature h3 { margin-bottom:var(--sp-sm); font-size:1.1rem }
.feature p { color:var(--gray-500); font-size:.9rem }

/* ==================== FORMS ==================== */
.form-group { margin-bottom:var(--sp-lg) }
.form-group label {
  display:block; font-weight:600; font-size:.88rem;
  color:var(--gray-700); margin-bottom:var(--sp-sm);
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:13px 16px;
  background:var(--white); border:1px solid var(--gray-200);
  border-radius:var(--r-sm); color:var(--gray-900);
  font-family:var(--ff-body); font-size:.93rem; transition:var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none; border-color:var(--blue);
  box-shadow:0 0 0 3px var(--blue-pale);
}
.form-group textarea { resize:vertical; min-height:130px }
.form-group select option { background:var(--white); color:var(--gray-900) }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-lg) }
.form-check {
  display:flex; align-items:flex-start; gap:var(--sp-sm); margin-bottom:var(--sp-lg);
}
.form-check input[type="checkbox"] { width:18px; height:18px; margin-top:3px; accent-color:var(--blue) }
.form-check label { font-size:.84rem; color:var(--gray-500); margin:0 }

/* ==================== CONTACT ==================== */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-3xl) }
.contact-info-item { display:flex; gap:var(--sp-md); margin-bottom:var(--sp-xl) }
.contact-info-icon {
  width:48px; height:48px; min-width:48px;
  background:var(--sky); border-radius:var(--r-md);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; color:var(--blue);
}
.contact-info-text h4 { color:var(--navy); font-family:var(--ff-body); font-weight:700; margin-bottom:2px; font-size:.95rem }
.contact-info-text p { color:var(--gray-500); font-size:.9rem; margin:0 }

/* ==================== PAGE HEADER (inner) ==================== */
.page-header {
  padding:150px 0 70px;
  background:linear-gradient(160deg,var(--navy) 0%,var(--navy-light) 100%);
  text-align:center; color:var(--white); position:relative; overflow:hidden;
}
.page-header::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:5px;
  background:linear-gradient(90deg,var(--blue),var(--accent),var(--blue));
}
.page-header h1 { color:var(--white); margin-bottom:var(--sp-sm) }
.breadcrumb {
  display:flex; align-items:center; justify-content:center; gap:var(--sp-sm);
  font-size:.88rem; color:rgba(255,255,255,.55);
}
.breadcrumb a { color:rgba(255,255,255,.7) }
.breadcrumb a:hover { color:var(--white) }

/* ==================== LEGAL ==================== */
.legal-content { max-width:860px; margin:0 auto }
.legal-content h2 {
  font-size:1.3rem; margin:var(--sp-2xl) 0 var(--sp-md);
  padding-bottom:var(--sp-sm); border-bottom:2px solid var(--gray-100);
  font-family:var(--ff-body); font-weight:700;
}
.legal-content h3 {
  font-size:1.05rem; margin:var(--sp-xl) 0 var(--sp-sm);
  font-family:var(--ff-body); font-weight:700;
}
.legal-content p,
.legal-content li { color:var(--gray-500); font-size:.93rem; line-height:1.85 }
.legal-content ul { padding-left:var(--sp-xl); margin-bottom:var(--sp-md) }
.legal-content ul li {
  position:relative; padding-left:var(--sp-md); margin-bottom:var(--sp-sm);
}
.legal-content ul li::before {
  content:''; position:absolute; left:0; top:10px;
  width:6px; height:6px; background:var(--blue); border-radius:50%;
}
.legal-content .info-box {
  background:var(--sky); border:1px solid var(--blue-pale);
  border-radius:var(--r-md); padding:var(--sp-xl); margin:var(--sp-xl) 0;
}
.legal-content .info-box p { color:var(--gray-700) }

/* ==================== MAP ==================== */
.map-wrap {
  width:100%; height:350px; background:var(--gray-50);
  border:1px solid var(--gray-100); border-radius:var(--r-lg);
  overflow:hidden;
}
.map-wrap iframe { width:100%; height:100%; border:0 }

/* ==================== ABOUT ==================== */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-3xl); align-items:center }
.about-image {
  height:420px;
  background:linear-gradient(135deg,var(--sky),var(--blue-pale));
  border-radius:var(--r-lg); border:1px solid var(--blue-pale);
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.about-image::before {
  content:''; position:absolute; inset:0;
  background:
    repeating-linear-gradient(
      45deg, transparent, transparent 18px,
      rgba(37,99,235,.04) 18px, rgba(37,99,235,.04) 36px
    );
}
.about-image .icon-lg { font-size:5rem; position:relative; z-index:1; opacity:.35 }
.about-text h2 { margin-bottom:var(--sp-lg) }
.about-text p { color:var(--gray-500) }
.values-list { margin-top:var(--sp-xl) }
.values-list li { display:flex; align-items:flex-start; gap:var(--sp-md); margin-bottom:var(--sp-lg) }
.values-list .check {
  width:28px; height:28px; min-width:28px;
  background:var(--blue); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem; color:var(--white); font-weight:700; margin-top:2px;
}
.values-list .val-text strong { color:var(--navy); display:block; margin-bottom:2px }
.values-list .val-text span { color:var(--gray-500); font-size:.9rem }

/* ==================== PROCESS ==================== */
.process-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:var(--sp-xl); counter-reset:step;
}
.process-step { text-align:center; padding:var(--sp-xl); position:relative }
.process-step::before {
  counter-increment:step; content:counter(step,decimal-leading-zero);
  font-family:var(--ff-heading); font-size:2.8rem; font-weight:900;
  color:var(--blue-pale); display:block; margin-bottom:var(--sp-md);
}
.process-step h3 { margin-bottom:var(--sp-sm); font-size:1.05rem }
.process-step p { color:var(--gray-500); font-size:.88rem }

/* ==================== FOOTER ==================== */
.footer {
  background:var(--navy); color:rgba(255,255,255,.7);
  padding:var(--sp-5xl) 0 0;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:var(--sp-2xl);
}
.footer-brand .nav-logo { margin-bottom:var(--sp-md) }
.footer-brand .nav-logo .logo-text .top,
.footer-brand .nav-logo .logo-text .bottom { color:rgba(255,255,255,.9) }
.footer-brand p { color:rgba(255,255,255,.55); font-size:.9rem; max-width:280px }
.footer-enterprise { color:rgba(255,255,255,.4); font-size:.82rem; margin-top:var(--sp-sm) }
.footer-col h4 {
  font-family:var(--ff-body); font-weight:700; font-size:.9rem;
  color:var(--white); margin-bottom:var(--sp-lg);
  text-transform:uppercase; letter-spacing:1.5px;
}
.footer-col ul li { margin-bottom:var(--sp-sm) }
.footer-col ul li a { color:rgba(255,255,255,.55); font-size:.88rem; transition:var(--transition) }
.footer-col ul li a:hover { color:var(--accent); padding-left:4px }
.footer-bottom {
  margin-top:var(--sp-3xl); padding:var(--sp-lg) 0;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:var(--sp-md);
}
.footer-bottom p { color:rgba(255,255,255,.4); font-size:.82rem; margin:0 }
.footer-legal-links { display:flex; gap:var(--sp-lg); flex-wrap:wrap }
.footer-legal-links a { color:rgba(255,255,255,.4); font-size:.82rem }
.footer-legal-links a:hover { color:var(--accent) }

/* ==================== ANIMATIONS ==================== */
.fade-up { opacity:0; transform:translateY(28px); transition:.6s ease }
.fade-up.visible { opacity:1; transform:translateY(0) }

/* ==================== RESPONSIVE ==================== */
@media(max-width:992px) {
  .nav-links {
    position:fixed; top:0; right:-100%; width:80%; max-width:360px; height:100vh;
    background:var(--white); flex-direction:column; justify-content:center;
    padding:var(--sp-2xl); gap:var(--sp-xl);
    box-shadow:var(--sh-xl); transition:var(--transition); z-index:999;
  }
  .nav-links.open { right:0 }
  .hamburger { display:flex; z-index:1000 }
  .hero-stats { gap:var(--sp-xl); flex-wrap:wrap }
  .footer-grid { grid-template-columns:1fr 1fr }
  .contact-grid { grid-template-columns:1fr }
  .about-grid { grid-template-columns:1fr }
  .about-image { height:280px }
  .form-row { grid-template-columns:1fr }
}
@media(max-width:600px) {
  .hero-stats { flex-direction:column; gap:var(--sp-lg) }
  .footer-grid { grid-template-columns:1fr }
  .hero-buttons { flex-direction:column }
  .hero-buttons .btn { width:100%; justify-content:center }
  .cta-buttons { flex-direction:column; align-items:center }
  .cta-buttons .btn { width:100%; justify-content:center }
  .breadcrumb { flex-wrap:wrap; justify-content:center }
  .footer-bottom { flex-direction:column; text-align:center }
  .footer-legal-links { justify-content:center }
}
