@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap");

/* ===================================================== */
/* GLOBAL RESET + BASE */
/* ===================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #0b1020;
  color: #e6e9f2;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

ul,
ol {
  padding-left: 1.2rem;
  margin-top: 5px;
  margin-bottom: 1rem;
  list-style-position: outside;
}

/* ===================================== */
/* NAVBAR - Desktop + Mobile Clean Version */
/* ===================================== */

/* Navbar - Logo (Left) */
.logo img {
  height: 50px;
  display: block;
  border-radius: 50%;
}

/* Navbar container */
.navbar {
  color: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(11, 16, 32, 0.95);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a:hover {
  opacity: 0.75;
}

/* Desktop Blog vertical divider */
.nav-blog {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 25px; /* space between line and Blog text */
  margin-left: 0;
}

.nav-links a.nav-blog {
  margin-left: -25px; /* aligns Blog text */
}

/* Hide horizontal divider by default on desktop */
.nav-divider {
  display: none;
}

/* Mobile Hamburger Menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: white;
  cursor: pointer;
}

/* ===================================== */
/* MOBILE STYLES - ≤768px */
/* ===================================== */
@media (max-width: 768px) {
  /* Hamburger button visible */
  .nav-toggle {
    display: block;
  }

  /* Stack links vertically */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    background: rgba(11, 16, 32, 0.97);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease;
  }

  /* Active state when menu is open */
  .nav-links.active {
    max-height: 400px;
    opacity: 1;
    padding: 22px 0;
  }

  /* Horizontal divider for mobile only */
  .nav-divider {
    display: block;
    width: 70%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 8px auto 0 auto;
  }

  /* Remove desktop vertical line on mobile */
  .nav-blog {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
  .nav-links a.nav-blog {
    margin-left: 0;
  }
}

/* ===================================================== */
/* HERO */
/* ===================================================== */

/* Hero - Background */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #121a33, #0b1020);
  overflow: hidden;
}

.hero .container {
  padding-top: 100px;
}

/* Hero - Text */
.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
}

/* Hero - Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Hero - Gradient Text */
.gradient-text {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

/* Hero - Gradient Text (Service, Portfolio & Blog Page(s) ) */
.header-other {
  font-size: clamp(4.2rem, 5vw, 4rem);
}
/* Hero - Gradient Text (Service, Portfolio & Blog Page(s) ) - Mobile Only */
@media (max-width: 768px) {
  .header-other {
    font-size: 2.8rem;
  }
}

/* ============================ */
/* HERO - Background Image (Homepage) */
/* ============================ */

/* Hero - Image */
.hero {
  position: relative;
  overflow: hidden;
}

/* Hero - Blurred background image layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../2_images/scaleup_devs_office_hero.webp") center/cover
    no-repeat;

  will-change: transform;
  filter: blur(5px);
  transform: scale(1.1);

  z-index: 0;
  opacity: 0.35;
}

/* Hero - Keeps hero text above the blur */
.hero .container {
  position: relative;
  z-index: 2;
}

/* Hero - Dark Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  z-index: 1;
}

/* ==================================================================== */
/* HERO - Background Image(s) - Services, Portfolio & Blog Pages */
/* ==================================================================== */

.services-page .hero::before {
  background: url("../2_images/scaleup_devs_services_page_hero.webp")
    center/cover no-repeat;
}

.portfolio-page .hero::before {
  background: url("../2_images/scaleup_devs_portfolio_page_hero.webp")
    center/cover no-repeat;
}

.blog-page .hero::before {
  background: url("../2_images/scaleup_devs_blog_page_hero.webp") center/cover
    no-repeat;
}

/* ===================================== */
/* HERO SCROLL DOWN ARROW - FIXED BOTTOM */
/* ===================================== */

.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.6rem;
  color: #ffffff;
  animation: bounceDown 1.6s infinite;
  z-index: 10;
}

.scroll-down:hover {
  opacity: 1;
  transform: translateX(-50%) scale(1.15);
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(14px);
  }
}

.scroll-down:hover {
  opacity: 1;
  transform: translateX(-50%) scale(1.15);
}

/* Bounce Animation */
@keyframes bounceDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(14px);
  }
}

/* ===================================================== */
/* SECTIONS */
/* ===================================================== */

.section {
  padding: 100px 0;
  background: #f5f7ff;
  color: #0b1020;
}

.section.dark {
  background: #0b1020;
  color: #e6e9f2;
}

.section-header {
  margin-bottom: 48px;
}

.center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 28px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Sections - Privacy Page */
.privacy-policy .section {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 0;
}

.privacy-policy .section-header {
  margin-top: 0;
  margin-bottom: 20px;
}

/* ===================================================== */
/* SERVICES HIGHLIGHT SECTION */
/* ===================================================== */

.services-highlight {
  padding: 100px 20px;
  background: #f5f7ff;
}

.services-highlight,
.services-highlight h2,
.services-highlight h3,
.services-highlight p,
.services-highlight,
.section-label {
  color: #000000;
}

