@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');
@import url('./variables.css');

/* ==========================================================================
   Global Resets & Base Typography (Vasantha Editorial Standard)
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-white);
  color: var(--text-body);
  font-family: var(--font-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.65;
  background: var(--color-white);
  min-height: 100vh;
}

/* Custom Clean Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-blue);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section, [id] {
  scroll-margin-top: calc(var(--header-height) + 10px);
}

.section {
  padding: 6rem 0;
  position: relative;
}

.bgr-white {
  background-color: var(--color-white);
}

.bgr-grey {
  background-color: var(--color-bg-light);
}

.bgr-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  line-height: 1.18;
}

/* ==========================================================================
   Floating Vertical Contact Tab (Signature Vasantha Feature)
   ========================================================================== */
.floating-contact-tab {
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.12);
  padding: 24px 12px 24px 18px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform-origin: right center;
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
  z-index: 998;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.floating-contact-tab:hover {
  background: var(--brand-blue);
  color: #ffffff;
  padding-right: 18px;
  box-shadow: -6px 6px 25px rgba(0, 80, 255, 0.25);
}

/* ==========================================================================
   Header (Clean Minimalist White)
   ========================================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid #eaeaea;
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo-img {
  height: 32px;
  width: auto;
  max-width: 36px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.site-logo:hover .site-logo-img {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-text span {
  font-weight: 400;
  color: #666666;
}

/* Header Right Controls */
.header-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-trigger-btn {
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  transition: var(--transition);
}

.search-trigger-btn:hover {
  transform: scale(1.1);
}

.header-divider-v {
  width: 1px;
  height: 20px;
  background: #e0e0e0;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #444444;
  cursor: pointer;
}
.lang-selector:hover {
  color: var(--brand-blue);
}

.lang-selector svg {
  width: 16px;
  height: 16px;
  color: #666666;
}

/* Hamburger Icon (Three Blue Lines) */
.hamburger-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 17px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

.hamburger-toggle span {
  width: 100%;
  height: 2.2px;
  background-color: var(--brand-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger-toggle:hover span {
  background-color: var(--brand-blue-hover);
}

/* ==========================================================================
   Fullscreen Menu Overlay (Matching Vasantha's Exact Mobile & Desktop Menu)
   ========================================================================== */
.fullscreen-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: #141414;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 4rem;
  overflow: hidden;
}

.fullscreen-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Massive Geometric Watermark Pattern in Menu (Matching Screenshot 2) */
.menu-bg-watermark {
  position: absolute;
  top: -5%;
  left: -20%;
  width: 95vw;
  max-width: 680px;
  opacity: 0.055;
  pointer-events: none;
  transform: rotate(-10deg);
  object-fit: contain;
}

.menu-top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.menu-lang-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888888;
  font-size: 0.9rem;
}
.menu-lang-info a {
  color: #888888;
}
.menu-lang-info a.active {
  color: #ffffff;
  font-weight: 700;
}

.menu-close-btn {
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.25rem;
}

.menu-close-btn:hover {
  color: var(--brand-blue);
  transform: rotate(90deg);
}

/* Right Aligned Editorial Menu Links */
.menu-nav-links-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 1.25rem;
  position: relative;
  z-index: 10;
  margin: auto 0;
}

.primary-menu-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.menu-item-large {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  transition: var(--transition);
  display: block;
}

.menu-item-large:hover {
  color: var(--brand-blue);
  transform: translateX(-10px);
}

.secondary-menu-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.menu-item-small {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #ffffff;
  transition: var(--transition);
}

.menu-item-small:hover {
  color: var(--brand-blue);
  transform: translateX(-8px);
}

.menu-footer-bar {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.85rem;
  color: #666666;
  position: relative;
  z-index: 10;
}

.menu-footer-bar a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Hero Section (Vasantha Style Video & Typography)
   ========================================================================== */
.hero-editorial-section {
  position: relative;
  height: 92vh;
  min-height: 650px;
  background-color: #0c0c0c;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1);
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
}

.hero-center-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  color: #ffffff;
}

.hero-pre-label {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.hero-main-heading {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 2.25rem;
  letter-spacing: -0.03em;
}

/* Pill Button */
.btn-vasantha-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 80, 255, 0.4);
  transition: all var(--transition);
}

