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

:root {
  /* Color system */
  --bg-gradient: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
  --sky-light: #f0f9ff;
  --sky-medium: #e0f2fe;
  --sky-blue: #38bdf8;
  --blue-primary: #0284c7;
  --blue-dark: #0369a1;
  --text-dark: #0f172a;
  --text-medium: #334155;
  --text-light: #64748b;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-navbar: rgba(255, 255, 255, 0.75);
  --glow-shadow: 0 0 15px rgba(56, 189, 248, 0.6), 0 0 30px rgba(2, 132, 199, 0.3);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--sky-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Glassy Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--glass-navbar);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
}

.navbar.scrolled {
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.05);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}

.nav-logo {
  height: 42px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-self: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-medium);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--blue-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--blue-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--blue-primary);
}

/* Glassy Navbar Button */
.nav-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 7px 24px;
  border-radius: 50px;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 
    0 4px 15px rgba(2, 132, 199, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  justify-self: end;
}

.nav-btn:hover {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.85) 0%, rgba(2, 132, 199, 0.55) 100%);
  border-color: rgba(56, 189, 248, 0.5);
  color: var(--white);
  box-shadow: 
    0 8px 25px rgba(2, 132, 199, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 120px;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* Ambient glow orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.glow-orb-1 {
  width: 350px;
  height: 350px;
  background: #bae6fd;
  top: 10%;
  left: -5%;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: #7dd3fc;
  top: 20%;
  right: -10%;
  animation: orbFloat 15s ease-in-out infinite alternate-reverse;
}

.glow-orb-3 {
  width: 300px;
  height: 300px;
  background: #a5f3fc;
  bottom: 10%;
  left: 20%;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 40px) scale(1.15);
  }
}

/* Hero Brand Logo & Title */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.hero-logo {
  height: 70px;
  width: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
  transition: transform 0.5s ease;
}

.hero-logo:hover {
  transform: scale(1.03);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 35%, #38bdf8 65%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-peak {
  -webkit-text-fill-color: transparent;
  margin-right: 12px;
}

.text-prima {
  -webkit-text-fill-color: transparent;
}

/* Growth Partner Badge (Transparent Capsule shape) */
.partner-badge-container {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--white);
  padding: 8px 24px;
  border-radius: 9999px; /* straight top/bottom connected by single curves */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pulsating-dot {
  width: 10px;
  height: 10px;
  background-color: var(--blue-primary);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px var(--blue-primary);
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7);
  }
  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(2, 132, 199, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0);
  }
}

.badge-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-medium);
}

/* Scale with US Headline */
.hero-heading {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.glow-us {
  color: #38bdf8;
  display: inline-block;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.6), 
               0 0 25px rgba(56, 189, 248, 0.4), 
               0 0 50px rgba(2, 132, 199, 0.2);
  animation: glow-oscillate 3s ease-in-out infinite alternate;
}

@keyframes glow-oscillate {
  from {
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.6), 
                 0 0 25px rgba(56, 189, 248, 0.4);
    transform: scale(1);
  }
  to {
    text-shadow: 0 0 18px rgba(56, 189, 248, 0.8), 
                 0 0 35px rgba(56, 189, 248, 0.6), 
                 0 0 60px rgba(2, 132, 199, 0.4);
    transform: scale(1.02);
  }
}

/* Subtitle & Hero Button */
.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 680px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-cta-container {
  display: flex;
  justify-content: center;
}