/* Stronger Heading */
.services-highlight h2 {
  color: #0b1020;
  font-weight: 700;
}

/* Subtext */
.section-subtext {
  max-width: 600px;
  margin: 15px 0 60px 0;
  font-size: 1.1rem;
  color: #000000;
}

/* Grid */
.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.service-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  border: 1px solid #e4e8f5;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border-color: #0b1020;
}

/* Icons - Make Clearer */
.service-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #ff7e5f;
}

/* Titles */
.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
}

/* Paragraph */
.service-card p {
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.6;
}

.services-cta {
  margin-top: 60px;
}

.services-cta .btn.secondary {
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
}

.services-cta .btn.secondary:hover {
  background: #000000;
  color: #ffffff;
}

/* List */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  margin-bottom: 10px;
  color: #000000;
  position: relative;
  padding-left: 18px;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff7e5f;
  font-weight: bold;
}

/* ===================================================== */
/* PORTFOLIO SECTION - CONTACT STYLE LAYOUT */
/* ===================================================== */

.portfolio-section {
  padding: 100px 20px;
  background: #f5f7ff;
}

.portfolio-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  border: 1px solid #e4e8f5;
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: #000000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.portfolio-card h3 {
  margin-bottom: 15px;
  color: #0b1020;
}

.portfolio-card p {
  margin-bottom: 20px;
  color: #000000;
}

/* Force black text inside portfolio section */
.portfolio-section,
.portfolio-section h2,
.portfolio-section h3,
.portfolio-section p,
.portfolio-section .section-label {
  color: #000000;
}

.portfolio-section .btn.secondary {
  color: #000000;
  border-color: #000000;
}

.portfolio-section .btn.secondary:hover {
  border-color: #000000;
}

/* ===================================================== */
/* SERVICES - (Cards) */
/* ===================================================== */

.card {
  background: white;
  color: #0b1020;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card.accent {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* ============================ */
/* REVIEWS SECTION */
/* ============================ */

.reviews-section {
  background: radial-gradient(circle at top, #121a33, #0b1020);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.reviews-section .gradient-text {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.reviews-section .hero-lead {
  max-width: 720px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Review Cards Layout */
.reviews-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Individual Review Card */
.review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  padding: 25px 20px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.review-card p {
  font-style: italic;
  margin-bottom: 15px;
}

.review-card span {
  font-weight: 600;
  color: #feb47b;
}

/* Hover Effect */
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* Buttons Row (Matches Hero Buttons) */
.reviews-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .reviews-cards {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    max-width: 90%;
  }
}

/* ===================================================== */
/* DIVIDER (Between "Our Reviews" & "FAQ's") */
/* ===================================================== */
.section-divider {
  width: 100%;
  height: 1px;
  margin: 0 auto;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
}

/* ===================================================== */
/* FAQ + STEPS */
/* ===================================================== */

.step,
.faq-item {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ===================================================== */
/* PRICING */
/* ===================================================== */

.price-card {
  background: white;
  color: #0b1020;
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.price-card.featured {
  border: 2px solid #feb47b;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ff7e5f;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
}

/* ===================================================== */
/* BUTTONS */
/* ===================================================== */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 14px 22px;
  border-radius: 999px;

  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;

  cursor: pointer;
  transition: all 0.25s ease;
}

.btn.primary {
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  border: none;
  color: #0b1020;
}

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(230, 233, 242, 0.4);
  color: #e6e9f2;
}

.btn.secondary.small {
  color: #000000;
  border-color: #000000;
}

.btn.primary:hover {
  box-shadow: 0 8px 25px rgba(255, 126, 95, 0.35);
}

.btn.secondary:hover {
  border-color: rgba(230, 233, 242, 0.8);
}

.btn.outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  padding: 14px 22px;
  margin-top: 18px;

  border: 1px solid rgba(11, 16, 32, 0.25);
  background: transparent;

  color: #0b1020;
  font-weight: 600;

  border-radius: 999px;
  text-decoration: none;

  cursor: pointer;
  transition: all 0.25s ease;
}

.btn.outline:hover {
  background: rgba(11, 16, 32, 0.06);
  border-color: rgba(11, 16, 32, 0.4);
}

.price-card .btn {
  width: 100%;
  margin-top: 18px;
}

/* ===================================================== */
/* BLOG SECTION */
/* ===================================================== */

.blog-section,
.blog-section h2,
.blog-section h3,
.blog-section p,
.blog-section,
.section-label {
  color: #000000;
}

.blog-section {
  padding: 100px 20px;
  background: #f5f7ff;
}

.blog-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #000000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: #ff7e5f;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #0b1020;
}

.blog-card p {
  font-size: 0.8rem;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #000000;
}

/* ===================================================== */
/* BLOG ARTICLE PAGE */
/* ===================================================== */

.blog-article {
  background: #ffffff;
  color: #0b1020;
}