.btn-vasantha-pill:hover {
  background-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 80, 255, 0.55);
}

/* Scroll Down Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.scroll-down-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.scroll-down-chevrons span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  animation: chevronBounce 1.8s infinite ease-in-out;
}

.scroll-down-chevrons span:nth-child(2) { animation-delay: 0.2s; }
.scroll-down-chevrons span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chevronBounce {
  0%, 100% { opacity: 0.2; transform: rotate(45deg) translate(-2px, -2px); }
  50% { opacity: 1; transform: rotate(45deg) translate(2px, 2px); }
}

/* ==========================================================================
   Breadcrumb Bar
   ========================================================================== */
.breadcrumb-bar {
  background: #ffffff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.breadcrumb-bar a {
  color: #1a1a1a;
  font-weight: 500;
}

.breadcrumb-arrow {
  color: var(--brand-blue);
  margin: 0 0.5rem;
}

.breadcrumb-current {
  color: var(--brand-blue);
  font-weight: 600;
}

/* ==========================================================================
   Section 1: "We Are MJN Moulds" (Editorial Text Block)
   ========================================================================== */
.editorial-intro-section {
  padding: 5rem 0 6rem;
  background-color: #ffffff;
}

.blue-hex-icon,
.editorial-brand-mark {
  height: 28px;
  width: auto;
  max-width: 32px;
  margin-bottom: 1.5rem;
  display: block;
  object-fit: contain;
}

.editorial-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.12;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.editorial-title span {
  display: block;
}

.editorial-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.editorial-body-text {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 1050px;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 1rem;
  transition: var(--transition);
}

.editorial-link svg {
  color: var(--brand-blue);
  transition: transform var(--transition);
}

.editorial-link:hover {
  color: var(--brand-blue);
}

.editorial-link:hover svg {
  transform: translateX(5px);
}

/* ==========================================================================
   Section 2: "Discover Our Companies"
   ========================================================================== */
.companies-section {
  padding: 5rem 0 6rem;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
}

.section-head-editorial {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 3.5rem;
}

.section-head-editorial span {
  display: block;
}

.companies-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.company-editorial-card {
  background: #f8f9fa;
  border-radius: 4px;
  padding: 2.5rem 2rem;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.company-editorial-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
  transform: translateY(-4px);
}

.company-card-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.company-card-emblem {
  height: 20px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.company-card-logo {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.company-card-tagline {
  font-size: 0.85rem;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.company-card-desc {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Section 3: "Get to Know Our Solutions" (Portrait Cards)
   ========================================================================== */
.solutions-editorial-section {
  padding: 6rem 0;
  background-color: var(--color-bg-light);
}

.solutions-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.solutions-head-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
}

.solutions-top-desc {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
}

.solutions-portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portrait-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background-color: #1a1a1a;
  display: block;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.portrait-card:hover img {
  transform: scale(1.06);
}

.portrait-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.portrait-card-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
}

.portrait-card-label h4 {
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.portrait-card-sub {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-top: 0.35rem;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.portrait-card:hover .portrait-card-sub {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Section 4: "Latest News"
   ========================================================================== */
.news-editorial-section {
  padding: 6rem 0;
  background: #ffffff;
}

.news-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.news-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-editorial-item {
  display: flex;
  flex-direction: column;
}

.news-item-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  background: #111;
}

.news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.news-editorial-item:hover .news-item-img img {
  transform: scale(1.05);
}

.news-meta-row {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 0.5rem;
}

.news-item-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  transition: var(--transition);
}

.news-editorial-item:hover .news-item-title {
  color: var(--brand-blue);
}

/* ==========================================================================
   Section 5: Tabbed Value Container
   ========================================================================== */
.tab-editorial-container {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
}

.tab-nav-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e0e0e0;
  margin-top: 3rem;
}

.tab-nav-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid #e0e0e0;
  cursor: pointer;
  transition: var(--transition);
}

.tab-nav-item:first-child {
  border-left: 1px solid #e0e0e0;
}

.tab-nav-item.active {
  border-top: 3px solid var(--brand-blue);
  background: #fafafa;
}

.tab-nav-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.tab-nav-subtitle {
  font-size: 0.9rem;
  color: #666666;
}

.tab-content-box {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  padding: 3rem;
  margin-bottom: 2rem;
}

.tab-content-lead {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.tab-content-desc {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
}

/* ==========================================================================
   Section 6: Dual Action Callout Blocks (Matching Screenshot 4)
   ========================================================================== */
.dual-callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem 0 6rem;
}

.callout-box {
  padding: 4rem 3.5rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
}

.callout-box.dark {
  background-color: #141414;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.callout-box.grey {
  background-color: #eceef1;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.callout-watermark {
  position: absolute;
  right: -15px;
  bottom: -20px;
  height: 140px;
  width: auto;
  opacity: 0.04;
  pointer-events: none;
  transform: rotate(-10deg);
}

.callout-box.grey .callout-watermark {
  opacity: 0.05;
}

.callout-title {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
}

.callout-title span {
  display: block;
  font-weight: 400;
  opacity: 0.85;
}

.callout-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 2rem;
  transition: var(--transition);
}