.hero-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 34px;
  border-radius: 50px;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 
    0 8px 25px rgba(2, 132, 199, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn:hover {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.85) 0%, rgba(2, 132, 199, 0.55) 100%);
  border-color: rgba(56, 189, 248, 0.6);
  color: var(--white);
  box-shadow: 
    0 12px 25px rgba(2, 132, 199, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Text Highlighting */
.highlight-blue {
  color: var(--blue-primary);
  font-weight: 600;
}

/* SPA Helper Classes */
.hide-view {
  display: none !important;
}

.fade-in-view {
  animation: fadeInView 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInView {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Wave Background behind Hero */
.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.waves {
  position: relative;
  width: 100%;
  height: 12vh;
  min-height: 80px;
  max-height: 150px;
}

.parallax > use {
  animation: move-wave 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-wave {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* Abstract Background Waves behind Hero text */
.hero-bg-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-waves svg {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.hero-bg-wave {
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  transform-origin: center;
}

.hero-bg-wave.wave-1 {
  animation: drift-wave-1 15s ease-in-out infinite alternate;
}

.hero-bg-wave.wave-2 {
  animation: drift-wave-2 20s ease-in-out infinite alternate;
}

.hero-bg-wave.wave-3 {
  animation: drift-wave-3 24s ease-in-out infinite alternate;
}

@keyframes drift-wave-1 {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  100% {
    transform: translateY(40px) scale(1.08) rotate(3deg);
  }
}

@keyframes drift-wave-2 {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  100% {
    transform: translateY(-50px) scale(0.92) rotate(-4deg);
  }
}

@keyframes drift-wave-3 {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  100% {
    transform: translateY(25px) scale(1.05) rotate(2deg);
  }
}

/* Logo Marquee Section */
.marquee-section {
  background-color: transparent;
  padding: 60px 0;
  scroll-margin-top: 90px;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  /* Seamless blur on start and end */
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  display: flex;
  gap: 5rem;
  width: max-content;
  align-items: center;
  /* Animates left to right */
  animation: marquee-left-to-right 28s linear infinite;
}

@keyframes marquee-left-to-right {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
  color: var(--blue-primary);
}

.partner-logo-svg {
  width: 28px;
  height: 28px;
}

/* What We Do Section */
.what-we-do-section {
  position: relative;
  background-color: var(--sky-light);
  padding: 120px 0;
  overflow: hidden;
  scroll-margin-top: 90px;
}

.what-we-do-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Section Tag with Yellow Star */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--blue-primary);
  margin-bottom: 30px;
}

.yellow-star {
  width: 20px;
  height: 20px;
  color: #fbbf24;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.4));
  animation: star-glow 2.5s infinite ease-in-out alternate;
}

@keyframes star-glow {
  0% {
    transform: scale(0.9) rotate(0deg);
    filter: drop-shadow(0 0 2px rgba(251, 191, 36, 0.3));
  }
  100% {
    transform: scale(1.15) rotate(15deg);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8));
  }
}

/* Quote */
.what-we-do-quote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 80px;
  letter-spacing: -0.01em;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease;
}

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

.sphere-wrapper {
  margin-bottom: 24px;
}

/* Stats Circles (Center Blue to Light Bleed Gradient) */
.blue-sphere {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #0284c7 0%, rgba(56, 189, 248, 0.5) 50%, rgba(240, 249, 255, 0) 100%);
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  text-shadow: 0 1px 3px rgba(2, 132, 199, 0.5);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Remove 3D highlight */
.blue-sphere::before {
  display: none;
}

.stat-card:hover .blue-sphere {
  transform: scale(1.05);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-medium);
  letter-spacing: 0.02em;
}

/* Modern Footer */
.footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--blue-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--blue-primary);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--blue-primary);
  flex-shrink: 0;
}

.contact-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--blue-primary);
}

.contact-text {
  color: #94a3b8;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--blue-primary);
}

/* About Us Section styling */
.about-section {
  position: relative;
  background-color: var(--white);
  padding: 120px 0;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 40px;
}

.about-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.benefit-card {
  background: rgba(240, 249, 255, 0.5);
  border: 1px solid rgba(56, 189, 248, 0.15);
  padding: 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(240, 249, 255, 0.8);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 10px 35px rgba(2, 132, 199, 0.05);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* About Image styling with Glass/Shadow container */
.about-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 16px;
  box-shadow: 0 20px 50px rgba(2, 132, 199, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.04);
}

/* Extra ambient orb for About us */
.glow-orb-4 {
  width: 350px;
  height: 350px;
  background: #bae6fd;
  bottom: -5%;
  right: -5%;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

/* Hamburger Toggle (Hidden on Desktop) */
.menu-toggle {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

/* Responsive Design */

@media (max-width: 1024px) {
  .hero-heading {
    font-size: 4.5rem;
  }
  .what-we-do-quote {
    font-size: 1.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-col.brand-col {
    grid-column: span 2;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image-container {
    order: -1;
  }
  .about-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  .nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 16px;
    align-items: center;
    margin: 0;
    z-index: 10;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 4px 0;
  }

  .nav-link::after {
    height: 1.5px;
  }
  .nav-btn {
    display: none; /* Hide PC CTA button in navbar on mobile */
  }

  /* Mobile Menu Styles */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }

  .hamburger-bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Morphing hamburger to X */
  .menu-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--text-dark);
  }

  .menu-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .menu-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--text-dark);
  }

  .mobile-menu-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  .mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .mobile-nav-link.active {
    color: var(--blue-primary);
  }

  .mobile-menu-overlay.open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-overlay.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu-overlay.open .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
  .mobile-menu-overlay.open .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
  .hero-section {
    padding-top: 130px;
    padding-bottom: 80px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-heading {
    font-size: 3.5rem;
  }
  .hero-subtext {
    font-size: 1rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blue-sphere {
    width: 130px;
    height: 130px;
    font-size: 2rem;
  }
  .what-we-do-quote {
    font-size: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-col.brand-col {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .about-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