/* ========================= */
/* BLOG HERO */
/* ========================= */

.blog-hero {
  padding: 140px 20px 70px;
  background: #0b1020;
  border-bottom: 1px solid #e4e8f5;
}

.blog-hero .section-label {
  color: #ff7e5f;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-hero h1 {
  color: #ffffff;
  margin-top: 18px;
  font-size: 2.4rem;
  line-height: 1.25;
  max-width: 850px;
}

.blog-meta-intro {
  font-size: 0.9rem;
  color: #ff7e5f;
}

.blog-meta {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #b6becf;
}

/* ========================= */
/* BLOG CONTENT WRAPPER */
/* ========================= */

.blog-content-wrapper {
  padding: 80px 20px 120px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 70px;
  align-items: start;
}

/* ========================= */
/* MAIN ARTICLE */
/* ========================= */

.blog-main {
  max-width: 750px;
}

.blog-main .lead {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.7;
}

.blog-main h2 {
  margin-top: 45px;
  margin-bottom: 18px;
  font-size: 1.6rem;
  font-weight: 600;
}

.blog-main p {
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 1rem;
}

.blog-main ul {
  margin-bottom: 25px;
  padding-left: 22px;
}

.blog-main li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Highlighted strong text */
.blog-main strong {
  color: #0b1020;
  font-weight: 600;
}

/* ========================= */
/* CTA BOX */
/* ========================= */

.blog-cta-box {
  margin-top: 60px;
  padding: 35px;
  background: #f5f7ff;
  border-radius: 18px;
  border: 1px solid #e4e8f5;
}

.blog-cta-box h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.blog-cta-box p {
  margin-bottom: 20px;
}

/* ========================= */
/* SIDEBAR */
/* ========================= */

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-box {
  background: #f9fafc;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e4e8f5;
}

.sidebar-box h4 {
  margin-bottom: 15px;
  font-size: 1.05rem;
  font-weight: 600;
}

.sidebar-box p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-box ul li {
  margin-bottom: 10px;
}

.sidebar-box a {
  text-decoration: none;
  color: #0b1020;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.sidebar-box a:hover {
  color: #ff7e5f;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .blog-main {
    max-width: 100%;
  }

  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-hero {
    padding: 120px 20px 60px;
  }
}

@media (max-width: 600px) {
  .blog-hero h1 {
    font-size: 1.7rem;
  }

  .blog-main h2 {
    font-size: 1.4rem;
  }

  .blog-content-wrapper {
    padding: 60px 20px 100px;
  }
}

/* ===================================== */
/* PRIVACY POLICY */
/* ===================================== */

/* Privacy Policy - Title */
.privacy-policy-header {
  padding-top: 50px;
}

/* Privacy Policy - Title (Disable on Mobile) */
@media (max-width: 768px) {
  .privacy-policy-header {
    padding-top: 10px;
  }
}

/* Privacy Policy - Button */
.privacy-policy-button {
  margin-bottom: 50px;
}

/* ===================================== */
/* CONTACT FORM */
/* ===================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Form layout */
.contact-form {
  display: grid;
  gap: 16px;
}

/* Inputs full width + clean */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.8rem;
  font-family: inherit;
}

/* Textarea height */
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Button spacing */
.contact-form .btn {
  width: fit-content;
  margin-top: 10px;
}

/* ===================================================== */
/* SCROLL REVEAL ANIMATIONS */
/* ===================================================== */

.reveal {
  opacity: 0; /* start invisible */
  transform: translateY(30px); /* move down a bit */
  transition: all 0.6s ease-out; /* smooth fade + slide */
}

.reveal.active {
  opacity: 1; /* fully visible */
  transform: translateY(0); /* move to normal position */
}

/* ===================================================== */
/* FOOTER */
/* ===================================================== */

footer {
  background: #060a14;
  color: #9aa0b2;
  padding: 70px 20px 25px;
  font-size: 0.95rem;
}

/* Footer grid restored */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 45px;
  margin-bottom: 35px;
}

/* Footer headings */
.footer-grid strong,
.footer-grid h4 {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #e6e9f2;
}

/* Footer links */
.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: #9aa0b2;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #ff7e5f;
}

/* Footer brand paragraph */
.footer-brand p {
  max-width: 260px;
  margin-top: 12px;
  line-height: 1.6;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  border-top: 1px solid rgba(154, 160, 178, 0.2);
  padding-top: 18px;
}

/* Footer brand title (ScaleUp Devs bigger + bold) */
.footer-brand .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e6e9f2;
  margin-bottom: 10px;
}

/* Social icon colour + spacing */
.footer-socials i {
  color: #ff7e5f; /* Orange accent */
  font-size: 1rem;
  margin-right: 10px;
}

/* Align icon + text nicely */
.footer-socials a {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer links hover glow */
.footer-grid a:hover {
  color: #ff7e5f;
}

/* Footer column headings stronger */
.footer-grid strong,
.footer-grid h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