.callout-box.dark .callout-link {
  color: #ffffff;
}
.callout-box.dark .callout-link:hover {
  color: var(--brand-blue-light);
  gap: 0.9rem;
}

.callout-box.grey .callout-link {
  color: var(--brand-blue);
}
.callout-box.grey .callout-link:hover {
  color: var(--brand-blue-hover);
  gap: 0.9rem;
}

/* ==========================================================================
   Section 7: Newsletter & Captcha Block (Matching Screenshot 4)
   ========================================================================== */
.newsletter-black-section {
  background-color: #141414;
  color: #ffffff;
  padding: 4.5rem 0;
}

.newsletter-inner-grid {
  max-width: 650px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.newsletter-subtitle {
  font-size: 1.05rem;
  color: #a3a3a3;
  margin-bottom: 2.5rem;
}

.newsletter-form-group {
  position: relative;
  margin-bottom: 2rem;
}

.newsletter-input-line {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #404040;
  padding: 0.75rem 2.5rem 0.75rem 0;
  font-size: 1rem;
  color: #ffffff;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.newsletter-input-line:focus {
  border-bottom-color: #ffffff;
}

.newsletter-submit-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 1.35rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-submit-arrow:hover {
  color: var(--brand-blue);
  transform: translateY(-50%) translateX(4px);
}

.captcha-line-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.captcha-chars {
  font-family: monospace;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: #cccccc;
  font-style: italic;
  user-select: none;
}

/* ==========================================================================
   Footer (Matching Screenshot 4)
   ========================================================================== */
.footer-editorial {
  background-color: #ffffff;
  padding: 5rem 0 3rem;
  text-align: center;
}

.footer-brand-emblem {
  width: 76px;
  height: auto;
  max-width: 80px;
  margin: 0 auto 1.75rem;
  display: block;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}

.footer-brand-emblem:hover {
  transform: scale(1.08);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.footer-social-icon:hover {
  color: var(--brand-blue);
  transform: scale(1.15);
}

.footer-nav-menu-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  list-style: none;
}

.footer-nav-menu-row a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  transition: var(--transition);
}

.footer-nav-menu-row a:hover {
  color: var(--brand-blue);
}

.footer-bottom-divider {
  width: 100%;
  max-width: var(--max-width);
  height: 1px;
  background-color: #e5e5e5;
  margin: 0 auto 2rem;
}

.footer-fine-print {
  font-size: 0.8rem;
  color: #888888;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-fine-print a {
  color: #666666;
}

.footer-fine-print a:hover {
  color: var(--brand-blue);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .companies-editorial-grid,
  .solutions-portrait-grid,
  .news-editorial-grid,
  .tab-nav-row {
    grid-template-columns: 1fr;
  }
  .solutions-top-row,
  .news-top-row,
  .dual-callout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fullscreen-menu-overlay {
    padding: 2rem;
  }
  .floating-contact-tab {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-logo {
    gap: 0.5rem;
  }
  .site-logo-img {
    height: 28px;
  }
  .logo-text {
    font-size: 1.25rem;
  }
  .header-controls {
    gap: 1.1rem;
  }
  .menu-top-logo {
    height: 24px;
  }
  .menu-top-text {
    font-size: 1.15rem;
    white-space: nowrap;
  }
}

